diff --git a/.DS_Store b/.DS_Store index 1be5a8c1a..fd26a3c05 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.github/workflows/web-develop.yml b/.github/workflows/web-develop.yml index b389c8a4c..5bb00c327 100644 --- a/.github/workflows/web-develop.yml +++ b/.github/workflows/web-develop.yml @@ -50,6 +50,19 @@ jobs: createdb -w -h localhost -p 5432 -U postgres citycatalyst -O citycatalyst cp env.example .env npm run db:migrate + npm run db:seed + + - uses: actions/cache@v4 + with: + # See here for caching with `yarn` https://github.com/actions/cache/blob/main/examples.md#node---yarn or you can leverage caching with actions/setup-node https://github.com/actions/setup-node + path: | + ~/.npm + ${{ github.workspace }}/.next/cache + # Generate a new cache whenever packages or source files change. + key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }} + # If source files changed but packages didn't, rebuild from a prior cache. + restore-keys: | + ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}- - name: Run NextJS build run: npm run build @@ -129,8 +142,6 @@ jobs: run: | kubectl create -f k8s/cc-migrate.yml -n default kubectl create -f k8s/cc-seed.yml -n default - kubectl apply -f k8s/cc-sync-catalogue.yml -n default - # kubectl create job --from=cronjob/cc-sync-catalogue cc-sync-catalogue-manual -n default kubectl apply -f k8s/cc-web-deploy.yml -n default kubectl set env deployment/cc-web-deploy \ SMTP_USER=${{secrets.SMTP_USER}} \ @@ -138,7 +149,8 @@ jobs: NEXTAUTH_SECRET=${{secrets.NEXTAUTH_SECRET}} \ RESET_TOKEN_SECRET=${{secrets.RESET_TOKEN_SECRET}} \ VERIFICATION_TOKEN_SECRET=${{secrets.VERIFICATION_TOKEN_SECRET}} \ - OPENAI_API_KEY=${{secrets.OPENAI_API_KEY}} \ + OPENAI_API_KEY=${{secrets.OPENAI_API_KEY_DEV}} \ + "OPENAI_ASSISTANT_ID=asst_saoKNCVqCX7adTMoLqPxPHvB" \ HUGGINGFACE_API_KEY=${{secrets.HUGGINGFACE_API_KEY}} \ "ADMIN_EMAILS=${{secrets.ADMIN_EMAILS}}" \ "ADMIN_NAMES=${{secrets.ADMIN_NAMES}}" \ @@ -151,5 +163,10 @@ jobs: "NEXT_PUBLIC_OPENCLIMATE_API_URL=https://openclimate.openearth.dev" \ "OPENCLIMATE_API_URL=https://openclimate.openearth.dev" \ CDP_API_KEY=${{secrets.CDP_API_KEY_TEST}} + kubectl apply -f k8s/cc-sync-catalogue.yml -n default # cronjob + kubectl create -f k8s/cc-sync-catalogue-manual.yml -n default # on deployment + # TODO this (running cronjob on deploy) doesn't work since it can't randomize names. Needs own randomness source + # once it works cc-sync-catalogue-manual.yml can be removed + # kubectl create job --from=cronjob/cc-sync-catalogue cc-sync-catalogue-manual -n default kubectl create -f k8s/cc-create-admin.yml -n default kubectl rollout restart deployment cc-web-deploy -n default diff --git a/.github/workflows/web-tag.yml b/.github/workflows/web-tag.yml index 1a2a609d5..ae46848fb 100644 --- a/.github/workflows/web-tag.yml +++ b/.github/workflows/web-tag.yml @@ -142,19 +142,12 @@ jobs: SMTP_USER=${{secrets.SMTP_USER}} \ SMTP_PASSWORD=${{secrets.SMTP_PASSWORD}} \ NEXTAUTH_SECRET=${{secrets.NEXTAUTH_SECRET}} \ - RESET_TOKEN_SECRET=${{secrets.RESET_TOKEN_SECRET}} \ VERIFICATION_TOKEN_SECRET=${{secrets.VERIFICATION_TOKEN_SECRET}} \ - CHAT_PROVIDER=openai \ - OPENAI_API_KEY=${{secrets.OPENAI_API_KEY}} \ - HUGGINGFACE_API_KEY=${{secrets.HUGGINGFACE_API_KEY}} \ "ADMIN_EMAILS=${{secrets.ADMIN_EMAILS}}" \ - "ADMIN_NAMES=${{secrets.ADMIN_NAMES}}" \ - "DEFAULT_ADMIN_EMAIL=${{secrets.DEFAULT_ADMIN_EMAIL}}" \ - "DEFAULT_ADMIN_PASSWORD=${{secrets.DEFAULT_ADMIN_PASSWORD}}" \ - SMTP_USER=${{secrets.SMTP_USER}} \ - SMTP_PASSWORD=${{secrets.SMTP_PASSWORD}} \ - NEXTAUTH_SECRET=${{secrets.NEXTAUTH_SECRET}} \ - RESET_TOKEN_SECRET=${{secrets.RESET_TOKEN_SECRET}} \ VERIFICATION_TOKEN_SECRET=${{secrets.VERIFICATION_TOKEN_SECRET}} \ - OPENAI_API_KEY=${{secrets.OPENAI_API_KEY}} \ - HUGGINGFACE_API_KEY=${{secrets.HUGGINGFACE_API_KEY}} \ "ADMIN_EMAILS=${{secrets.ADMIN_EMAILS}}" \ + RESET_TOKEN_SECRET=${{secrets.RESET_TOKEN_SECRET}} \ + VERIFICATION_TOKEN_SECRET=${{secrets.VERIFICATION_TOKEN_SECRET}} \ + OPENAI_API_KEY=${{secrets.OPENAI_API_KEY_PROD}} \ + "OPENAI_ASSISTANT_ID=asst_FCZ1wta3NElIFXCxDO1KME9I" \ + HUGGINGFACE_API_KEY=${{secrets.HUGGINGFACE_API_KEY}} \ + "ADMIN_EMAILS=${{secrets.ADMIN_EMAILS}}" \ "ADMIN_NAMES=${{secrets.ADMIN_NAMES}}" \ "DEFAULT_ADMIN_EMAIL=${{secrets.DEFAULT_ADMIN_EMAIL}}" \ "DEFAULT_ADMIN_PASSWORD=${{secrets.DEFAULT_ADMIN_PASSWORD}}" \ diff --git a/.github/workflows/web-test.yml b/.github/workflows/web-test.yml index c38de1d95..6842c4b78 100644 --- a/.github/workflows/web-test.yml +++ b/.github/workflows/web-test.yml @@ -125,7 +125,8 @@ jobs: NEXTAUTH_SECRET=${{secrets.NEXTAUTH_SECRET}} \ RESET_TOKEN_SECRET=${{secrets.RESET_TOKEN_SECRET}} \ VERIFICATION_TOKEN_SECRET=${{secrets.VERIFICATION_TOKEN_SECRET}} \ - OPENAI_API_KEY=${{secrets.OPENAI_API_KEY}} \ + OPENAI_API_KEY=${{secrets.OPENAI_API_KEY_TEST}} \ + "OPENAI_ASSISTANT_ID=asst_4if8qn6W8Vlxwbf2cuyH8OFU" \ HUGGINGFACE_API_KEY=${{secrets.HUGGINGFACE_API_KEY}} \ "ADMIN_EMAILS=${{secrets.ADMIN_EMAILS}}" \ "ADMIN_NAMES=${{secrets.ADMIN_NAMES}}" \ diff --git a/app/.gitignore b/app/.gitignore index 5df1908a6..4148f2b03 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -39,3 +39,5 @@ next-env.d.ts /playwright-report/ /blob-report/ /playwright/.cache/ + +playwright/.auth diff --git a/app/cypress.config.ts b/app/cypress.config.ts deleted file mode 100644 index f7922565e..000000000 --- a/app/cypress.config.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { defineConfig } from "cypress"; - -export default defineConfig({ - video: false, - screenshotOnRunFailure: false, - e2e: { - baseUrl: "http://localhost:3000", - setupNodeEvents(on, config) { - // implement node event listeners here - }, - }, -}); diff --git a/app/cypress/fixtures/example.json b/app/cypress/fixtures/example.json deleted file mode 100644 index 02e425437..000000000 --- a/app/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/app/cypress/support/commands.ts b/app/cypress/support/commands.ts deleted file mode 100644 index bd3485d0f..000000000 --- a/app/cypress/support/commands.ts +++ /dev/null @@ -1,63 +0,0 @@ -// https://on.cypress.io/custom-commands - -import { logger } from '../../src/services/logger'; - -Cypress.Commands.add("signup", (email, password) => { - cy.request({ - method: "POST", - url: "/api/v0/auth/register", - failOnStatusCode: false, - body: { - email, - password, - confirmPassword: password, - name: "Test Account", - inviteCode: "123456", - acceptTerms: true, - }, - }); -}); - -Cypress.Commands.add("login", (email, password) => { - cy.request("/api/auth/csrf").then((csrfRes) => { - expect(csrfRes.body).to.have.property("csrfToken"); - const csrfToken = csrfRes.body.csrfToken; - cy.request("POST", "/api/auth/signin/credentials", { - csrfToken, - email, - password, - }).then((res) => { - logger.debug(res.body); - }); - }); -}); - -Cypress.Commands.add("logout", () => { - cy.visit("/api/auth/signout"); - cy.get("form").submit(); -}); - -Cypress.Commands.add("deleteAccount", (email, password) => { - // cy.login(email, password); - cy.visit("/auth/login"); - cy.get('input[name="email"]').type(email, { log: false }); - cy.get('input[name="password"]').type(password, { log: false }); - cy.get('button[type="submit"]').click(); - - cy.request({ - method: "POST", - url: "/api/v0/auth/delete", - }); -}); - -export {}; -declare global { - namespace Cypress { - interface Chainable { - signup(email: string, password: string): Chainable; - login(email: string, password: string): Chainable; - logout(): Chainable; - deleteAccount(email, password: string): Chainable; - } - } -} diff --git a/app/cypress/support/e2e.ts b/app/cypress/support/e2e.ts deleted file mode 100644 index 6a173d6fc..000000000 --- a/app/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/e2e.ts is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import "./commands"; - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/app/cypress/tsconfig.json b/app/cypress/tsconfig.json deleted file mode 100644 index 18edb199a..000000000 --- a/app/cypress/tsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress", "node"] - }, - "include": ["**/*.ts"] -} diff --git a/app/e2e/auth.setup.ts b/app/e2e/auth.setup.ts new file mode 100644 index 000000000..14c9932dd --- /dev/null +++ b/app/e2e/auth.setup.ts @@ -0,0 +1,33 @@ +import { + test as setup, + expect, + test, + APIRequestContext, +} from "@playwright/test"; +import { randomUUID } from "node:crypto"; +import { expectText, signup } from "./helpers"; + +const authFile = "playwright/.auth/user.json"; + +test.beforeEach(async ({ page }) => {}); + +setup("authenticate", async ({ page, request }) => { + // log the user in + const email = `login-test+${randomUUID()}@openearth.org`; + const password = "Test123!"; + await signup(request, email, password, password); + + await page.goto("/en/auth/login"); + + await expectText(page, "Log In to City Catalyst"); + await page.locator('input[name="email"]').fill(email); + await page.locator('input[name="password"]').fill(password); + await page.locator('button[type="submit"]').click(); + + // TODO how to ensure that session route was called? + await page.waitForResponse("/api/auth/session"); + + await expect(page).toHaveURL("/en/onboarding/"); + + await page.context().storageState({ path: authFile }); +}); diff --git a/app/e2e/helpers.ts b/app/e2e/helpers.ts index ed8031364..2746302d7 100644 --- a/app/e2e/helpers.ts +++ b/app/e2e/helpers.ts @@ -13,7 +13,7 @@ export async function signup( inviteCode: string = "123456", acceptTerms: boolean = true, ) { - const result = await request.post("/api/v0/auth/signup", { + const result = await request.post("/api/v0/auth/register", { data: { email, password, @@ -26,3 +26,24 @@ export async function signup( expect(result.ok()).toBeTruthy(); return await result.json(); } + +export async function createInventory( + request: APIRequestContext, + name: string, + description: string, + sector: string, + subsector: string, + methodology: string, +) { + const result = await request.post("/api/v0/inventory", { + data: { + name, + description, + sector, + subsector, + methodology, + }, + }); + expect(result.ok()).toBeTruthy(); + return await result.json(); +} diff --git a/app/e2e/login.spec.ts b/app/e2e/login.spec.ts index a3b377034..ade2e2d2d 100644 --- a/app/e2e/login.spec.ts +++ b/app/e2e/login.spec.ts @@ -1,31 +1,7 @@ import { test, expect, APIRequestContext } from "@playwright/test"; -import { expectText } from "./helpers"; +import { expectText, signup } from "./helpers"; import { randomUUID } from "node:crypto"; -async function signup( - request: APIRequestContext, - email: string, - password: string = "Test123!", - confirmPassword: string = "Test123!", - name: string = "Test Account", - inviteCode: string = "123456", - acceptTerms: boolean = true, -) { - const result = await request.post("/api/v0/auth/register", { - data: { - email, - password, - confirmPassword, - name, - inviteCode, - acceptTerms, - }, - }); - console.log("Signup res", await result.text()); - expect(result.ok()).toBeTruthy(); - return await result.json(); -} - test.beforeEach(async ({ page }) => { await page.goto("/en/auth/login"); }); @@ -50,7 +26,7 @@ test.describe("Login page", () => { // TODO how to ensure that session route was called? await page.waitForResponse("/api/auth/session"); - await expect(page).toHaveURL("/en/onboarding/"); + await expect(page).not.toHaveURL("/en/auth/login/"); }); test("shows errors when entering invalid data", async ({ page }) => { diff --git a/app/e2e/manual-input.spec.ts b/app/e2e/manual-input.spec.ts new file mode 100644 index 000000000..5773d3be5 --- /dev/null +++ b/app/e2e/manual-input.spec.ts @@ -0,0 +1,364 @@ +import { test, expect, Page, APIRequestContext } from "@playwright/test"; +import { indexPageRegex, regexForPath } from "./utils"; + +// inventory creation data +// call the endpoint to create an inventory + +const TEST_CITY_DETAILS = { + name: "New York", + locode: "US NYC", + area: 1219, + region: "New York", + country: "United States of America", + countryLocode: "US", + regionLocode: "US-NY", +}; + +const TEST_POPULATION_DATA = { + cityId: null, + cityPopulation: 8804190, + cityPopulationYear: 2020, + countryPopulation: 338289857, + countryPopulationYear: 2022, + locode: "US NYC", + regionPopulation: 20201249, + regionPopulationYear: 2020, +}; + +const TEST_INVENTORY_DATA = { + cityId: null, + inventoryName: "TEST New York - 2024", + year: 2024, +}; + +const createInventory = async (request: APIRequestContext): Promise => { + const cityResult = await request.post("/api/v0/city", { + data: TEST_CITY_DETAILS, + }); + expect(cityResult.ok()).toBeTruthy(); + const cityData = await cityResult.json(); + let cityId = cityData.data.cityId; + + // add population data + const populationResult = await request.post( + `/api/v0/city/${cityId}/population`, + { + data: { + ...TEST_POPULATION_DATA, + cityId: cityId, + }, + }, + ); + expect(populationResult.ok()).toBeTruthy(); + + // add inventory data + const inventoryResult = await request.post( + `/api/v0/city/${cityId}/inventory`, + { + data: { + ...TEST_INVENTORY_DATA, + cityId: cityId, + }, + }, + ); + + expect(inventoryResult.ok()).toBeTruthy(); + const inventoryData = await inventoryResult.json(); + const inventoryID = inventoryData.data.inventoryId; + + // make default inventory for user + + await request.patch("/api/v0/user", { + data: { + cityId: cityData.id, + defaultInventoryId: inventoryID, + }, + }); + + return inventoryID; +}; + +const testIds = { + addDataToInventoryNavButton: "add-data-to-inventory-card", + addDataStepHeading: "add-data-step-title", + stationaryEnergySectorCard: "stationary-energy-sector-card", + transportationSectorCard: "transportation-sector-card", + wasteSectorCard: "waste-sector-card", + sectorCardButton: "sector-card-button", + subsectorCard: "subsector-card", + manualInputHeader: "manual-input-header", + methodologyCard: "methodology-card", + methodologyCardHeader: "methodology-card-header", + addEmissionButton: "add-emission-data-button", + addEmissionModal: "add-emission-modal", + addEmissionModalSubmitButton: "add-emission-modal-submit", + co2EmissionInput: "co2-emission-factor", + n2oEmissionInput: "n2o-emission-factor", + ch4EmissionInput: "ch4-emission-factor", + sourceReferenceInput: "source-reference", + activityMoreButton: "activity-more-icon", + deleteActivityButton: "delete-activity-button", + deleteActivityModalHeader: "delete-activity-modal-header", + deleteActivityModalConfirmButton: "delete-activity-modal-confirm", +}; + +const sectorData = [ + { + sectorName: "Stationary Energy", + testId: testIds.stationaryEnergySectorCard, + url1: "/data/1/", + }, + { + sectorName: "Transportation", + testId: testIds.transportationSectorCard, + url1: "/data/2/", + }, + { + sectorName: "Waste", + testId: testIds.wasteSectorCard, + url1: "/data/3/", + }, +]; + +const EmissionFactos = { + CO2: 120, + N2O: 202, + CH4: 300, +}; + +test.describe.serial("Manual Input", () => { + let page: Page; + let id: string; + + test.beforeAll(async ({ browser, request }) => { + page = await browser.newPage(); + id = await createInventory(request); + await page.goto(`/en/${id}/`); + await expect(page).toHaveURL(indexPageRegex); + // wait for page to load + }); + + test.afterAll(async () => { + await page.close(); + }); + + test("should render sector list page", async () => { + const navButton = page.getByTestId(testIds.addDataToInventoryNavButton); + await navButton.click(); + await page.waitForURL(regexForPath("/data/")); + await expect(page).toHaveURL(regexForPath("/data/")); + const pageHeader = page.getByTestId(testIds.addDataStepHeading); + await expect(pageHeader).toHaveText( + "Add Data to Complete Your GHG Inventory", + ); + + // check for sector cards + const stationaryEnergySectorCard = await page.getByTestId( + testIds.stationaryEnergySectorCard, + ); + expect(stationaryEnergySectorCard).toBeTruthy(); + + const transportationSectorCard = await page.getByTestId( + testIds.transportationSectorCard, + ); + expect(transportationSectorCard).toBeTruthy(); + + const wasteSectorCard = await page.getByTestId(testIds.wasteSectorCard); + expect(wasteSectorCard).toBeTruthy(); + }); + + sectorData.forEach((sector) => { + test.describe.serial(() => { + test(`should navigate to ${sector.sectorName} sector page`, async () => { + await page.goto(`/en/${id}/data/`); + await page.waitForURL(regexForPath("/data/")); + await expect(page).toHaveURL(regexForPath("/data/")); + // wait for sector card to load + const sectorCard = await page.getByTestId(sector.testId); + expect(sectorCard).toBeTruthy(); + const sectorCardBtn = await sectorCard?.getByTestId( + testIds.sectorCardButton, + ); + await sectorCardBtn?.click(); + await page.waitForURL(regexForPath(sector.url1)); + await expect(page).toHaveURL(regexForPath(sector.url1)); + + await page.waitForResponse((resp) => resp.status() == 200); + // wait for 10 seconds + await page.waitForTimeout(3000); + + const subsectorCards = await page.getByTestId(testIds.subsectorCard); + expect(await subsectorCards.count()).toBeGreaterThan(0); + + // await page response + const targetSubSector = subsectorCards.first(); + await targetSubSector.click(); + await expect(page).toHaveURL( + /\/data\/\d+\/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\/$/, + ); + }); + + test(`should list methodologies in ${sector.sectorName}`, async () => { + // check on a list of methodologies + const methodologyCards = await page.getByTestId( + testIds.methodologyCard, + ); + expect(await methodologyCards.count()).toBeGreaterThan(0); + }); + + test(`test direct measure methodology in scope 1 with incomplete & complete values in in ${sector.sectorName}`, async () => { + test.skip(sector.sectorName === "Waste"); + // look for a direct measure + // select all the methodology card headers and check if any of them is direct measure + const directMeasureCardHeader = await page + .getByTestId(testIds.methodologyCardHeader) + .filter({ + hasText: "Direct Measure", + }) + .first(); + + expect(directMeasureCardHeader).toBeVisible(); + // click on the direct measure card + await directMeasureCardHeader?.click(); + + const addEmissionButton = await page.getByTestId( + testIds.addEmissionButton, + ); + expect(addEmissionButton).toBeTruthy(); + await addEmissionButton?.click(); + + // wait for the modal to open; + const addEmissionModal = await page.getByTestId( + testIds.addEmissionModal, + ); + + // fill in the select fields + const selectElements = await page.locator("select"); + for (let i = 0; i < (await selectElements.count()); i++) { + const dropdown = selectElements.nth(i); + await dropdown.selectOption({ index: 1 }); + } + + const inputElements = await page.locator("input[type='text']"); + for (let i = 0; i < (await inputElements.count()); i++) { + const input = inputElements.nth(i); + await input.fill("1"); + } + + const textInput = await addEmissionModal.getByTestId( + testIds.sourceReferenceInput, + ); + + await textInput.fill(""); + + // fill in the emission values + const co2Input = await addEmissionModal.getByTestId( + testIds.co2EmissionInput, + ); + + await co2Input.fill(EmissionFactos.CO2.toString()); + + const n2oInput = await addEmissionModal.getByTestId( + testIds.n2oEmissionInput, + ); + + await n2oInput.fill(EmissionFactos.N2O.toString()); + + const ch4Input = await addEmissionModal.getByTestId( + testIds.ch4EmissionInput, + ); + + await ch4Input.fill(EmissionFactos.CH4.toString()); + + // try to submit the form + const submitButton = await addEmissionModal.getByTestId( + testIds.addEmissionModalSubmitButton, + ); + + await submitButton?.click(); + + // look for error-text within the modal "please select a source reference" + const element = await page.getByText( + "Please select a source reference", + ); + + expect(element).toBeTruthy(); + + // fill in the text fields + await textInput.fill("test"); + + await submitButton?.click(); + + // wait for a 200 response + await page.waitForResponse((resp) => resp.status() == 200); + await page.waitForTimeout(3000); + }); + + test(`should display newly created activity in activity table in in ${sector.sectorName}`, async () => { + // TODO: Enable these tests when manul input for waste works. + test.skip(sector.sectorName === "Waste"); + // wait for the page to load + // wait for the table to load + const table = await page.locator("table"); + + // Ensure the table exists + expect(table).not.toBeNull(); + + const cellWithValue = await page + ?.getByRole("cell", { name: "tCO2" }) + .first(); + + expect(cellWithValue).toBeTruthy(); + + // Ensure the cell has the correct value + expect(await cellWithValue?.innerText()).toContain( + EmissionFactos.CO2.toString(), + ); + }); + + test(`should delete the activity from the table in in ${sector.sectorName}`, async () => { + test.skip(sector.sectorName === "Waste"); + // wait for the page to load + // wait for the table to load + const table = await page.locator("table"); + + // Ensure the table exists + expect(table).not.toBeNull(); + + const moreButton = await page.getByTestId(testIds.activityMoreButton); + + expect(moreButton).toBeTruthy(); + + await moreButton.click(); + + const deleteButton = await page.getByTestId( + testIds.deleteActivityButton, + ); + + expect(deleteButton).toBeTruthy(); + + await deleteButton.click(); + + // wait for the modal to open + await page.waitForTimeout(500); + const deleteModal = await page.getByTestId( + testIds.deleteActivityModalHeader, + ); + + expect(deleteModal).toBeVisible(); + + const confirmButton = await page.getByTestId( + testIds.deleteActivityModalConfirmButton, + ); + + expect(confirmButton).toBeVisible(); + + await confirmButton.click(); + + // wait for a 200 response + await page.waitForResponse((resp) => resp.status() == 200); + await page.waitForTimeout(500); + }); + }); + }); +}); diff --git a/app/e2e/signup.spec.ts b/app/e2e/signup.spec.ts index d598f1588..b387fbb33 100644 --- a/app/e2e/signup.spec.ts +++ b/app/e2e/signup.spec.ts @@ -2,6 +2,8 @@ import { test, expect } from "@playwright/test"; import { randomUUID } from "node:crypto"; import { expectText } from "./helpers"; +test.use({ storageState: { cookies: [], origins: [] } }); + test.beforeEach(async ({ page }) => { await page.goto("/en/auth/signup"); }); diff --git a/app/e2e/utils.ts b/app/e2e/utils.ts new file mode 100644 index 000000000..621fb29ba --- /dev/null +++ b/app/e2e/utils.ts @@ -0,0 +1,12 @@ +export const indexPageRegex = + /\/[a-z]{2}\/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\//; + +export const regexForPath = (path: string) => { + // Ensure the path does not have leading slashes and ends with a slash + const normalizedPath = path.replace(/^\/|\/$/g, "") + "/"; + + // Combine the indexPageRegex with the normalized path + const newRegexSource = `${indexPageRegex.source}${normalizedPath}$`; + + return new RegExp(newRegexSource); +}; diff --git a/app/migrations/20240809141227-create-datasourceI18n.cjs b/app/migrations/20240809141227-create-datasourceI18n.cjs new file mode 100644 index 000000000..c168faec9 --- /dev/null +++ b/app/migrations/20240809141227-create-datasourceI18n.cjs @@ -0,0 +1,47 @@ +"use strict"; + +const sql_up = `create table if not exists public."DataSourceI18n" +( + datasource_id uuid not null constraint "DataSourceI18n_pkey" primary key, + datasource_name text, + "URL" text, + dataset_description jsonb, + access_type text, + geographical_location text, + latest_accounting_year integer, + frequency_of_update text, + spatial_resolution text, + language text, + accessibility text, + data_quality text, + notes text, + units text, + methodology_url text, + publisher_id uuid constraint "FK_DataSourceI18n.publisher_id" references public."Publisher" on update cascade on delete set null, + retrieval_method text, + api_endpoint text, + created timestamp, + last_updated timestamp, + source_type text, + sector_id uuid constraint "FK_DataSourceI18n.sector_id" references public."Sector" on update cascade on delete set null, + subsector_id uuid constraint "FK_DataSourceI18n.subsector_id" references public."SubSector" on update cascade on delete set null, + subcategory_id uuid constraint "FK_DataSourceI18n.subcategory_id" references public."SubCategory" on update cascade on delete set null, + start_year integer, + end_year integer, + methodology_description jsonb, + transformation_description jsonb, + dataset_name jsonb +); +`; + +const sql_down = `drop table if exists public."DataSourceI18n";`; +/** @type {import("sequelize-cli").Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + await queryInterface.sequelize.query(sql_up); + }, + + async down(queryInterface, Sequelize) { + await queryInterface.sequelize.query(sql_down); + }, +}; diff --git a/app/migrations/20240809142521-prefill-datasource.cjs b/app/migrations/20240809142521-prefill-datasource.cjs new file mode 100644 index 000000000..3b7887664 --- /dev/null +++ b/app/migrations/20240809142521-prefill-datasource.cjs @@ -0,0 +1,46 @@ +"use strict"; + +const toJson = (text) => ({ user: text }); + +const getRowsWithUserData = async (queryInterface) => { + const rowsWithUserData = await queryInterface.sequelize.query(`select * from "DataSource" where source_type = 'user'`); + return rowsWithUserData[0]; +}; + +function getFormattedRows(rowsWithUserData) { + return rowsWithUserData.map( + ({ + transformation_description, + dataset_description, + methodology_description, + dataset_name, + ...row + } + ) => { + return { + ...row, + transformation_description: toJson(transformation_description), + dataset_description: toJson(dataset_description), + methodology_description: toJson(methodology_description), + dataset_name: toJson(dataset_name) + }; + } + ); +} + +/** @type {import("sequelize-cli").Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + const rowsWithUserData = await getRowsWithUserData(queryInterface); + const formattedRows = getFormattedRows(rowsWithUserData); + return queryInterface.sequelize.transaction(async (transaction) => { + for (const row of formattedRows) { + await queryInterface.insert(null, "DataSourceI18n", row, { transaction }); + } + }); + }, + + async down(queryInterface, Sequelize) { + await queryInterface.sequelize.query(`TRUNCATE TABLE "DataSourceI18n";`); + } +}; diff --git a/app/migrations/20240812130411-adjust-fk.cjs b/app/migrations/20240812130411-adjust-fk.cjs new file mode 100644 index 000000000..c4e15da5d --- /dev/null +++ b/app/migrations/20240812130411-adjust-fk.cjs @@ -0,0 +1,133 @@ +"use strict"; + +const sql_up = ` +-- Drop existing foreign key constraints +ALTER TABLE "DataSourceScope" DROP CONSTRAINT "FK_DataSourceScope.datasource_id"; +ALTER TABLE "Methodology" DROP CONSTRAINT "FK_Methodology.datasource_id"; +ALTER TABLE "DataSourceActivityData" DROP CONSTRAINT "FK_DataSourceActivityData.datasource_id"; +ALTER TABLE "DataSourceEmissionsFactor" DROP CONSTRAINT "FK_DataSourceEmissionsFactor.datasource_id"; +ALTER TABLE "DataSourceGHGs" DROP CONSTRAINT "FK_DataSourceGHGs.datasource_id"; +ALTER TABLE "DataSourceMethodology" DROP CONSTRAINT "FK_DataSourceMethodology.datasource_id"; +ALTER TABLE "DataSourceReportingLevel" DROP CONSTRAINT "FK_DataSourceReportingLevel.datasource_id"; +ALTER TABLE "GDP" DROP CONSTRAINT "FK_GDP.datasource_id"; +ALTER TABLE "Population" DROP CONSTRAINT "FK_Population.datasource_id"; +ALTER TABLE "InventoryValue" DROP CONSTRAINT "FK_SubCategoryValue_datasource_id"; +ALTER TABLE "ActivityValue" DROP CONSTRAINT "FK_ActivityValue_datasource_id"; + +-- Add new foreign key constraints referencing 'DataSourceI18n' +ALTER TABLE "DataSourceScope" + ADD CONSTRAINT "FK_DataSourceScope.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "Methodology" + ADD CONSTRAINT "FK_Methodology.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "DataSourceActivityData" + ADD CONSTRAINT "FK_DataSourceActivityData.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "DataSourceEmissionsFactor" + ADD CONSTRAINT "FK_DataSourceEmissionsFactor.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "DataSourceGHGs" + ADD CONSTRAINT "FK_DataSourceGHGs.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "DataSourceMethodology" + ADD CONSTRAINT "FK_DataSourceMethodology.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "DataSourceReportingLevel" + ADD CONSTRAINT "FK_DataSourceReportingLevel.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "GDP" + ADD CONSTRAINT "FK_GDP.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "Population" + ADD CONSTRAINT "FK_Population.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "InventoryValue" + ADD CONSTRAINT "FK_SubCategoryValue_datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +ALTER TABLE "ActivityValue" + ADD CONSTRAINT "FK_ActivityValue_datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSourceI18n" ("datasource_id"); + +`; +const sql_down = ` + +-- Drop the foreign key constraints referencing 'DataSourceI18n' +ALTER TABLE "DataSourceScope" DROP CONSTRAINT "FK_DataSourceScope.datasource_id"; +ALTER TABLE "Methodology" DROP CONSTRAINT "FK_Methodology.datasource_id"; +ALTER TABLE "DataSourceActivityData" DROP CONSTRAINT "FK_DataSourceActivityData.datasource_id"; +ALTER TABLE "DataSourceEmissionsFactor" DROP CONSTRAINT "FK_DataSourceEmissionsFactor.datasource_id"; +ALTER TABLE "DataSourceGHGs" DROP CONSTRAINT "FK_DataSourceGHGs.datasource_id"; +ALTER TABLE "DataSourceMethodology" DROP CONSTRAINT "FK_DataSourceMethodology.datasource_id"; +ALTER TABLE "DataSourceReportingLevel" DROP CONSTRAINT "FK_DataSourceReportingLevel.datasource_id"; +ALTER TABLE "GDP" DROP CONSTRAINT "FK_GDP.datasource_id"; +ALTER TABLE "Population" DROP CONSTRAINT "FK_Population.datasource_id"; +ALTER TABLE "InventoryValue" DROP CONSTRAINT "FK_SubCategoryValue_datasource_id"; +ALTER TABLE "ActivityValue" DROP CONSTRAINT "FK_ActivityValue_datasource_id"; + +-- Re-add the foreign key constraints referencing 'DataSource' +ALTER TABLE "DataSourceScope" + ADD CONSTRAINT "FK_DataSourceScope.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "Methodology" + ADD CONSTRAINT "FK_Methodology.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "DataSourceActivityData" + ADD CONSTRAINT "FK_DataSourceActivityData.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "DataSourceEmissionsFactor" + ADD CONSTRAINT "FK_DataSourceEmissionsFactor.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "DataSourceGHGs" + ADD CONSTRAINT "FK_DataSourceGHGs.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "DataSourceMethodology" + ADD CONSTRAINT "FK_DataSourceMethodology.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "DataSourceReportingLevel" + ADD CONSTRAINT "FK_DataSourceReportingLevel.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "GDP" + ADD CONSTRAINT "FK_GDP.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "Population" + ADD CONSTRAINT "FK_Population.datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "InventoryValue" + ADD CONSTRAINT "FK_SubCategoryValue_datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +ALTER TABLE "ActivityValue" + ADD CONSTRAINT "FK_ActivityValue_datasource_id" + FOREIGN KEY ("datasource_id") REFERENCES "DataSource" ("datasource_id"); + +`; +/** @type {import("sequelize-cli").Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + await queryInterface.sequelize.query(sql_up); + }, + + async down(queryInterface, Sequelize) { + await queryInterface.sequelize.query(sql_down); + } +}; \ No newline at end of file diff --git a/app/migrations/20240814003248-ActivityValue-add-activity-data-json.cjs b/app/migrations/20240814003248-ActivityValue-add-activity-data-json.cjs new file mode 100644 index 000000000..7a597e149 --- /dev/null +++ b/app/migrations/20240814003248-ActivityValue-add-activity-data-json.cjs @@ -0,0 +1,16 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up (queryInterface, Sequelize) { + await queryInterface.addColumn('ActivityValue', + 'activity_data_jsonb', { + type: Sequelize.DataTypes.JSONB, + allowNull: true, + }); + }, + + async down (queryInterface, Sequelize) { + await queryInterface.removeColumn('ActivityValue', 'activity_data_jsonb'); + } +}; diff --git a/app/migrations/20240814014055-ActivityValue-backfill-activity-data-jsonb.cjs b/app/migrations/20240814014055-ActivityValue-backfill-activity-data-jsonb.cjs new file mode 100644 index 000000000..af5cbf19c --- /dev/null +++ b/app/migrations/20240814014055-ActivityValue-backfill-activity-data-jsonb.cjs @@ -0,0 +1,19 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up (queryInterface, Sequelize) { + await queryInterface.sequelize.query(` + UPDATE "ActivityValue" + SET "activity_data_jsonb" = "activity_data"::jsonb + WHERE "activity_data_jsonb" IS NULL; + `); + }, + + async down (queryInterface, Sequelize) { + await queryInterface.sequelize.query(` + UPDATE "ActivityValue" + SET "activity_data_jsonb" = NULL; + `); + } +}; diff --git a/app/package-lock.json b/app/package-lock.json index a6a61f72e..ef22f03a8 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -1,12 +1,12 @@ { "name": "city-catalyst", - "version": "0.13.0-rc.5", + "version": "0.14.0-rc.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "city-catalyst", - "version": "0.13.0-rc.5", + "version": "0.14.0-rc.0", "dependencies": { "@chakra-ui/icons": "^2.1.0", "@chakra-ui/next-js": "^2.2.0", @@ -15,15 +15,15 @@ "@next/env": "^14.2.5", "@react-email/components": "^0.0.19", "@reduxjs/toolkit": "^2.2.7", - "@storybook/cli": "^8.0.8", - "@storybook/react": "^8.1.6", + "@storybook/cli": "^8.2.9", + "@storybook/react": "^8.2.9", "@storybook/testing-library": "^0.2.2", "@types/bcrypt": "^5.0.2", "@types/geojson": "^7946.0.14", "@types/http-errors": "^2.0.4", "@types/js-cookie": "^3.0.6", "@types/jsonwebtoken": "^9.0.6", - "@types/node": "20.12.12", + "@types/node": "22.5.0", "@types/nodemailer": "^6.4.14", "@types/pg": "^8.11.5", "@types/react": "18.3.3", @@ -34,7 +34,8 @@ "ai": "^3.2.35", "autoprefixer": "10.4.16", "bcrypt": "^5.1.1", - "csv-parse": "^5.5.5", + "chakra-react-select": "^4.9.1", + "csv-parse": "^5.5.6", "eslint": "8.57.0", "eslint-config-next": "^14.1.3", "eslint-plugin-storybook": "^0.8.0", @@ -44,33 +45,34 @@ "framer-motion": "^11.1.7", "geojson": "^0.5.0", "http-errors": "^2.0.0", - "i18next": "^23.12.2", - "i18next-browser-languagedetector": "^7.2.0", + "i18next": "^23.13.0", + "i18next-browser-languagedetector": "^8.0.0", "i18next-resources-to-backend": "^1.2.1", "js-cookie": "^3.0.5", "jsonwebtoken": "^9.0.2", - "next": "14.2.3", + "lodash.uniqby": "^4.7.0", + "next": "14.2.5", "next-auth": "^4.24.7", "nodemailer": "^6.9.13", "openai": "^4.52.7", "pg": "^8.11.5", "pg-hstore": "^2.3.4", "pigeon-maps": "^0.21.6", - "pino": "^9.0.0", + "pino": "^9.3.2", "postcss": "8.4.31", "react": "18.3.1", "react-circle-flags": "^0.0.20", "react-dom": "18.2.0", "react-email": "^2.1.4", "react-hook-form": "^7.52.0", - "react-i18next": "^15.0.0", + "react-i18next": "^15.0.1", "react-icons": "^5.1.0", "react-intersection-observer": "^9.8.2", "react-redux": "^9.1.2", "redux-persist": "^6.0.0", "sequelize": "^6.37.3", "sequelize-cli": "^6.6.2", - "tailwindcss": "3.4.3", + "tailwindcss": "3.4.10", "tsx": "^4.7.3", "typescript": "5.5.4", "uuid": "^9.0.1", @@ -78,14 +80,13 @@ "zod": "^3.22.4" }, "devDependencies": { - "@playwright/test": "^1.43.1", + "@playwright/test": "^1.46.1", "@storybook/addon-essentials": "^8.2.6", "@storybook/addon-interactions": "^8.2.5", "@storybook/addon-links": "^7.6.17", "@storybook/blocks": "^8.0.4", "@storybook/nextjs": "^8.0.8", "@types/glob": "^8.1.0", - "cypress": "^13.13.2", "glob": "^10.4.1", "prettier": "3.2.5", "sequelize-auto": "^0.8.8", @@ -3501,107 +3502,10 @@ "react": ">=18" } }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@cypress/request": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.1.tgz", - "integrity": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==", - "dev": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "http-signature": "~1.3.6", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "performance-now": "^2.1.0", - "qs": "6.10.4", - "safe-buffer": "^5.1.2", - "tough-cookie": "^4.1.3", - "tunnel-agent": "^0.6.0", - "uuid": "^8.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@cypress/request/node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/@cypress/request/node_modules/qs": { - "version": "6.10.4", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", - "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", - "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/@cypress/request/node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/@cypress/xvfb": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", - "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", - "dev": true, - "dependencies": { - "debug": "^3.1.0", - "lodash.once": "^4.1.1" - } - }, - "node_modules/@cypress/xvfb/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, "node_modules/@emotion/babel-plugin": { "version": "11.11.0", "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", - "peer": true, "dependencies": { "@babel/helper-module-imports": "^7.16.7", "@babel/runtime": "^7.18.3", @@ -3631,8 +3535,7 @@ "node_modules/@emotion/hash": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==", - "peer": true + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" }, "node_modules/@emotion/is-prop-valid": { "version": "1.2.1", @@ -3652,7 +3555,6 @@ "version": "11.11.1", "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.1.tgz", "integrity": "sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==", - "peer": true, "dependencies": { "@babel/runtime": "^7.18.3", "@emotion/babel-plugin": "^11.11.0", @@ -3676,7 +3578,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz", "integrity": "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==", - "peer": true, "dependencies": { "@emotion/hash": "^0.9.1", "@emotion/memoize": "^0.8.1", @@ -3716,14 +3617,12 @@ "node_modules/@emotion/unitless": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==", - "peer": true + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" }, "node_modules/@emotion/use-insertion-effect-with-fallbacks": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", - "peer": true, "peerDependencies": { "react": ">=16.8.0" } @@ -4552,9 +4451,9 @@ } }, "node_modules/@next/swc-darwin-arm64": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.3.tgz", - "integrity": "sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.5.tgz", + "integrity": "sha512-/9zVxJ+K9lrzSGli1///ujyRfon/ZneeZ+v4ptpiPoOU+GKZnm8Wj8ELWU1Pm7GHltYRBklmXMTUqM/DqQ99FQ==", "cpu": [ "arm64" ], @@ -4567,9 +4466,9 @@ } }, "node_modules/@next/swc-darwin-x64": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.3.tgz", - "integrity": "sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.5.tgz", + "integrity": "sha512-vXHOPCwfDe9qLDuq7U1OYM2wUY+KQ4Ex6ozwsKxp26BlJ6XXbHleOUldenM67JRyBfVjv371oneEvYd3H2gNSA==", "cpu": [ "x64" ], @@ -4582,9 +4481,9 @@ } }, "node_modules/@next/swc-linux-arm64-gnu": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.3.tgz", - "integrity": "sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.5.tgz", + "integrity": "sha512-vlhB8wI+lj8q1ExFW8lbWutA4M2ZazQNvMWuEDqZcuJJc78iUnLdPPunBPX8rC4IgT6lIx/adB+Cwrl99MzNaA==", "cpu": [ "arm64" ], @@ -4597,9 +4496,9 @@ } }, "node_modules/@next/swc-linux-arm64-musl": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.3.tgz", - "integrity": "sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.5.tgz", + "integrity": "sha512-NpDB9NUR2t0hXzJJwQSGu1IAOYybsfeB+LxpGsXrRIb7QOrYmidJz3shzY8cM6+rO4Aojuef0N/PEaX18pi9OA==", "cpu": [ "arm64" ], @@ -4612,9 +4511,9 @@ } }, "node_modules/@next/swc-linux-x64-gnu": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.3.tgz", - "integrity": "sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.5.tgz", + "integrity": "sha512-8XFikMSxWleYNryWIjiCX+gU201YS+erTUidKdyOVYi5qUQo/gRxv/3N1oZFCgqpesN6FPeqGM72Zve+nReVXQ==", "cpu": [ "x64" ], @@ -4627,9 +4526,9 @@ } }, "node_modules/@next/swc-linux-x64-musl": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.3.tgz", - "integrity": "sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.5.tgz", + "integrity": "sha512-6QLwi7RaYiQDcRDSU/os40r5o06b5ue7Jsk5JgdRBGGp8l37RZEh9JsLSM8QF0YDsgcosSeHjglgqi25+m04IQ==", "cpu": [ "x64" ], @@ -4642,9 +4541,9 @@ } }, "node_modules/@next/swc-win32-arm64-msvc": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.3.tgz", - "integrity": "sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.5.tgz", + "integrity": "sha512-1GpG2VhbspO+aYoMOQPQiqc/tG3LzmsdBH0LhnDS3JrtDx2QmzXe0B6mSZZiN3Bq7IOMXxv1nlsjzoS1+9mzZw==", "cpu": [ "arm64" ], @@ -4657,9 +4556,9 @@ } }, "node_modules/@next/swc-win32-ia32-msvc": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.3.tgz", - "integrity": "sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.5.tgz", + "integrity": "sha512-Igh9ZlxwvCDsu6438FXlQTHlRno4gFpJzqPjSIBZooD22tKeI4fE/YMRoHVJHmrQ2P5YL1DoZ0qaOKkbeFWeMg==", "cpu": [ "ia32" ], @@ -4672,9 +4571,9 @@ } }, "node_modules/@next/swc-win32-x64-msvc": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.3.tgz", - "integrity": "sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.5.tgz", + "integrity": "sha512-tEQ7oinq1/CjSG9uSTerca3v4AZ+dFa+4Yu6ihaG8Ud8ddqLQgFGcnwYls13H5X5CPDPZJdYxyeMui6muOLd4g==", "cpu": [ "x64" ], @@ -4749,18 +4648,18 @@ } }, "node_modules/@playwright/test": { - "version": "1.43.1", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.43.1.tgz", - "integrity": "sha512-HgtQzFgNEEo4TE22K/X7sYTYNqEMMTZmFS8kTq6m8hXj+m1D8TgwgIbumHddJa9h4yl4GkKb8/bgAl2+g7eDgA==", + "version": "1.46.1", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.46.1.tgz", + "integrity": "sha512-Fq6SwLujA/DOIvNC2EL/SojJnkKf/rAwJ//APpJJHRyMi1PdKrY3Az+4XNQ51N4RTbItbIByQ0jgd1tayq1aeA==", "devOptional": true, "dependencies": { - "playwright": "1.43.1" + "playwright": "1.46.1" }, "bin": { "playwright": "cli.js" }, "engines": { - "node": ">=16" + "node": ">=18" } }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { @@ -6500,11 +6399,11 @@ "dev": true }, "node_modules/@storybook/cli": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.2.6.tgz", - "integrity": "sha512-xW1r9LfLc7GHI3WlCF2AefK94g2l/NZNoaaWlNCChcf4+L3UKSsWORYSvcU8qmpxQrmQdEVBxues7VbQkZn36Q==", + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.2.9.tgz", + "integrity": "sha512-+rBlS+eMzZezCEdG7e6xX12sjpl2PS8VVqTaEQxns+++Hp/HzthHm9KOk5k6HvuHwaXKLL01bulbQHU0fqU7JQ==", "dependencies": { - "storybook": "8.2.6" + "storybook": "8.2.9" }, "bin": { "sb": "index.js", @@ -6515,15 +6414,15 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@storybook/codemod": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.2.6.tgz", - "integrity": "sha512-+mFJ6R+JhJLpU7VPDlXU5Yn6nqIBq745GaEosnIiFOdNo3jaxJ58wq/sGhbQvoCHPUxMA+sDQvR7pS62YFoLRQ==", + "node_modules/@storybook/codemod": { + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.2.9.tgz", + "integrity": "sha512-3yRx1lFMm1FXWVv+CKDiYM4gOQPEfpcZAQrjfcumxSDUrB091pnU1PeI92Prj3vCdi4+0oPNuN4yDGNUYTMP/A==", "dependencies": { "@babel/core": "^7.24.4", "@babel/preset-env": "^7.24.4", "@babel/types": "^7.24.0", - "@storybook/core": "8.2.6", + "@storybook/core": "8.2.9", "@storybook/csf": "0.1.11", "@types/cross-spawn": "^6.0.2", "cross-spawn": "^7.0.3", @@ -6539,95 +6438,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/@storybook/core": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/@storybook/core/-/core-8.2.6.tgz", - "integrity": "sha512-XY71g3AcpD6IiER9k9Lt+vlUMYfPIYgWekd7e0Ggzz2gJkPuLunKEdQccLGDSHf5OFAobHhrTJc7ZsvWhmDMag==", - "dependencies": { - "@storybook/csf": "0.1.11", - "@types/express": "^4.17.21", - "@types/node": "^18.0.0", - "browser-assert": "^1.2.1", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0", - "esbuild-register": "^3.5.0", - "express": "^4.19.2", - "process": "^0.11.10", - "recast": "^0.23.5", - "util": "^0.12.4", - "ws": "^8.2.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/cli/node_modules/@types/node": { - "version": "18.19.43", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.43.tgz", - "integrity": "sha512-Mw/YlgXnyJdEwLoFv2dpuJaDFriX+Pc+0qOBJ57jC1H6cDxIj2xc5yUrdtArDVG0m+KV6622a4p2tenEqB3C/g==", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@storybook/cli/node_modules/crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", - "dependencies": { - "type-fest": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/cli/node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/cli/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/@storybook/cli/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/cli/node_modules/globby": { + "node_modules/@storybook/codemod/node_modules/globby": { "version": "14.0.2", "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", @@ -6646,15 +6457,7 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/cli/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/@storybook/cli/node_modules/path-type": { + "node_modules/@storybook/codemod/node_modules/path-type": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", @@ -6665,18 +6468,7 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/cli/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@storybook/cli/node_modules/slash": { + "node_modules/@storybook/codemod/node_modules/slash": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", @@ -6687,203 +6479,51 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/cli/node_modules/storybook": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.2.6.tgz", - "integrity": "sha512-8j30wDxQmkcqI0fWcSYFsUCjErsY1yTWbTW+yjbwM8DyW18Cud6CwbFRCxjFsH+2M0CjP6Pqs/m1PGI0vcQscQ==", - "dependencies": { - "@babel/core": "^7.24.4", - "@babel/types": "^7.24.0", - "@storybook/codemod": "8.2.6", - "@storybook/core": "8.2.6", - "@types/semver": "^7.3.4", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "commander": "^6.2.1", - "cross-spawn": "^7.0.3", - "detect-indent": "^6.1.0", - "envinfo": "^7.7.3", - "execa": "^5.0.0", - "fd-package-json": "^1.2.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "giget": "^1.0.0", - "globby": "^14.0.1", - "jscodeshift": "^0.15.1", - "leven": "^3.1.0", - "ora": "^5.4.1", - "prettier": "^3.1.1", - "prompts": "^2.4.0", - "semver": "^7.3.7", - "strip-json-comments": "^3.0.1", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0" - }, - "bin": { - "getstorybook": "bin/index.cjs", - "sb": "bin/index.cjs", - "storybook": "bin/index.cjs" - }, + "node_modules/@storybook/components": { + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-8.2.9.tgz", + "integrity": "sha512-OkkcZ/f/6o3GdFEEK9ZHKIGHWUHmavZUYs5xaSgU64bOrA2aqEFtfeWWitZYTv3Euhk8MVLWfyEMDfez0AlvDg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^8.2.9" } }, - "node_modules/@storybook/cli/node_modules/temp-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", - "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@storybook/cli/node_modules/tempy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", - "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", + "node_modules/@storybook/core": { + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/core/-/core-8.2.9.tgz", + "integrity": "sha512-wSER8FpA6Il/jPyDfKm3yohxDtuhisNPTonMVzd3ulNWR4zERLddyO3HrHJJwdqYHLNk4SBFzwMGpQZVws1y0w==", "dependencies": { - "is-stream": "^3.0.0", - "temp-dir": "^3.0.0", - "type-fest": "^2.12.2", - "unique-string": "^3.0.0" - }, - "engines": { - "node": ">=14.16" + "@storybook/csf": "0.1.11", + "@types/express": "^4.17.21", + "@types/node": "^18.0.0", + "browser-assert": "^1.2.1", + "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0", + "esbuild-register": "^3.5.0", + "express": "^4.19.2", + "process": "^0.11.10", + "recast": "^0.23.5", + "util": "^0.12.4", + "ws": "^8.2.3" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/tempy/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/cli/node_modules/unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", - "dependencies": { - "crypto-random-string": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/codemod": { - "version": "8.2.7", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.2.7.tgz", - "integrity": "sha512-D2sJcZMUO6Y7DNja4LvdT6uBee4bZbQKB904kEG9Kpr0XF20IHAP9BbkfG8HEFaS0GbJwvGvE03Sg+S1y+vO6Q==", - "dev": true, - "dependencies": { - "@babel/core": "^7.24.4", - "@babel/preset-env": "^7.24.4", - "@babel/types": "^7.24.0", - "@storybook/core": "8.2.7", - "@storybook/csf": "0.1.11", - "@types/cross-spawn": "^6.0.2", - "cross-spawn": "^7.0.3", - "globby": "^14.0.1", - "jscodeshift": "^0.15.1", - "lodash": "^4.17.21", - "prettier": "^3.1.1", - "recast": "^0.23.5", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/codemod/node_modules/globby": { - "version": "14.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", - "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", - "dev": true, - "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/codemod/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/codemod/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/core": { - "version": "8.2.7", - "resolved": "https://registry.npmjs.org/@storybook/core/-/core-8.2.7.tgz", - "integrity": "sha512-vgw5MYN9Bq2/ZsObCOEHbBHwi4RpbYCHPFtKkr4kTnWID++FCSiSVd7jY3xPvcNxWqCxOyH6dThpBi+SsB/ZAA==", - "dev": true, - "dependencies": { - "@storybook/csf": "0.1.11", - "@types/express": "^4.17.21", - "@types/node": "^18.0.0", - "browser-assert": "^1.2.1", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0", - "esbuild-register": "^3.5.0", - "express": "^4.19.2", - "process": "^0.11.10", - "recast": "^0.23.5", - "util": "^0.12.4", - "ws": "^8.2.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/core-webpack": { - "version": "8.0.8", - "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-8.0.8.tgz", - "integrity": "sha512-wt7Ty2/aVAWSYbtXkpJ/oCi+NKc2SVrZVqqsasdt9IjAS4LTATZ89Ku0u1FKI61OhZbckVXBW5bPXJYibCK24Q==", - "dev": true, - "dependencies": { - "@storybook/core-common": "8.0.8", - "@storybook/node-logger": "8.0.8", - "@storybook/types": "8.0.8", - "@types/node": "^18.0.0", - "ts-dedent": "^2.0.0" + "node_modules/@storybook/core-webpack": { + "version": "8.0.8", + "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-8.0.8.tgz", + "integrity": "sha512-wt7Ty2/aVAWSYbtXkpJ/oCi+NKc2SVrZVqqsasdt9IjAS4LTATZ89Ku0u1FKI61OhZbckVXBW5bPXJYibCK24Q==", + "dev": true, + "dependencies": { + "@storybook/core-common": "8.0.8", + "@storybook/node-logger": "8.0.8", + "@storybook/types": "8.0.8", + "@types/node": "^18.0.0", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", @@ -7106,10 +6746,9 @@ "dev": true }, "node_modules/@storybook/core/node_modules/@types/node": { - "version": "18.19.43", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.43.tgz", - "integrity": "sha512-Mw/YlgXnyJdEwLoFv2dpuJaDFriX+Pc+0qOBJ57jC1H6cDxIj2xc5yUrdtArDVG0m+KV6622a4p2tenEqB3C/g==", - "dev": true, + "version": "18.19.45", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.45.tgz", + "integrity": "sha512-VZxPKNNhjKmaC1SUYowuXSRSMGyQGmQjvvA1xE4QZ0xce2kLtEhPDS+kqpCPBZYgqblCLQ2DAjSzmgCM5auvhA==", "dependencies": { "undici-types": "~5.26.4" } @@ -7138,81 +6777,6 @@ "storybook": "^8.2.6" } }, - "node_modules/@storybook/csf-tools": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.6.tgz", - "integrity": "sha512-jrKfHFNhiLBhWWW4/fm2wgKEVg55e6QuYUHY16KGd7PdPuzm+2Pt7jIl5V9yIj6a59YbjeMpT6jWPKbFx2TuCw==", - "dependencies": { - "@babel/generator": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", - "@storybook/csf": "^0.1.7", - "@storybook/types": "8.1.6", - "fs-extra": "^11.1.0", - "recast": "^0.23.5", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/channels": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.6.tgz", - "integrity": "sha512-CzDnP6qfI8OC8pGUk+wPUzLPYcKhX8XbriF2gBtwl6qVM8YfkHP2mLTiDYDwBIi0rLuUbSm/SpILXQ/ouOHOGw==", - "dependencies": { - "@storybook/client-logger": "8.1.6", - "@storybook/core-events": "8.1.6", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/client-logger": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.6.tgz", - "integrity": "sha512-QfSoUxS1rmrBzO7o99og9g+Gkm7sTmU5ZOpTkjszjlRqfV6/77eUnUOzUikej4LqPLmlJV5fqGuvoP0aNVksDw==", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/core-events": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.6.tgz", - "integrity": "sha512-DaIVe4TUp/7uQdSJYGmJv9S/S364tSgZ3S3dZ1vsf1rgoUbCp5kTBtcd/fcqgukMPREgCgO9oDhmemI3SLAqzw==", - "dependencies": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/csf-tools/node_modules/@storybook/types": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.6.tgz", - "integrity": "sha512-cWpS9+x1pxCO39spR8QmumMK2ub2p5cvMtrRvWaIjBFPbCwm2CvjBXFWIra2veBCZTxUKJ9VWxvi7pzRHjN/nw==", - "dependencies": { - "@storybook/channels": "8.1.6", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, "node_modules/@storybook/global": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", @@ -7249,6 +6813,18 @@ "storybook": "^8.2.5" } }, + "node_modules/@storybook/manager-api": { + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.2.9.tgz", + "integrity": "sha512-mkYvUlfqDw+0WbxIynh5TcrotmoXlumEsOA4+45zuNea8XpEgj5cNBUCnmfEO6yQ85swqkS8YYbMpg1cZyu/Vw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^8.2.9" + } + }, "node_modules/@storybook/nextjs": { "version": "8.0.8", "resolved": "https://registry.npmjs.org/@storybook/nextjs/-/nextjs-8.0.8.tgz", @@ -8030,17 +7606,29 @@ "url": "https://opencollective.com/storybook" } }, + "node_modules/@storybook/preview-api": { + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.2.9.tgz", + "integrity": "sha512-D8/t+a78OJqQAcT/ABa1C4YM/OaLGQ9IvCsp3Q9ruUqDCwuZBj8bG3D4477dlY4owX2ycC0rWYu3VvuK0EmJjA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^8.2.9" + } + }, "node_modules/@storybook/react": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-8.1.6.tgz", - "integrity": "sha512-2CSc3MLeaY7QaYAQLwaXRboKkgQnWrSZAo/WTJcSHUr2YFxH5+iECB0Kci12GqaJklhhgmfTfVZ4Jo9ZJ6LQfg==", + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-8.2.9.tgz", + "integrity": "sha512-F2xZcTDxxjpbqt7eP8rEHmlksiKmE/qtPusEWEY4N4jK01kN+ncxSl8gkJpUohMEmAnVC5t/1v/sU57xv1DYpg==", "dependencies": { - "@storybook/client-logger": "8.1.6", - "@storybook/docs-tools": "8.1.6", + "@storybook/components": "^8.2.9", "@storybook/global": "^5.0.0", - "@storybook/preview-api": "8.1.6", - "@storybook/react-dom-shim": "8.1.6", - "@storybook/types": "8.1.6", + "@storybook/manager-api": "^8.2.9", + "@storybook/preview-api": "^8.2.9", + "@storybook/react-dom-shim": "8.2.9", + "@storybook/theming": "^8.2.9", "@types/escodegen": "^0.0.6", "@types/estree": "^0.0.51", "@types/node": "^18.0.0", @@ -8067,6 +7655,7 @@ "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "storybook": "^8.2.9", "typescript": ">= 4.2.x" }, "peerDependenciesMeta": { @@ -8109,173 +7698,18 @@ "storybook": "^8.2.6" } }, - "node_modules/@storybook/react/node_modules/@storybook/channels": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.6.tgz", - "integrity": "sha512-CzDnP6qfI8OC8pGUk+wPUzLPYcKhX8XbriF2gBtwl6qVM8YfkHP2mLTiDYDwBIi0rLuUbSm/SpILXQ/ouOHOGw==", - "dependencies": { - "@storybook/client-logger": "8.1.6", - "@storybook/core-events": "8.1.6", - "@storybook/global": "^5.0.0", - "telejson": "^7.2.0", - "tiny-invariant": "^1.3.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/client-logger": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.6.tgz", - "integrity": "sha512-QfSoUxS1rmrBzO7o99og9g+Gkm7sTmU5ZOpTkjszjlRqfV6/77eUnUOzUikej4LqPLmlJV5fqGuvoP0aNVksDw==", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/core-common": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.6.tgz", - "integrity": "sha512-OTlfJFaTOB588ibXrrFm0TAXam6E5xV1VXSjNXL+fIifx8Kjln2HNSy1JKjvcblQneYiV4J1xPCVnAIe0EGHDg==", - "dependencies": { - "@storybook/core-events": "8.1.6", - "@storybook/csf-tools": "8.1.6", - "@storybook/node-logger": "8.1.6", - "@storybook/types": "8.1.6", - "@yarnpkg/fslib": "2.10.3", - "@yarnpkg/libzip": "2.3.0", - "chalk": "^4.1.0", - "cross-spawn": "^7.0.3", - "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", - "esbuild-register": "^3.5.0", - "execa": "^5.0.0", - "file-system-cache": "2.3.0", - "find-cache-dir": "^3.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^10.0.0", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "node-fetch": "^2.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "prettier-fallback": "npm:prettier@^3", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "semver": "^7.3.7", - "tempy": "^3.1.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "prettier": "^2 || ^3" - }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - } - } - }, - "node_modules/@storybook/react/node_modules/@storybook/core-events": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.6.tgz", - "integrity": "sha512-DaIVe4TUp/7uQdSJYGmJv9S/S364tSgZ3S3dZ1vsf1rgoUbCp5kTBtcd/fcqgukMPREgCgO9oDhmemI3SLAqzw==", - "dependencies": { - "@storybook/csf": "^0.1.7", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/docs-tools": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-8.1.6.tgz", - "integrity": "sha512-IhqQHSJ5nEBEJ162P/6/6c45toLinWpAkB7pwbAoP00djZSzfHNdQ4HfpZSGfD4GUJIvzsqMzUlyqCKLAoRPPA==", - "dependencies": { - "@storybook/core-common": "8.1.6", - "@storybook/core-events": "8.1.6", - "@storybook/preview-api": "8.1.6", - "@storybook/types": "8.1.6", - "@types/doctrine": "^0.0.3", - "assert": "^2.1.0", - "doctrine": "^3.0.0", - "lodash": "^4.17.21" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/node-logger": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.6.tgz", - "integrity": "sha512-IZEiTLFHu8Oom/vdEGpisSw5CfU+cw6/fTaX1P3EVClFOWVuy8/3X5MPu4wJH3jPym6E2DBduIUFeRsiuq61gA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/preview-api": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.1.6.tgz", - "integrity": "sha512-g9EvVg/DYqmjMh1uivJBJnSIvURyuK4LLabYicQNmYdQJscAeXX2bpMcA4aeci9BBm9B2RP7JbSnq7DbXZaJYA==", - "dependencies": { - "@storybook/channels": "8.1.6", - "@storybook/client-logger": "8.1.6", - "@storybook/core-events": "8.1.6", - "@storybook/csf": "^0.1.7", - "@storybook/global": "^5.0.0", - "@storybook/types": "8.1.6", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "tiny-invariant": "^1.3.1", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, "node_modules/@storybook/react/node_modules/@storybook/react-dom-shim": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-8.1.6.tgz", - "integrity": "sha512-qP5nkAmpGFy/gshO+bVjRo1rgo/6UVDElgOd2dlUtYnfdPONiOfWko2XGYKKfxa6Cp7KU35JlZz/kHGqWG31zQ==", + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-8.2.9.tgz", + "integrity": "sha512-uCAjSQEsNk8somVn1j/I1G9G/uUax5byHseIIV0Eq3gVXttGd7gaWcP+TDHtqIaenWHx4l+hCSuCesxiLWmx4Q==", "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta" - } - }, - "node_modules/@storybook/react/node_modules/@storybook/types": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.6.tgz", - "integrity": "sha512-cWpS9+x1pxCO39spR8QmumMK2ub2p5cvMtrRvWaIjBFPbCwm2CvjBXFWIra2veBCZTxUKJ9VWxvi7pzRHjN/nw==", - "dependencies": { - "@storybook/channels": "8.1.6", - "@types/express": "^4.7.0", - "file-system-cache": "2.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "storybook": "^8.2.9" } }, "node_modules/@storybook/react/node_modules/@types/node": { @@ -8286,131 +7720,15 @@ "undici-types": "~5.26.4" } }, - "node_modules/@storybook/react/node_modules/crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", - "dependencies": { - "type-fest": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/react/node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/react/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/@storybook/react/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/react/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/@storybook/react/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@storybook/react/node_modules/temp-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", - "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@storybook/react/node_modules/tempy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", - "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", - "dependencies": { - "is-stream": "^3.0.0", - "temp-dir": "^3.0.0", - "type-fest": "^2.12.2", - "unique-string": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/react/node_modules/tempy/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/react/node_modules/unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", - "dependencies": { - "crypto-random-string": "^4.0.0" + "node_modules/@storybook/react/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, "node_modules/@storybook/test": { @@ -8474,6 +7792,18 @@ "ts-dedent": "^2.2.0" } }, + "node_modules/@storybook/theming": { + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.2.9.tgz", + "integrity": "sha512-OL0NFvowPX85N5zIYdgeKKaFm7V4Vgtci093vL3cDZT13LGH6GuEzJKkUFGuUGNPFlJc+EgTj0o6PYKrOLyQ6w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^8.2.9" + } + }, "node_modules/@swc/core": { "version": "1.3.101", "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.101.tgz", @@ -8881,7 +8211,8 @@ "node_modules/@types/doctrine": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", - "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==" + "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", + "dev": true }, "node_modules/@types/emscripten": { "version": "1.39.8", @@ -8893,24 +8224,6 @@ "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==" }, - "node_modules/@types/eslint": { - "version": "8.44.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.2.tgz", - "integrity": "sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, "node_modules/@types/estree": { "version": "0.0.51", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", @@ -9032,11 +8345,11 @@ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "node_modules/@types/node": { - "version": "20.12.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", - "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", + "version": "22.5.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.0.tgz", + "integrity": "sha512-DkFrJOe+rfdHTqqMg0bSNlGlQ85hSoh2TPzZyhHsXnMtligRWpxUySiyw8FY14ITt24HVCiQPWxS3KO/QlGmWg==", "dependencies": { - "undici-types": "~5.26.4" + "undici-types": "~6.19.2" } }, "node_modules/@types/node-fetch": { @@ -9061,6 +8374,11 @@ "node": ">= 6" } }, + "node_modules/@types/node/node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" + }, "node_modules/@types/nodemailer": { "version": "6.4.14", "resolved": "https://registry.npmjs.org/@types/nodemailer/-/nodemailer-6.4.14.tgz", @@ -9121,6 +8439,15 @@ "@types/react": "*" } }, + "node_modules/@types/react-transition-group": { + "version": "4.4.11", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.11.tgz", + "integrity": "sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==", + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, "node_modules/@types/resolve": { "version": "1.20.6", "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.6.tgz", @@ -9151,18 +8478,6 @@ "@types/node": "*" } }, - "node_modules/@types/sinonjs__fake-timers": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", - "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", - "dev": true - }, - "node_modules/@types/sizzle": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", - "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", - "dev": true - }, "node_modules/@types/unist": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz", @@ -9199,16 +8514,6 @@ "resolved": "https://registry.npmjs.org/@types/wellknown/-/wellknown-0.5.8.tgz", "integrity": "sha512-/tXv+IfentaS3F0VplScdl+pwP7biW4RBnOxCTtoWlpNiulFBQWqA8rA7r/knavu9SELsFcNVtdGo6YNIElMdw==" }, - "node_modules/@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", - "dev": true, - "optional": true, - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@typescript-eslint/parser": { "version": "6.7.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.7.0.tgz", @@ -9718,9 +9023,9 @@ "peer": true }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", "dependencies": { "@webassemblyjs/helper-numbers": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6" @@ -9737,9 +9042,9 @@ "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.11.6", @@ -9757,14 +9062,14 @@ "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/wasm-gen": "1.12.1" } }, "node_modules/@webassemblyjs/ieee754": { @@ -9789,26 +9094,26 @@ "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", "@webassemblyjs/leb128": "1.11.6", @@ -9816,22 +9121,22 @@ } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-api-error": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", @@ -9840,11 +9145,11 @@ } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@xtuc/long": "4.2.2" } }, @@ -10163,42 +9468,6 @@ "ajv": "^6.9.1" } }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -10253,33 +9522,14 @@ "node_modules/app-root-dir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", - "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==" + "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", + "dev": true }, "node_modules/aproba": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" }, - "node_modules/arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/archiver": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.2.tgz", @@ -10557,15 +9807,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dev": true, - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, "node_modules/asn1.js": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", @@ -10588,6 +9829,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", + "dev": true, "dependencies": { "call-bind": "^1.0.2", "is-nan": "^1.3.2", @@ -10596,15 +9838,6 @@ "util": "^0.12.5" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, "node_modules/assertion-error": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", @@ -10619,15 +9852,6 @@ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/async": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", @@ -10709,21 +9933,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", - "dev": true - }, "node_modules/axe-core": { "version": "4.8.1", "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.1.tgz", @@ -10733,12 +9942,12 @@ } }, "node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", + "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", "dev": true, "dependencies": { - "follow-redirects": "^1.15.0", + "follow-redirects": "^1.15.6", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } @@ -10958,7 +10167,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "peer": true, "dependencies": { "@babel/runtime": "^7.12.5", "cosmiconfig": "^7.0.0", @@ -11112,15 +10320,6 @@ "node": ">= 10.0.0" } }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dev": true, - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, "node_modules/big-integer": { "version": "1.6.52", "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", @@ -11181,12 +10380,6 @@ "node": ">= 6" } }, - "node_modules/blob-util": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", - "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", - "dev": true - }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -11494,15 +10687,6 @@ "node": ">= 0.8" } }, - "node_modules/cachedir": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz", - "integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", @@ -11569,12 +10753,6 @@ "node": ">=4" } }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "dev": true - }, "node_modules/chai": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", @@ -11604,6 +10782,27 @@ "node": "*" } }, + "node_modules/chakra-react-select": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/chakra-react-select/-/chakra-react-select-4.9.1.tgz", + "integrity": "sha512-jmgfN+S/wnTaCp3pW30GYDIZ5J8jWcT1gIbhpw6RdKV+atm/U4/sT+gaHOHHhRL8xeaYip+iI/m8MPGREkve0w==", + "license": "MIT", + "dependencies": { + "react-select": "5.8.0" + }, + "peerDependencies": { + "@chakra-ui/form-control": "^2.0.0", + "@chakra-ui/icon": "^3.0.0", + "@chakra-ui/layout": "^2.0.0", + "@chakra-ui/media-query": "^3.0.0", + "@chakra-ui/menu": "^2.0.0", + "@chakra-ui/spinner": "^2.0.0", + "@chakra-ui/system": "^2.0.0", + "@emotion/react": "^11.8.1", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -11693,21 +10892,6 @@ "node": ">=6.0" } }, - "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "engines": { - "node": ">=8" - } - }, "node_modules/cipher-base": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", @@ -11791,37 +10975,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/client-only": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", @@ -12006,15 +11159,6 @@ "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", @@ -12544,135 +11688,15 @@ "node": ">=4" } }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/csv-parse": { - "version": "5.5.5", - "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.5.tgz", - "integrity": "sha512-erCk7tyU3yLWAhk6wvKxnyPtftuy/6Ak622gOO7BCJ05+TYffnPCJF905wmOQm+BpkX54OdAl8pveJwUdpnCXQ==" - }, - "node_modules/cypress": { - "version": "13.13.2", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.13.2.tgz", - "integrity": "sha512-PvJQU33933NvS1StfzEb8/mu2kMy4dABwCF+yd5Bi7Qly1HOVf+Bufrygee/tlmty/6j5lX+KIi8j9Q3JUMbhA==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@cypress/request": "^3.0.1", - "@cypress/xvfb": "^1.2.4", - "@types/sinonjs__fake-timers": "8.1.1", - "@types/sizzle": "^2.3.2", - "arch": "^2.2.0", - "blob-util": "^2.0.2", - "bluebird": "^3.7.2", - "buffer": "^5.7.1", - "cachedir": "^2.3.0", - "chalk": "^4.1.0", - "check-more-types": "^2.24.0", - "cli-cursor": "^3.1.0", - "cli-table3": "~0.6.1", - "commander": "^6.2.1", - "common-tags": "^1.8.0", - "dayjs": "^1.10.4", - "debug": "^4.3.4", - "enquirer": "^2.3.6", - "eventemitter2": "6.4.7", - "execa": "4.1.0", - "executable": "^4.1.1", - "extract-zip": "2.0.1", - "figures": "^3.2.0", - "fs-extra": "^9.1.0", - "getos": "^3.2.1", - "is-ci": "^3.0.1", - "is-installed-globally": "~0.4.0", - "lazy-ass": "^1.6.0", - "listr2": "^3.8.3", - "lodash": "^4.17.21", - "log-symbols": "^4.0.0", - "minimist": "^1.2.8", - "ospath": "^1.2.2", - "pretty-bytes": "^5.6.0", - "process": "^0.11.10", - "proxy-from-env": "1.0.0", - "request-progress": "^3.0.0", - "semver": "^7.5.3", - "supports-color": "^8.1.1", - "tmp": "~0.2.3", - "untildify": "^4.0.0", - "yauzl": "^2.10.0" - }, - "bin": { - "cypress": "bin/cypress" - }, - "engines": { - "node": "^16.0.0 || ^18.0.0 || >=20.0.0" - } - }, - "node_modules/cypress/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cypress/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cypress/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cypress/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/cypress/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/csv-parse": { + "version": "5.5.6", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.6.tgz", + "integrity": "sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==" }, "node_modules/d": { "version": "1.0.1", @@ -12688,18 +11712,6 @@ "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, "node_modules/dayjs": { "version": "1.11.9", "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", @@ -13028,6 +12040,16 @@ "utila": "~0.4" } }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, "node_modules/dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", @@ -13105,6 +12127,7 @@ "version": "16.3.1", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "dev": true, "engines": { "node": ">=12" }, @@ -13116,6 +12139,7 @@ "version": "10.0.0", "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", + "dev": true, "engines": { "node": ">=12" } @@ -13176,16 +12200,6 @@ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "dev": true, - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", @@ -13282,9 +12296,9 @@ "integrity": "sha512-bT0jEz/Xz1fahQpbZ1D7LgmPYZ3iHVY39NcWWro1+hA2IvjiPeaXtfSqrQ+nXjApMvQRE2ASt1itSLRrebHMRQ==" }, "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "version": "6.5.7", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.7.tgz", + "integrity": "sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==", "dev": true, "dependencies": { "bn.js": "^4.11.9", @@ -13392,9 +12406,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -13403,19 +12417,6 @@ "node": ">=10.13.0" } }, - "node_modules/enquirer": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", - "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", - "dev": true, - "dependencies": { - "ansi-colors": "^4.1.1", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8.6" - } - }, "node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", @@ -14643,12 +13644,6 @@ "node": ">=6" } }, - "node_modules/eventemitter2": { - "version": "6.4.7", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", - "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", - "dev": true - }, "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", @@ -14715,41 +13710,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", - "dev": true, - "dependencies": { - "pify": "^2.2.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/expand-template": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", @@ -14848,41 +13808,6 @@ "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - }, - "engines": { - "node": ">= 10.17.0" - }, - "optionalDependencies": { - "@types/yauzl": "^2.9.1" - } - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "dev": true, - "engines": [ - "node >=0.6.0" - ] - }, "node_modules/fast-csv": { "version": "4.3.6", "resolved": "https://registry.npmjs.org/fast-csv/-/fast-csv-4.3.6.tgz", @@ -14972,15 +13897,6 @@ "walk-up-path": "^3.0.1" } }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, - "dependencies": { - "pend": "~1.2.0" - } - }, "node_modules/fetch-blob": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-4.0.0.tgz", @@ -15062,30 +13978,6 @@ "webidl-conversions": "^4.0.2" } }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -15101,6 +13993,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", + "dev": true, "dependencies": { "fs-extra": "11.1.1", "ramda": "0.29.0" @@ -15160,6 +14053,7 @@ "version": "3.3.2", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, "dependencies": { "commondir": "^1.0.1", "make-dir": "^3.0.2", @@ -15176,6 +14070,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -15188,6 +14083,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, "dependencies": { "p-locate": "^4.1.0" }, @@ -15199,6 +14095,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, "dependencies": { "p-try": "^2.0.0" }, @@ -15213,6 +14110,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, "dependencies": { "p-limit": "^2.2.0" }, @@ -15224,6 +14122,7 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, "dependencies": { "find-up": "^4.0.0" }, @@ -15234,8 +14133,7 @@ "node_modules/find-root": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", - "peer": true + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" }, "node_modules/find-up": { "version": "5.0.0", @@ -15271,9 +14169,9 @@ "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" }, "node_modules/flow-parser": { - "version": "0.242.1", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.242.1.tgz", - "integrity": "sha512-E3ml21Q1S5cMAyPbtYslkvI6yZO5oCS/S2EoteeFH8Kx9iKOv/YOJ+dGd/yMf+H3YKfhMKjnOpyNwrO7NdddWA==", + "version": "0.244.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.244.0.tgz", + "integrity": "sha512-Dkc88m5k8bx1VvHTO9HEJ7tvMcSb3Zvcv1PY4OHK7pHdtdY2aUjhmPy6vpjVJ2uUUOIybRlb91sXE8g4doChtA==", "engines": { "node": ">=0.4.0" } @@ -15343,15 +14241,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz", @@ -15765,21 +14654,6 @@ "node": ">=6" } }, - "node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/get-symbol-description": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", @@ -15806,24 +14680,6 @@ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" } }, - "node_modules/getos": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", - "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", - "dev": true, - "dependencies": { - "async": "^3.2.0" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" - } - }, "node_modules/giget": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/giget/-/giget-1.1.2.tgz", @@ -15929,21 +14785,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "dependencies": { - "ini": "2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -16010,6 +14851,7 @@ "version": "4.7.8", "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, "dependencies": { "minimist": "^1.2.5", "neo-async": "^2.6.2", @@ -16030,6 +14872,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -16214,7 +15057,6 @@ "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "peer": true, "dependencies": { "react-is": "^16.7.0" } @@ -16364,20 +15206,6 @@ "node": ">= 0.8" } }, - "node_modules/http-signature": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", - "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^2.0.2", - "sshpk": "^1.14.1" - }, - "engines": { - "node": ">=0.10" - } - }, "node_modules/https-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", @@ -16396,15 +15224,6 @@ "node": ">= 6" } }, - "node_modules/human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true, - "engines": { - "node": ">=8.12.0" - } - }, "node_modules/humanize-ms": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", @@ -16414,9 +15233,9 @@ } }, "node_modules/i18next": { - "version": "23.12.2", - "resolved": "https://registry.npmjs.org/i18next/-/i18next-23.12.2.tgz", - "integrity": "sha512-XIeh5V+bi8SJSWGL3jqbTEBW5oD6rbP5L+E7dVQh1MNTxxYef0x15rhJVcRb7oiuq4jLtgy2SD8eFlf6P2cmqg==", + "version": "23.13.0", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-23.13.0.tgz", + "integrity": "sha512-B+g0/KTKmN3+NeMKPljQxdrih6Q6lyDF5O2e/Ofd0JQsTLojJD/BSTTN04iw6OVc0yBiHeypu5hoBNV6ag44Zw==", "funding": [ { "type": "individual", @@ -16436,9 +15255,9 @@ } }, "node_modules/i18next-browser-languagedetector": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-7.2.0.tgz", - "integrity": "sha512-U00DbDtFIYD3wkWsr2aVGfXGAj2TgnELzOX9qv8bT0aJtvPV9CRO77h+vgmHFBMe7LAxdwvT/7VkCWGya6L3tA==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-8.0.0.tgz", + "integrity": "sha512-zhXdJXTTCoG39QsrOCiOabnWj2jecouOqbchu3EfhtSHxIB5Uugnm9JaizenOy39h7ne3+fLikIjeW88+rgszw==", "dependencies": { "@babel/runtime": "^7.23.2" } @@ -16592,15 +15411,6 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, "node_modules/internal-slot": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", @@ -16745,18 +15555,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", - "dev": true, - "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" - } - }, "node_modules/is-core-module": { "version": "2.13.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", @@ -16834,22 +15632,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", @@ -16870,6 +15652,7 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "dev": true, "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3" @@ -17045,12 +15828,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, "node_modules/is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", @@ -17111,12 +15888,6 @@ "node": ">=0.10.0" } }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "dev": true - }, "node_modules/iterator.prototype": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.1.tgz", @@ -17228,12 +15999,6 @@ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "dev": true - }, "node_modules/jscodeshift": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", @@ -17308,12 +16073,6 @@ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", @@ -17414,21 +16173,6 @@ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "node_modules/jsprim": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", - "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, "node_modules/jsx-ast-utils": { "version": "3.3.5", "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", @@ -17564,6 +16308,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", + "dev": true, "dependencies": { "app-root-dir": "^1.0.2", "dotenv": "^16.0.0", @@ -17647,73 +16392,29 @@ "node_modules/lie": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", - "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", - "dependencies": { - "immediate": "~3.0.5" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/listenercount": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", - "integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" - }, - "node_modules/listr2": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", - "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", - "dev": true, - "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.16", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.5.1", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "dependencies": { + "immediate": "~3.0.5" } }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/listenercount": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", + "integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" + }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", @@ -17866,6 +16567,11 @@ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" }, + "node_modules/lodash.uniqby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", + "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==" + }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -17881,55 +16587,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -18008,7 +16665,8 @@ "node_modules/map-or-similar": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", - "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==" + "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", + "dev": true }, "node_modules/map-stream": { "version": "0.1.0", @@ -18087,6 +16745,12 @@ "node": ">= 4.0.0" } }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "license": "MIT" + }, "node_modules/memoizee": { "version": "0.4.15", "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", @@ -18106,6 +16770,7 @@ "version": "1.11.3", "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", + "dev": true, "dependencies": { "map-or-similar": "^1.5.0" } @@ -18137,11 +16802,11 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -18394,11 +17059,11 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, "node_modules/next": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/next/-/next-14.2.3.tgz", - "integrity": "sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==", + "version": "14.2.5", + "resolved": "https://registry.npmjs.org/next/-/next-14.2.5.tgz", + "integrity": "sha512-0f8aRfBVL+mpzfBjYfQuLWh2WyAwtJXCRfkPF4UJ5qd2YwrHczsrSzXU4tRMV0OAxR8ZJZWPFn6uhSC56UTsLA==", "dependencies": { - "@next/env": "14.2.3", + "@next/env": "14.2.5", "@swc/helpers": "0.5.5", "busboy": "1.6.0", "caniuse-lite": "^1.0.30001579", @@ -18413,15 +17078,15 @@ "node": ">=18.17.0" }, "optionalDependencies": { - "@next/swc-darwin-arm64": "14.2.3", - "@next/swc-darwin-x64": "14.2.3", - "@next/swc-linux-arm64-gnu": "14.2.3", - "@next/swc-linux-arm64-musl": "14.2.3", - "@next/swc-linux-x64-gnu": "14.2.3", - "@next/swc-linux-x64-musl": "14.2.3", - "@next/swc-win32-arm64-msvc": "14.2.3", - "@next/swc-win32-ia32-msvc": "14.2.3", - "@next/swc-win32-x64-msvc": "14.2.3" + "@next/swc-darwin-arm64": "14.2.5", + "@next/swc-darwin-x64": "14.2.5", + "@next/swc-linux-arm64-gnu": "14.2.5", + "@next/swc-linux-arm64-musl": "14.2.5", + "@next/swc-linux-x64-gnu": "14.2.5", + "@next/swc-linux-x64-musl": "14.2.5", + "@next/swc-win32-arm64-msvc": "14.2.5", + "@next/swc-win32-ia32-msvc": "14.2.5", + "@next/swc-win32-x64-msvc": "14.2.5" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", @@ -18482,11 +17147,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "node_modules/next/node_modules/@next/env": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.3.tgz", - "integrity": "sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==" - }, "node_modules/next/node_modules/@swc/helpers": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz", @@ -19052,12 +17712,6 @@ "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", "dev": true }, - "node_modules/ospath": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", - "dev": true - }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -19313,18 +17967,6 @@ "url": "https://ko-fi.com/killymxi" } }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true - }, "node_modules/periscopic": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", @@ -19527,21 +18169,21 @@ } }, "node_modules/pino": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/pino/-/pino-9.0.0.tgz", - "integrity": "sha512-uI1ThkzTShNSwvsUM6b4ND8ANzWURk9zTELMztFkmnCQeR/4wkomJ+echHee5GMWGovoSfjwdeu80DsFIt7mbA==", + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/pino/-/pino-9.3.2.tgz", + "integrity": "sha512-WtARBjgZ7LNEkrGWxMBN/jvlFiE17LTbBoH0konmBU684Kd0uIiDwBXlcTCW7iJnA6HfIKwUssS/2AC6cDEanw==", "dependencies": { "atomic-sleep": "^1.0.0", "fast-redact": "^3.1.1", "on-exit-leak-free": "^2.1.0", "pino-abstract-transport": "^1.2.0", - "pino-std-serializers": "^6.0.0", - "process-warning": "^3.0.0", + "pino-std-serializers": "^7.0.0", + "process-warning": "^4.0.0", "quick-format-unescaped": "^4.0.3", "real-require": "^0.2.0", "safe-stable-stringify": "^2.3.1", - "sonic-boom": "^3.7.0", - "thread-stream": "^2.6.0" + "sonic-boom": "^4.0.1", + "thread-stream": "^3.0.0" }, "bin": { "pino": "bin.js" @@ -19557,9 +18199,9 @@ } }, "node_modules/pino-std-serializers": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz", - "integrity": "sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==" + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz", + "integrity": "sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==" }, "node_modules/pirates": { "version": "4.0.6", @@ -19573,6 +18215,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "dev": true, "dependencies": { "find-up": "^5.0.0" }, @@ -19581,33 +18224,33 @@ } }, "node_modules/playwright": { - "version": "1.43.1", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.43.1.tgz", - "integrity": "sha512-V7SoH0ai2kNt1Md9E3Gwas5B9m8KR2GVvwZnAI6Pg0m3sh7UvgiYhRrhsziCmqMJNouPckiOhk8T+9bSAK0VIA==", + "version": "1.46.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.46.1.tgz", + "integrity": "sha512-oPcr1yqoXLCkgKtD5eNUPLiN40rYEM39odNpIb6VE6S7/15gJmA1NzVv6zJYusV0e7tzvkU/utBFNa/Kpxmwng==", "devOptional": true, "dependencies": { - "playwright-core": "1.43.1" + "playwright-core": "1.46.1" }, "bin": { "playwright": "cli.js" }, "engines": { - "node": ">=16" + "node": ">=18" }, "optionalDependencies": { "fsevents": "2.3.2" } }, "node_modules/playwright-core": { - "version": "1.43.1", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.43.1.tgz", - "integrity": "sha512-EI36Mto2Vrx6VF7rm708qSnesVQKbxEWvPrfA1IPY6HgczBplDx7ENtx+K2n4kJ41sLLkuGfmb0ZLSSXlDhqPg==", + "version": "1.46.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.46.1.tgz", + "integrity": "sha512-h9LqIQaAv+CYvWzsZ+h3RsrqCStkBHlgo6/TJlFst3cOTlLghBQlJwPOZKQJTKNaD3QIB7aAVQ+gfWbN3NXB7A==", "devOptional": true, "bin": { "playwright-core": "cli.js" }, "engines": { - "node": ">=16" + "node": ">=18" } }, "node_modules/playwright/node_modules/fsevents": { @@ -20050,33 +18693,6 @@ "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/prettier-fallback": { - "name": "prettier", - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", - "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/pretty-error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", @@ -20120,6 +18736,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, "engines": { "node": ">= 0.8" } @@ -20166,9 +18783,9 @@ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "node_modules/process-warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-3.0.0.tgz", - "integrity": "sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-4.0.0.tgz", + "integrity": "sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw==" }, "node_modules/prompts": { "version": "2.4.2", @@ -20209,12 +18826,6 @@ "node": ">= 0.10" } }, - "node_modules/proxy-from-env": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", - "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", - "dev": true - }, "node_modules/ps-tree": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", @@ -20230,12 +18841,6 @@ "node": ">= 0.10" } }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true - }, "node_modules/public-encrypt": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", @@ -20278,6 +18883,7 @@ "version": "6.11.2", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dev": true, "dependencies": { "side-channel": "^1.0.4" }, @@ -20306,12 +18912,6 @@ "node": ">=0.4.x" } }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, "node_modules/queue": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", @@ -20355,6 +18955,7 @@ "version": "0.29.0", "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", + "dev": true, "funding": { "type": "opencollective", "url": "https://opencollective.com/ramda" @@ -21173,9 +19774,9 @@ } }, "node_modules/react-i18next": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-15.0.0.tgz", - "integrity": "sha512-2O3IgF4zivg57Q6p6i+ChDgJ371IDcEWbuWC6gvoh5NbkDMs0Q+O7RPr4v61+Se32E0V+LmtwePAeqWZW0bi6g==", + "version": "15.0.1", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-15.0.1.tgz", + "integrity": "sha512-NwxLqNM6CLbeGA9xPsjits0EnXdKgCRSS6cgkgOdNcPXqL+1fYNl8fBg1wmnnHvFy812Bt4IWTPE9zjoPmFj3w==", "dependencies": { "@babel/runtime": "^7.24.8", "html-parse-stringify": "^3.0.1" @@ -21309,6 +19910,27 @@ } } }, + "node_modules/react-select": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.8.0.tgz", + "integrity": "sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.8.1", + "@floating-ui/dom": "^1.0.1", + "@types/react-transition-group": "^4.4.0", + "memoize-one": "^6.0.0", + "prop-types": "^15.6.0", + "react-transition-group": "^4.3.0", + "use-isomorphic-layout-effect": "^1.1.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/react-style-singleton": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", @@ -21331,6 +19953,22 @@ } } }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, "node_modules/read-cache": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", @@ -21735,15 +20373,6 @@ "entities": "^2.0.0" } }, - "node_modules/request-progress": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", - "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", - "dev": true, - "dependencies": { - "throttleit": "^1.0.0" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -21769,12 +20398,6 @@ "node": ">=0.10.5" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true - }, "node_modules/reselect": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.0.tgz", @@ -21806,6 +20429,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, "engines": { "node": ">=8" } @@ -21883,12 +20507,6 @@ "node": ">=0.10.0" } }, - "node_modules/rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", - "dev": true - }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", @@ -22633,20 +21251,6 @@ "node": ">=8" } }, - "node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/socket.io": { "version": "4.7.3", "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.3.tgz", @@ -22700,9 +21304,9 @@ } }, "node_modules/sonic-boom": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.7.0.tgz", - "integrity": "sha512-IudtNvSqA/ObjN97tfgNmOKyDOs4dNcg4cUUsHDebqsgb8wGBBwb31LIgShNO8fye0dFI52X1+tFoKKI6Rq1Gg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.0.1.tgz", + "integrity": "sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==", "dependencies": { "atomic-sleep": "^1.0.0" } @@ -22720,7 +21324,6 @@ "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "peer": true, "engines": { "node": ">=0.10.0" } @@ -22780,31 +21383,6 @@ "node": ">= 10.x" } }, - "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "dev": true, - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/sswr": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/sswr/-/sswr-2.1.0.tgz", @@ -22935,15 +21513,14 @@ } }, "node_modules/storybook": { - "version": "8.2.7", - "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.2.7.tgz", - "integrity": "sha512-Jb9DXue1sr3tKkpuq66VP5ItOKTpxL6t99ze1wXDbjCvPiInTdPA5AyFEjBuKjOBIh28bayYoOZa6/xbMJV+Wg==", - "dev": true, + "version": "8.2.9", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.2.9.tgz", + "integrity": "sha512-S7Q/Yt4A+nu1O23rg39lQvBqL2Vg+PKXbserDWUR4LFJtfmoZ2xGO8oFIhJmvvhjUBvolw1q7QDeswPq2i0sGw==", "dependencies": { "@babel/core": "^7.24.4", "@babel/types": "^7.24.0", - "@storybook/codemod": "8.2.7", - "@storybook/core": "8.2.7", + "@storybook/codemod": "8.2.9", + "@storybook/core": "8.2.9", "@types/semver": "^7.3.4", "@yarnpkg/fslib": "2.10.3", "@yarnpkg/libzip": "2.3.0", @@ -22983,7 +21560,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", - "dev": true, "dependencies": { "type-fest": "^1.0.1" }, @@ -22998,7 +21574,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, "engines": { "node": ">=10" }, @@ -23010,7 +21585,6 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", @@ -23033,7 +21607,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, "engines": { "node": ">=10" }, @@ -23045,7 +21618,6 @@ "version": "14.0.2", "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", - "dev": true, "dependencies": { "@sindresorhus/merge-streams": "^2.1.0", "fast-glob": "^3.3.2", @@ -23065,7 +21637,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, "engines": { "node": ">=10.17.0" } @@ -23074,7 +21645,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true, "engines": { "node": ">=12" }, @@ -23086,7 +21656,6 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, "bin": { "semver": "bin/semver.js" }, @@ -23098,7 +21667,6 @@ "version": "5.1.0", "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true, "engines": { "node": ">=14.16" }, @@ -23110,7 +21678,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", - "dev": true, "engines": { "node": ">=14.16" } @@ -23119,7 +21686,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", - "dev": true, "dependencies": { "is-stream": "^3.0.0", "temp-dir": "^3.0.0", @@ -23137,7 +21703,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, @@ -23149,7 +21714,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", - "dev": true, "dependencies": { "crypto-random-string": "^4.0.0" }, @@ -23522,9 +22086,9 @@ } }, "node_modules/svelte": { - "version": "4.2.18", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.18.tgz", - "integrity": "sha512-d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==", + "version": "4.2.19", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.19.tgz", + "integrity": "sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==", "peer": true, "dependencies": { "@ampproject/remapping": "^2.2.1", @@ -23620,9 +22184,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", - "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.10.tgz", + "integrity": "sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==", "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", @@ -23750,6 +22314,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", "integrity": "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==", + "dev": true, "dependencies": { "memoizerific": "^1.11.3" } @@ -23838,9 +22403,9 @@ } }, "node_modules/terser": { - "version": "5.19.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.4.tgz", - "integrity": "sha512-6p1DjHeuluwxDXcuT9VR8p64klWJKo1ILiy19s6C9+0Bh2+NWTX6nD9EPppiER4ICkHDVB1RkVpin/YW2nQn/g==", + "version": "5.31.6", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", + "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", @@ -23855,15 +22420,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.20", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "terser": "^5.26.0" }, "engines": { "node": ">= 10.13.0" @@ -23955,19 +22520,13 @@ } }, "node_modules/thread-stream": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-2.7.0.tgz", - "integrity": "sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz", + "integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==", "dependencies": { "real-require": "^0.2.0" } }, - "node_modules/throttleit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", - "dev": true - }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -24054,30 +22613,6 @@ "resolved": "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz", "integrity": "sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==" }, - "node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", - "dev": true, - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -24599,12 +23134,6 @@ "node": "*" } }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, "node_modules/type": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", @@ -24735,6 +23264,7 @@ "version": "3.17.4", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, "optional": true, "bin": { "uglifyjs": "bin/uglifyjs" @@ -24964,15 +23494,6 @@ "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==", "dev": true }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/unzipper": { "version": "0.10.14", "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.14.tgz", @@ -25074,16 +23595,6 @@ "qs": "^6.11.2" } }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, "node_modules/url/node_modules/punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", @@ -25110,6 +23621,20 @@ } } }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, "node_modules/use-sidecar": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", @@ -25198,20 +23723,6 @@ "node": ">= 0.8" } }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, "node_modules/vm-browserify": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", @@ -25272,9 +23783,9 @@ "integrity": "sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==" }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -25305,33 +23816,32 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", + "version": "5.94.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", + "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", + "dependencies": { + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -25457,14 +23967,14 @@ "dev": true }, "node_modules/webpack/node_modules/@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" }, "node_modules/webpack/node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "bin": { "acorn": "bin/acorn" }, @@ -25472,10 +23982,10 @@ "node": ">=0.4.0" } }, - "node_modules/webpack/node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/webpack/node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", "peerDependencies": { "acorn": "^8" } @@ -25667,7 +24177,8 @@ "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true }, "node_modules/wrap-ansi": { "version": "8.1.0", @@ -25856,16 +24367,6 @@ "node": ">=10" } }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dev": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/app/package.json b/app/package.json index da0b151cc..6e2d40789 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "city-catalyst", - "version": "0.13.0-rc.5", + "version": "0.14.0-rc.0", "private": true, "type": "module", "scripts": { @@ -11,6 +11,7 @@ "test": "npm run api:test & npm run e2e:test", "api:test": "glob -c \"tsx --no-warnings --test\" \"./tests/**/*.test.ts\"", "e2e:test": "npx playwright test", + "e2e:debug": "playwright test --debug", "e2e:test:head": "npx playwright test -- --headed", "test-single": "tsx --no-warnings --test", "storybook": "storybook dev -p 6006", @@ -36,15 +37,15 @@ "@next/env": "^14.2.5", "@react-email/components": "^0.0.19", "@reduxjs/toolkit": "^2.2.7", - "@storybook/cli": "^8.0.8", - "@storybook/react": "^8.1.6", + "@storybook/cli": "^8.2.9", + "@storybook/react": "^8.2.9", "@storybook/testing-library": "^0.2.2", "@types/bcrypt": "^5.0.2", "@types/geojson": "^7946.0.14", "@types/http-errors": "^2.0.4", "@types/js-cookie": "^3.0.6", "@types/jsonwebtoken": "^9.0.6", - "@types/node": "20.12.12", + "@types/node": "22.5.0", "@types/nodemailer": "^6.4.14", "@types/pg": "^8.11.5", "@types/react": "18.3.3", @@ -55,7 +56,8 @@ "ai": "^3.2.35", "autoprefixer": "10.4.16", "bcrypt": "^5.1.1", - "csv-parse": "^5.5.5", + "chakra-react-select": "^4.9.1", + "csv-parse": "^5.5.6", "eslint": "8.57.0", "eslint-config-next": "^14.1.3", "eslint-plugin-storybook": "^0.8.0", @@ -65,33 +67,34 @@ "framer-motion": "^11.1.7", "geojson": "^0.5.0", "http-errors": "^2.0.0", - "i18next": "^23.12.2", - "i18next-browser-languagedetector": "^7.2.0", + "i18next": "^23.13.0", + "i18next-browser-languagedetector": "^8.0.0", "i18next-resources-to-backend": "^1.2.1", "js-cookie": "^3.0.5", "jsonwebtoken": "^9.0.2", - "next": "14.2.3", + "lodash.uniqby": "^4.7.0", + "next": "14.2.5", "next-auth": "^4.24.7", "nodemailer": "^6.9.13", "openai": "^4.52.7", "pg": "^8.11.5", "pg-hstore": "^2.3.4", "pigeon-maps": "^0.21.6", - "pino": "^9.0.0", + "pino": "^9.3.2", "postcss": "8.4.31", "react": "18.3.1", "react-circle-flags": "^0.0.20", "react-dom": "18.2.0", "react-email": "^2.1.4", "react-hook-form": "^7.52.0", - "react-i18next": "^15.0.0", + "react-i18next": "^15.0.1", "react-icons": "^5.1.0", "react-intersection-observer": "^9.8.2", "react-redux": "^9.1.2", "redux-persist": "^6.0.0", "sequelize": "^6.37.3", "sequelize-cli": "^6.6.2", - "tailwindcss": "3.4.3", + "tailwindcss": "3.4.10", "tsx": "^4.7.3", "typescript": "5.5.4", "uuid": "^9.0.1", @@ -99,14 +102,13 @@ "zod": "^3.22.4" }, "devDependencies": { - "@playwright/test": "^1.43.1", + "@playwright/test": "^1.46.1", "@storybook/addon-essentials": "^8.2.6", "@storybook/addon-interactions": "^8.2.5", "@storybook/addon-links": "^7.6.17", "@storybook/blocks": "^8.0.4", "@storybook/nextjs": "^8.0.8", "@types/glob": "^8.1.0", - "cypress": "^13.13.2", "glob": "^10.4.1", "prettier": "3.2.5", "sequelize-auto": "^0.8.8", diff --git a/app/playwright.config.ts b/app/playwright.config.ts index 9ea1a49ef..d891422d4 100644 --- a/app/playwright.config.ts +++ b/app/playwright.config.ts @@ -32,14 +32,26 @@ export default defineConfig({ /* Configure projects for major browsers */ projects: [ + { + name: "setup", + testMatch: /.*\.setup\.ts/, + }, { name: "chromium", - use: { ...devices["Desktop Chrome"] }, + use: { + ...devices["Desktop Chrome"], + storageState: "playwright/.auth/user.json", + }, + dependencies: ["setup"], }, { name: "firefox", - use: { ...devices["Desktop Firefox"] }, + use: { + ...devices["Desktop Firefox"], + storageState: "playwright/.auth/user.json", + }, + dependencies: ["setup"], }, // { diff --git a/app/scripts/catalogue-sync.ts b/app/scripts/catalogue-sync.ts index b7f619553..952028123 100644 --- a/app/scripts/catalogue-sync.ts +++ b/app/scripts/catalogue-sync.ts @@ -1,5 +1,5 @@ import { db } from "@/models"; -import { DataSourceCreationAttributes } from "@/models/DataSource"; +import { DataSourceI18nCreationAttributes as DataSourceCreationAttributes } from "@/models/DataSourceI18n"; import env from "@next/env"; import { randomUUID } from "node:crypto"; import { logger } from "@/services/logger"; @@ -7,10 +7,10 @@ import { logger } from "@/services/logger"; interface Source { datasource_id: string; datasource_name: string; - dataset_name: string; + dataset_name: Record; source_type: string; dataset_url: string; - dataset_description: string; + dataset_description: Record; access_type: string; geographical_location: string; start_year: number; @@ -24,8 +24,8 @@ interface Source { notes: string; units: string; methodology_url: string; - methodology_description: string; - transformation_description: string; + methodology_description: Record; + transformation_description: Record; publisher_id: string; retrieval_method: string; api_endpoint: string; @@ -68,10 +68,8 @@ async function syncDataCatalogue() { }); } const previousUpdate = catalogue.lastUpdate?.getTime() || 0; - - const lastUpdateResponse = await fetch( - `${GLOBAL_API_URL}/api/v0/catalogue/last-update`, - ); + const catalogUrl = `${GLOBAL_API_URL}/api/v0/catalogue`; + const lastUpdateResponse = await fetch(`${catalogUrl}/last-update`); const lastUpdateData = await lastUpdateResponse.json(); if (!lastUpdateData?.last_update) { throw new Error( @@ -90,8 +88,7 @@ async function syncDataCatalogue() { await db.sequelize?.close(); return; } - - const dataSourcesResponse = await fetch(`${GLOBAL_API_URL}/api/v0/catalogue`); + const dataSourcesResponse = await fetch(`${catalogUrl}/i18n`); const dataSourcesData = await dataSourcesResponse.json(); if (!dataSourcesData?.datasources) { throw new Error( diff --git a/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/DataSourceEmissionsFactor.csv b/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/DataSourceEmissionsFactor.csv index 9920e3327..fb4e850a9 100644 --- a/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/DataSourceEmissionsFactor.csv +++ b/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/DataSourceEmissionsFactor.csv @@ -8547,1592 +8547,3 @@ datasource_id,emissions_factor_id 6a508faa-80a8-3246-9941-90d8cc8dec85,39315327-eeb6-4d88-83ef-1da26d121ece 6a508faa-80a8-3246-9941-90d8cc8dec85,818aa262-64d7-4613-9f35-07edc2093142 6a508faa-80a8-3246-9941-90d8cc8dec85,96dfe7a7-dc79-42f8-a8d1-77494c78c7ab -6a508faa-80a8-3246-9941-90d8cc8dec85,49bcf50c-de77-4026-8c6d-24e8ea2e928d -6a508faa-80a8-3246-9941-90d8cc8dec85,8b076bfc-4fb5-44fa-b888-c432ff6f229f -6a508faa-80a8-3246-9941-90d8cc8dec85,8d40d079-4942-41e3-916f-357aaeefbdf9 -6a508faa-80a8-3246-9941-90d8cc8dec85,2e1514a5-10da-4eff-bc57-edf6af5ba423 -6a508faa-80a8-3246-9941-90d8cc8dec85,d7f6e479-3cb3-4f3f-b15e-f01203efc7f9 -6a508faa-80a8-3246-9941-90d8cc8dec85,6ab5f5c0-da48-4ef5-9cde-6172a57b9fa3 -6a508faa-80a8-3246-9941-90d8cc8dec85,a1ac0762-377a-45e1-8f97-0508f2e0d54e -6a508faa-80a8-3246-9941-90d8cc8dec85,8308e96b-bed1-4759-a182-91e3d36e3fde -6a508faa-80a8-3246-9941-90d8cc8dec85,9ec49c9b-afd8-49b5-b45c-56f86b60bdae -6a508faa-80a8-3246-9941-90d8cc8dec85,1383c2c9-3bb2-41d4-bbdf-a62123ed6cdd -6a508faa-80a8-3246-9941-90d8cc8dec85,ada80173-14c1-4b5a-84ee-329faff99a7b -6a508faa-80a8-3246-9941-90d8cc8dec85,45a1ee1d-c1a2-4f58-b16b-b4abae90fb32 -6a508faa-80a8-3246-9941-90d8cc8dec85,c4c6479f-66f0-4cfd-a664-7d8b600b0a5f -6a508faa-80a8-3246-9941-90d8cc8dec85,ae626087-6781-4530-9761-a6ed987e9702 -6a508faa-80a8-3246-9941-90d8cc8dec85,e4d7866f-dc5c-425e-81e3-af4d4ae46bc5 -6a508faa-80a8-3246-9941-90d8cc8dec85,fbc60183-ba93-4c7c-9152-2f523133831d -6a508faa-80a8-3246-9941-90d8cc8dec85,5a042605-01fd-4f97-8f97-e259349dcba4 -6a508faa-80a8-3246-9941-90d8cc8dec85,fc199776-191a-4771-93ef-1b1dfe55fb33 -6a508faa-80a8-3246-9941-90d8cc8dec85,373dc978-b604-4b49-8fec-d92ab7a9c611 -6a508faa-80a8-3246-9941-90d8cc8dec85,6380ae02-3b81-4fe0-b352-91b6211c80f7 -6a508faa-80a8-3246-9941-90d8cc8dec85,557ebbd7-6d17-4146-8270-230da39db0f7 -6a508faa-80a8-3246-9941-90d8cc8dec85,9906ecd7-89ec-4724-9322-8b236d6c0e4d -6a508faa-80a8-3246-9941-90d8cc8dec85,e1fd3f96-b283-46c3-91e1-9cabab7a138e -6a508faa-80a8-3246-9941-90d8cc8dec85,173832ef-3356-4d1b-af82-3681ec3138fa -6a508faa-80a8-3246-9941-90d8cc8dec85,347f50a0-64a3-4527-9e47-39ca1c972718 -6a508faa-80a8-3246-9941-90d8cc8dec85,c1732e55-8e33-419a-9455-0ec85adf2e00 -6a508faa-80a8-3246-9941-90d8cc8dec85,9901bb12-da6a-455e-8d8a-a8f491142287 -6a508faa-80a8-3246-9941-90d8cc8dec85,4f12f04c-1896-4af6-aad4-8df5e7243004 -6a508faa-80a8-3246-9941-90d8cc8dec85,89a6a8b5-5ffd-43bc-8b96-853a690c05f4 -6a508faa-80a8-3246-9941-90d8cc8dec85,083a9869-3ded-42af-8720-83bc6979ffc3 -6a508faa-80a8-3246-9941-90d8cc8dec85,0e53cfd0-422d-425c-b346-77c1bcee14fd -6a508faa-80a8-3246-9941-90d8cc8dec85,886577d3-3787-48d6-86d7-eab51a41c274 -6a508faa-80a8-3246-9941-90d8cc8dec85,cf0d2a83-4065-4b9e-a5ce-55c60703cbc3 -6a508faa-80a8-3246-9941-90d8cc8dec85,628346e1-effd-4c52-995b-00d683789b76 -6a508faa-80a8-3246-9941-90d8cc8dec85,b66bd06c-5f21-4d5b-8ae3-9001d90004cb -6a508faa-80a8-3246-9941-90d8cc8dec85,93342d14-313b-4a92-8e40-9d0fee78f120 -6a508faa-80a8-3246-9941-90d8cc8dec85,ab965fcd-f3fa-44fd-b89f-04dc78519e1b -6a508faa-80a8-3246-9941-90d8cc8dec85,74da2cba-f108-46d2-af01-47270d54133c -6a508faa-80a8-3246-9941-90d8cc8dec85,c63953cd-7942-451b-9bc1-0be93439c6e2 -6a508faa-80a8-3246-9941-90d8cc8dec85,ddafc1a7-c824-4efa-a998-7384d65f4674 -6a508faa-80a8-3246-9941-90d8cc8dec85,5c140468-c128-4f0f-8dad-ed4d3a6b96ee -6a508faa-80a8-3246-9941-90d8cc8dec85,ac409c3f-7773-4667-9f65-c02b323a3e3e -6a508faa-80a8-3246-9941-90d8cc8dec85,9d9ff719-472c-43bc-95cd-a949981b824c -6a508faa-80a8-3246-9941-90d8cc8dec85,40f5ff5a-244f-48a4-a08c-eb8a4c6c6240 -6a508faa-80a8-3246-9941-90d8cc8dec85,a47e012f-e3d4-44de-9585-f3e1a673c7e1 -6a508faa-80a8-3246-9941-90d8cc8dec85,f9610b0e-2ab8-4e7f-87fa-2a0496107b78 -6a508faa-80a8-3246-9941-90d8cc8dec85,94e543fb-9c84-4150-b082-70c5b1e7af2a -6a508faa-80a8-3246-9941-90d8cc8dec85,d4768838-5438-497d-81bf-048a4c911b7e -6a508faa-80a8-3246-9941-90d8cc8dec85,a90a0574-ad7a-4221-8f59-b612cb5ee9f1 -6a508faa-80a8-3246-9941-90d8cc8dec85,14a2917c-cf3e-455c-bd60-3f2ea488a513 -6a508faa-80a8-3246-9941-90d8cc8dec85,64d114ec-1a3a-4923-b6f3-e01adac06840 -6a508faa-80a8-3246-9941-90d8cc8dec85,6eb6b11c-d64a-4966-84d7-53fc8fe8cebb -6a508faa-80a8-3246-9941-90d8cc8dec85,5a43b232-188c-4801-b925-45a06f1adb0c -6a508faa-80a8-3246-9941-90d8cc8dec85,dcb939d1-d866-4fc1-ac78-bb4c0af6088e -6a508faa-80a8-3246-9941-90d8cc8dec85,31cbe76a-3df0-4708-b046-e38501a2420a -6a508faa-80a8-3246-9941-90d8cc8dec85,47a337d2-a11a-4af0-99e0-fd9ccb009622 -6a508faa-80a8-3246-9941-90d8cc8dec85,7de42190-522c-4ff3-b86b-da833bf0e516 -6a508faa-80a8-3246-9941-90d8cc8dec85,0f0ed243-9377-41b0-94b1-ce329e149f92 -6a508faa-80a8-3246-9941-90d8cc8dec85,d2d8f40b-6e20-4868-8fed-a4c27da26395 -6a508faa-80a8-3246-9941-90d8cc8dec85,3b68461a-cb3e-4b75-8b8e-51e4662abde6 -6a508faa-80a8-3246-9941-90d8cc8dec85,e7477390-c222-4d63-9ac5-e39c3c4fb6eb -6a508faa-80a8-3246-9941-90d8cc8dec85,8c7e5cd3-52d1-47f2-b4ae-62488a167f5e -6a508faa-80a8-3246-9941-90d8cc8dec85,536f5afd-de2f-482b-8f72-0f948f5488ef -6a508faa-80a8-3246-9941-90d8cc8dec85,2e7f8aa1-a0ce-4dc8-a368-8500aed1e61b -6a508faa-80a8-3246-9941-90d8cc8dec85,817b8991-b2d3-48bf-a73d-4c0a74bdc97a -6a508faa-80a8-3246-9941-90d8cc8dec85,e147590c-c711-4906-90a6-c39cdb19b72c -6a508faa-80a8-3246-9941-90d8cc8dec85,9fa92241-d13e-4bb5-b9b3-94267673db29 -6a508faa-80a8-3246-9941-90d8cc8dec85,eb93723b-04e0-42f2-b88c-c3b69077aeec -6a508faa-80a8-3246-9941-90d8cc8dec85,b3eaf65e-aba4-49b8-aacb-f294578134d3 -6a508faa-80a8-3246-9941-90d8cc8dec85,6c0450c2-6091-4b42-a6af-bd1cb824bd33 -6a508faa-80a8-3246-9941-90d8cc8dec85,c5e88fc9-e4f7-4fb6-ab0b-e919b4426385 -6a508faa-80a8-3246-9941-90d8cc8dec85,666a5a7e-20c7-43b8-b19e-b6fa18c1c144 -6a508faa-80a8-3246-9941-90d8cc8dec85,2c207b8f-1da8-4c6f-afcb-c0f634070738 -6a508faa-80a8-3246-9941-90d8cc8dec85,1338ce96-ac2b-4350-b8b4-2573fc566860 -6a508faa-80a8-3246-9941-90d8cc8dec85,eb85958d-d76e-4bd0-871f-1966ce878c15 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b5e5b97-0b20-4ecd-8fde-11bc7d415257 -6a508faa-80a8-3246-9941-90d8cc8dec85,35e8be92-1909-4265-8530-19908c98db73 -6a508faa-80a8-3246-9941-90d8cc8dec85,9bb887ed-45c4-42c4-a735-d994441f7bc4 -6a508faa-80a8-3246-9941-90d8cc8dec85,742f61f1-148c-4a41-945a-ee4ac9d25765 -6a508faa-80a8-3246-9941-90d8cc8dec85,e4d44050-5dd8-4551-990f-2b18f5000f0b -6a508faa-80a8-3246-9941-90d8cc8dec85,0d0ba069-c30b-4fa4-832f-f725f4b10ad6 -6a508faa-80a8-3246-9941-90d8cc8dec85,1a6f9e81-d056-41a4-b8af-2e32c8c767f8 -6a508faa-80a8-3246-9941-90d8cc8dec85,c4ba8081-356d-4090-9990-b6d1a5a72681 -6a508faa-80a8-3246-9941-90d8cc8dec85,c384ea51-d3eb-4cfc-8343-1a54a80df7ec -6a508faa-80a8-3246-9941-90d8cc8dec85,1a2bf6ce-3f19-45be-9c4e-c4ab7138f066 -6a508faa-80a8-3246-9941-90d8cc8dec85,584db0cf-af85-4a82-b7f8-30fa21813478 -6a508faa-80a8-3246-9941-90d8cc8dec85,9fe24885-fddf-4234-8d72-f0817b22d5fb -6a508faa-80a8-3246-9941-90d8cc8dec85,3182d852-6d01-492d-b11f-56d56abdbc5a -6a508faa-80a8-3246-9941-90d8cc8dec85,617e507a-3e45-4a57-89f2-1dff9f20ceac -6a508faa-80a8-3246-9941-90d8cc8dec85,a5e3367e-c3f5-45a0-884a-37d20f1204e3 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b5b4591-ff6f-420c-a325-948a295730ed -6a508faa-80a8-3246-9941-90d8cc8dec85,1a910f92-d7ab-41bb-9825-7cc9b5b0d511 -6a508faa-80a8-3246-9941-90d8cc8dec85,73360e6e-963b-4ff4-8cef-566b9f57076d -6a508faa-80a8-3246-9941-90d8cc8dec85,8df69d40-e83d-46da-9818-1dda1bcbb340 -6a508faa-80a8-3246-9941-90d8cc8dec85,eb3dd6ca-336e-477a-a710-d1082f7cdeb7 -6a508faa-80a8-3246-9941-90d8cc8dec85,3bdcf15c-3a0d-47b3-b81e-e7059c435c14 -6a508faa-80a8-3246-9941-90d8cc8dec85,5b24fe49-6ece-4b99-be76-d4081f44fb3d -6a508faa-80a8-3246-9941-90d8cc8dec85,14372dc8-4c63-4731-82dd-6e65950b8521 -6a508faa-80a8-3246-9941-90d8cc8dec85,d81e6673-b971-4537-9841-528150a7f21b -6a508faa-80a8-3246-9941-90d8cc8dec85,90d3f4a9-eabd-4563-afea-7c45b01ff28e -6a508faa-80a8-3246-9941-90d8cc8dec85,4e954d01-9f5d-4165-864a-a00b3e41a2cf -6a508faa-80a8-3246-9941-90d8cc8dec85,99baf18e-d251-44cc-89a7-2889ae681a01 -6a508faa-80a8-3246-9941-90d8cc8dec85,5d733d91-cfa7-4b67-af40-d7e8d77aaed1 -6a508faa-80a8-3246-9941-90d8cc8dec85,30ad4512-ad75-45fb-8e30-fab528f9917e -6a508faa-80a8-3246-9941-90d8cc8dec85,a24ac674-169f-41d9-97b6-f733c6dedb05 -6a508faa-80a8-3246-9941-90d8cc8dec85,8fd3b549-d3b3-4680-b658-eb5a0fa01dd9 -6a508faa-80a8-3246-9941-90d8cc8dec85,a7c58cc5-a666-4a7c-bdec-67cac3823dac -6a508faa-80a8-3246-9941-90d8cc8dec85,14616fa4-fdbd-4d19-87b5-e99fe0f6df55 -6a508faa-80a8-3246-9941-90d8cc8dec85,58ba9a8a-f9b3-4447-9289-d7b0c2735107 -6a508faa-80a8-3246-9941-90d8cc8dec85,5b91ad65-74af-4f85-bdf3-69e70da45999 -6a508faa-80a8-3246-9941-90d8cc8dec85,aab892ee-011e-4264-bb71-585ec2dbb6e6 -6a508faa-80a8-3246-9941-90d8cc8dec85,2d12a89b-1418-4ea7-a0ac-42c021047fce -6a508faa-80a8-3246-9941-90d8cc8dec85,2112d8e2-5157-439b-8fcb-51a9f27a7c99 -6a508faa-80a8-3246-9941-90d8cc8dec85,d6dbac2e-0dd0-49c0-a8e2-227ceadb854a -6a508faa-80a8-3246-9941-90d8cc8dec85,d9c1fc29-17d8-4bcb-a359-06288d832bf3 -6a508faa-80a8-3246-9941-90d8cc8dec85,95065133-e709-40ab-83ee-6bbac064740a -6a508faa-80a8-3246-9941-90d8cc8dec85,4c4e8707-e2c2-4cab-861c-fe31bdebb79c -6a508faa-80a8-3246-9941-90d8cc8dec85,02b2e1d5-5450-4fe9-9020-3ecb73e279bf -6a508faa-80a8-3246-9941-90d8cc8dec85,67b0fb37-bb5e-4c2f-8f51-7892140adb75 -6a508faa-80a8-3246-9941-90d8cc8dec85,68ba8fd9-6e97-4335-a557-94c617b3019a -6a508faa-80a8-3246-9941-90d8cc8dec85,f11b75f2-4613-41d0-abd4-3b9d61275bbf -6a508faa-80a8-3246-9941-90d8cc8dec85,f09ec6c7-8c19-4252-9de2-41cd70062da9 -6a508faa-80a8-3246-9941-90d8cc8dec85,8f62e9ef-2a3f-46d5-81d6-344f7f23038b -6a508faa-80a8-3246-9941-90d8cc8dec85,d0bfde38-f089-434d-a3e0-8b41edd1095c -6a508faa-80a8-3246-9941-90d8cc8dec85,439c75c7-3963-487f-896b-64122c496677 -6a508faa-80a8-3246-9941-90d8cc8dec85,4e094b62-8115-4296-904f-90a01075e43c -6a508faa-80a8-3246-9941-90d8cc8dec85,3d01ee86-525d-4b5b-b913-98373733ad75 -6a508faa-80a8-3246-9941-90d8cc8dec85,f89b8eb6-d3f3-46dc-abc7-9864c03818bc -6a508faa-80a8-3246-9941-90d8cc8dec85,df8da08c-1420-4065-869d-53847e643c22 -6a508faa-80a8-3246-9941-90d8cc8dec85,1eab0d9a-d0c6-491b-9883-0186c3b28f60 -6a508faa-80a8-3246-9941-90d8cc8dec85,42cd3a7e-8b95-42e3-a876-5ca1782c5a06 -6a508faa-80a8-3246-9941-90d8cc8dec85,d2b4d948-9d93-4df3-b706-231c62431a57 -6a508faa-80a8-3246-9941-90d8cc8dec85,4540aecd-69ea-492f-a242-4d2f38d60f59 -6a508faa-80a8-3246-9941-90d8cc8dec85,ca386b5d-0d93-4241-a217-eeb0cb80b5d2 -6a508faa-80a8-3246-9941-90d8cc8dec85,67846e07-b957-4298-bd4d-a1b570076b56 -6a508faa-80a8-3246-9941-90d8cc8dec85,8fbaa0d7-74b5-469f-ae51-8dabe782f584 -6a508faa-80a8-3246-9941-90d8cc8dec85,e9c97368-e745-4754-8fb5-6ea2190e5118 -6a508faa-80a8-3246-9941-90d8cc8dec85,e7d3dbb4-039c-40b4-9176-5a8a5652a564 -6a508faa-80a8-3246-9941-90d8cc8dec85,6746f99e-a374-4885-85e9-f5f4ee18ea94 -6a508faa-80a8-3246-9941-90d8cc8dec85,b461a012-cda4-4a39-afbf-abac09807747 -6a508faa-80a8-3246-9941-90d8cc8dec85,c892c8e9-8ad4-43b8-b128-33b8bea9f81d -6a508faa-80a8-3246-9941-90d8cc8dec85,574ea670-7ccf-4297-9e14-98ff3bf86461 -6a508faa-80a8-3246-9941-90d8cc8dec85,9e3ba001-0c31-417b-94c0-d8b304e0e03c -6a508faa-80a8-3246-9941-90d8cc8dec85,6b28e138-5d66-4659-9ee1-9d2035e045c2 -6a508faa-80a8-3246-9941-90d8cc8dec85,fce9d64a-f996-49fa-84df-61129e1f5256 -6a508faa-80a8-3246-9941-90d8cc8dec85,5c0b8980-8e61-4eec-b82e-7c17c2556b93 -6a508faa-80a8-3246-9941-90d8cc8dec85,9aa63ba9-d77b-4ab1-8cb3-3dd057545f9e -6a508faa-80a8-3246-9941-90d8cc8dec85,87e7c4a5-17ba-451e-968d-f1215056462d -6a508faa-80a8-3246-9941-90d8cc8dec85,6a1f0fe1-4964-4880-8fe6-133d6e086767 -6a508faa-80a8-3246-9941-90d8cc8dec85,0ade802a-c35f-49e0-9b35-d3d6eb6e27f6 -6a508faa-80a8-3246-9941-90d8cc8dec85,6733426b-96ca-4c39-84d9-4a790b417a41 -6a508faa-80a8-3246-9941-90d8cc8dec85,f96e245c-d290-4d07-b4c3-b0bdd9b228b6 -6a508faa-80a8-3246-9941-90d8cc8dec85,e6aa724a-ef72-4f2a-87d8-8646dbefc92d -6a508faa-80a8-3246-9941-90d8cc8dec85,b0a8a9e0-bbfe-400a-b48b-72131c88fb12 -6a508faa-80a8-3246-9941-90d8cc8dec85,98117265-9652-4c51-94db-3f0c0647c753 -6a508faa-80a8-3246-9941-90d8cc8dec85,f57c631c-285a-4a23-a124-40515cb96508 -6a508faa-80a8-3246-9941-90d8cc8dec85,7d7d6da2-fff2-4159-8fc5-b669742f70c4 -6a508faa-80a8-3246-9941-90d8cc8dec85,da6009eb-ba99-49dc-bf7d-a26f1baf2b33 -6a508faa-80a8-3246-9941-90d8cc8dec85,eb583b63-f232-4ab8-b093-c42c3680f790 -6a508faa-80a8-3246-9941-90d8cc8dec85,3469e012-d0ec-4c2f-8148-bdf83e2ce74b -6a508faa-80a8-3246-9941-90d8cc8dec85,ef79c21b-a8d7-4ace-917f-83790eab78b8 -6a508faa-80a8-3246-9941-90d8cc8dec85,b900ec43-6433-491c-9e57-63519e58d72a -6a508faa-80a8-3246-9941-90d8cc8dec85,e631854b-741f-4c7e-ac6e-c5e1c53a75b4 -6a508faa-80a8-3246-9941-90d8cc8dec85,9bb41af7-b8cc-42da-a71d-37144a70ab65 -6a508faa-80a8-3246-9941-90d8cc8dec85,e4433651-e261-4731-a231-731b6ae0b6fd -6a508faa-80a8-3246-9941-90d8cc8dec85,8cc6350a-3c44-4da8-b653-196a3926e9f9 -6a508faa-80a8-3246-9941-90d8cc8dec85,6f490500-4153-4a99-ae8d-ceb894351344 -6a508faa-80a8-3246-9941-90d8cc8dec85,a40337a8-ff47-456b-b2d6-c047ee42bd2a -6a508faa-80a8-3246-9941-90d8cc8dec85,c0f04df5-9398-45ee-8140-91118855833e -6a508faa-80a8-3246-9941-90d8cc8dec85,ecbee56d-6a73-4f3c-b581-08c6304ef292 -6a508faa-80a8-3246-9941-90d8cc8dec85,feac84d0-d156-46e0-85de-f927853b4e99 -6a508faa-80a8-3246-9941-90d8cc8dec85,197aa1cc-52ec-4ddb-afb2-95f4b03b5ef3 -6a508faa-80a8-3246-9941-90d8cc8dec85,15805655-1daa-4f13-a442-3ac4da3f3559 -6a508faa-80a8-3246-9941-90d8cc8dec85,70ff050c-8ff3-4a99-a235-d484938ff86f -6a508faa-80a8-3246-9941-90d8cc8dec85,5292a28b-da71-487e-bbe5-4a29efc0601b -6a508faa-80a8-3246-9941-90d8cc8dec85,3ec41686-bcbf-4b4c-8c96-f95dcd125633 -6a508faa-80a8-3246-9941-90d8cc8dec85,de4bee26-b300-4b3a-98ee-2b6abcd40267 -6a508faa-80a8-3246-9941-90d8cc8dec85,16357c8d-bf5f-46a8-b6b0-0a978818f112 -6a508faa-80a8-3246-9941-90d8cc8dec85,4bd92787-d2d7-40a8-8292-0c013a5c988b -6a508faa-80a8-3246-9941-90d8cc8dec85,55984f59-1079-48b0-9565-b064518d7ea9 -6a508faa-80a8-3246-9941-90d8cc8dec85,8dc9df8c-7f77-46d5-903b-54a6038aedff -6a508faa-80a8-3246-9941-90d8cc8dec85,3f18094f-8f20-4ce5-a4a7-cb85e8669cff -6a508faa-80a8-3246-9941-90d8cc8dec85,83150093-5170-43dc-8891-6815855dadaf -6a508faa-80a8-3246-9941-90d8cc8dec85,7e4ea073-8d97-462e-a657-61b9a7ce6969 -6a508faa-80a8-3246-9941-90d8cc8dec85,8d526228-e3d7-480b-af55-9b1490c1908a -6a508faa-80a8-3246-9941-90d8cc8dec85,47a1174e-9463-4684-8046-43dfa7280fd3 -6a508faa-80a8-3246-9941-90d8cc8dec85,ef05a4be-1031-491e-ac9d-12a661b66643 -6a508faa-80a8-3246-9941-90d8cc8dec85,3020cb0e-bc9f-4f8f-8534-935925aff257 -6a508faa-80a8-3246-9941-90d8cc8dec85,29e7eb88-a3a7-4ce5-8bda-4462db5e3310 -6a508faa-80a8-3246-9941-90d8cc8dec85,bc68b1ad-ef83-4b1d-9892-1aae2857ecea -6a508faa-80a8-3246-9941-90d8cc8dec85,abe3c039-1e5d-4876-81d2-cd915275d2fd -6a508faa-80a8-3246-9941-90d8cc8dec85,0adb2f15-6fa7-49ea-94f8-92d4f222c8e1 -6a508faa-80a8-3246-9941-90d8cc8dec85,43b477c2-66e9-4817-ac2d-31319b67dc12 -6a508faa-80a8-3246-9941-90d8cc8dec85,a4450517-be15-4f59-9ee7-1874cbd11d41 -6a508faa-80a8-3246-9941-90d8cc8dec85,0850e77e-a810-4cec-a968-fa257a1f4fd5 -6a508faa-80a8-3246-9941-90d8cc8dec85,cd1a975b-3387-4381-bdaf-f0c39047bcee -6a508faa-80a8-3246-9941-90d8cc8dec85,459f26c1-c8ed-4a8e-9c1b-50b4cf8db87a -6a508faa-80a8-3246-9941-90d8cc8dec85,341da53d-e7c3-416a-9fa3-57f829d6a2fe -6a508faa-80a8-3246-9941-90d8cc8dec85,4492bc4d-4574-4741-b483-213603947502 -6a508faa-80a8-3246-9941-90d8cc8dec85,dce160b5-66bd-451a-8f6c-39fe0e96efb2 -6a508faa-80a8-3246-9941-90d8cc8dec85,1f386061-e799-4a0c-9d51-7dc8cfbc9f7e -6a508faa-80a8-3246-9941-90d8cc8dec85,255ae739-4e83-40b2-acd6-6a82714be843 -6a508faa-80a8-3246-9941-90d8cc8dec85,85cd2edc-8319-4da5-bfa0-38ad134b94b5 -6a508faa-80a8-3246-9941-90d8cc8dec85,930a52e9-f6b9-4235-b819-039015c580bf -6a508faa-80a8-3246-9941-90d8cc8dec85,bb7a3863-c632-4b82-896f-7e9d7d38602e -6a508faa-80a8-3246-9941-90d8cc8dec85,27bfd2f3-e8eb-4076-bb37-539d9384dcd7 -6a508faa-80a8-3246-9941-90d8cc8dec85,95008e78-6c17-4e3d-8676-fb752718bec7 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b689dac-f679-4a68-8ac7-dd092a9d3d85 -6a508faa-80a8-3246-9941-90d8cc8dec85,34d50e73-5e9f-4771-ba33-55f731fca90f -6a508faa-80a8-3246-9941-90d8cc8dec85,8681e421-6806-4e17-9c68-0e49fd1f2117 -6a508faa-80a8-3246-9941-90d8cc8dec85,cb084bb8-40f3-447a-b421-6ac7cab0b21e -6a508faa-80a8-3246-9941-90d8cc8dec85,099ca87d-3204-477d-b485-e576b5bffeee -6a508faa-80a8-3246-9941-90d8cc8dec85,735a08d2-0aac-4bdc-80cd-ccf31c124459 -6a508faa-80a8-3246-9941-90d8cc8dec85,595ecdf8-e1e5-470d-84d8-c465c175d083 -6a508faa-80a8-3246-9941-90d8cc8dec85,003cb109-5e86-4085-8906-49828ab700c1 -6a508faa-80a8-3246-9941-90d8cc8dec85,7f0a82b7-d359-444a-a05b-867fd4025802 -6a508faa-80a8-3246-9941-90d8cc8dec85,18c9d244-b5d7-4054-bf88-948aee030dfc -6a508faa-80a8-3246-9941-90d8cc8dec85,2094e184-e272-4af6-9351-2145dde2c72f -6a508faa-80a8-3246-9941-90d8cc8dec85,6401f2ed-d06c-488b-b99e-b9a76b645039 -6a508faa-80a8-3246-9941-90d8cc8dec85,919497bf-fd74-4bcc-a233-3a81091b0398 -6a508faa-80a8-3246-9941-90d8cc8dec85,04abc053-b9c2-474d-a045-963d5bbafb9f -6a508faa-80a8-3246-9941-90d8cc8dec85,ec15e7e6-f66d-4734-9093-cf6ccff766f0 -6a508faa-80a8-3246-9941-90d8cc8dec85,1480ea51-f27a-40b0-bd15-9e81f0ff082d -6a508faa-80a8-3246-9941-90d8cc8dec85,93418b7a-2ee0-418c-bc4b-ccba24431ac8 -6a508faa-80a8-3246-9941-90d8cc8dec85,f62b99bc-94e2-4a8b-b53e-ff540e4002f1 -6a508faa-80a8-3246-9941-90d8cc8dec85,fdd0e3ff-6017-45a4-9f81-46db0bd2542e -6a508faa-80a8-3246-9941-90d8cc8dec85,5bf912da-470c-4c18-bc67-147501d8b0fd -6a508faa-80a8-3246-9941-90d8cc8dec85,2faed04a-3138-4fc7-a89f-dd1612014997 -6a508faa-80a8-3246-9941-90d8cc8dec85,0f9956ca-c513-4f55-b703-90621be41c63 -6a508faa-80a8-3246-9941-90d8cc8dec85,ce5b5dc0-3eb5-48fd-afde-ae6ae9c0acc2 -6a508faa-80a8-3246-9941-90d8cc8dec85,0eb44a4c-5889-44ee-8721-0221eb8fbfb3 -6a508faa-80a8-3246-9941-90d8cc8dec85,58713a01-f7af-4564-94da-6496cada7783 -6a508faa-80a8-3246-9941-90d8cc8dec85,a6be7415-4720-490b-92c5-4e48f839f518 -6a508faa-80a8-3246-9941-90d8cc8dec85,8275a541-c370-4c60-9e68-f9b3e9cf3e07 -6a508faa-80a8-3246-9941-90d8cc8dec85,f91b54f6-2dc4-408c-a1c4-b3761022239d -6a508faa-80a8-3246-9941-90d8cc8dec85,66364173-6727-4c03-ae62-cf56e3cbf63a -6a508faa-80a8-3246-9941-90d8cc8dec85,a7c6eb01-4072-463f-bcb8-60fa4cacd128 -6a508faa-80a8-3246-9941-90d8cc8dec85,810f7951-d318-40b5-9e5f-dd4e3e6f2e36 -6a508faa-80a8-3246-9941-90d8cc8dec85,409ffea1-2684-4e3f-b6fc-c4b7726aab2c -6a508faa-80a8-3246-9941-90d8cc8dec85,bdffc4b8-64d1-483a-a546-a3521a141dbf -6a508faa-80a8-3246-9941-90d8cc8dec85,f290c75b-e3e2-4e3a-b6b2-24925afc534f -6a508faa-80a8-3246-9941-90d8cc8dec85,ef5f1497-a169-4f48-bfea-ba3c23a2ffab -6a508faa-80a8-3246-9941-90d8cc8dec85,c3e580ed-9640-4c81-aae1-9a0c01fd8a56 -6a508faa-80a8-3246-9941-90d8cc8dec85,e79b3a21-e130-41aa-8527-b96410fcbc77 -6a508faa-80a8-3246-9941-90d8cc8dec85,4099aafb-fe83-40bd-8cc4-08fa002fc51e -6a508faa-80a8-3246-9941-90d8cc8dec85,0dd5819f-c8d5-4dc7-a050-3bf6674f35a7 -6a508faa-80a8-3246-9941-90d8cc8dec85,9e82a0be-1b04-4815-b8f3-8dea0f72e1b7 -6a508faa-80a8-3246-9941-90d8cc8dec85,b1356478-3d7b-49cd-9993-52a40be2427d -6a508faa-80a8-3246-9941-90d8cc8dec85,3a5e4205-22a8-4498-8ed3-f543478c9de8 -6a508faa-80a8-3246-9941-90d8cc8dec85,4cc8db7a-6467-4921-ba47-915f5e1e7553 -6a508faa-80a8-3246-9941-90d8cc8dec85,1badab3b-0ff8-48ba-9738-3882e16452f2 -6a508faa-80a8-3246-9941-90d8cc8dec85,f47937de-6eec-49c4-a387-9bd81f0a0ef5 -6a508faa-80a8-3246-9941-90d8cc8dec85,bb6f98fa-2882-4a7d-ac97-4199160bf2a0 -6a508faa-80a8-3246-9941-90d8cc8dec85,1c79500c-e5b0-4ea1-a77c-c33e5d8c3e71 -6a508faa-80a8-3246-9941-90d8cc8dec85,e096778f-018f-4d63-b396-ac43b1202719 -6a508faa-80a8-3246-9941-90d8cc8dec85,1d5e9d66-e3f9-4dd0-9121-ecb2201cb747 -6a508faa-80a8-3246-9941-90d8cc8dec85,cd731689-3b80-4f3f-be57-1cf9135adf36 -6a508faa-80a8-3246-9941-90d8cc8dec85,109a0939-c3f2-41ea-bf3a-ad412530e6a0 -6a508faa-80a8-3246-9941-90d8cc8dec85,3a1d0340-0b48-489b-a29b-1673bd401cfb -6a508faa-80a8-3246-9941-90d8cc8dec85,96f32ce2-aa9d-4dd4-b377-1224249606bc -6a508faa-80a8-3246-9941-90d8cc8dec85,7dfe4347-2d7b-46cf-af03-3be449909654 -6a508faa-80a8-3246-9941-90d8cc8dec85,645163cd-0581-448a-b472-cf244d4a0df2 -6a508faa-80a8-3246-9941-90d8cc8dec85,cb447b2d-37e7-4c36-b6de-8a009df76a35 -6a508faa-80a8-3246-9941-90d8cc8dec85,cecf25d5-fd88-494d-9584-1ce2274dcecb -6a508faa-80a8-3246-9941-90d8cc8dec85,3908ba4a-e6ae-4d8f-9042-0e33d7ff5f4e -6a508faa-80a8-3246-9941-90d8cc8dec85,be4933a3-1888-4dad-90be-81670da10ad7 -6a508faa-80a8-3246-9941-90d8cc8dec85,b04bd6a7-ac60-47f0-89d6-d2fbd7b8977c -6a508faa-80a8-3246-9941-90d8cc8dec85,0a4bd0d0-aa44-47c4-816a-dcc5f592aa57 -6a508faa-80a8-3246-9941-90d8cc8dec85,f3770837-a343-4650-ac6e-7a803cac7a91 -6a508faa-80a8-3246-9941-90d8cc8dec85,aecd9ead-8436-488c-a5d4-c5116f3fca2d -6a508faa-80a8-3246-9941-90d8cc8dec85,2dc92fd7-8507-4ecb-90b9-0c4da994b080 -6a508faa-80a8-3246-9941-90d8cc8dec85,3bb34354-5d63-40e7-8718-52167aecedd1 -6a508faa-80a8-3246-9941-90d8cc8dec85,f33349d3-341f-4a31-b1ec-fa2a6912ae76 -6a508faa-80a8-3246-9941-90d8cc8dec85,0a00a02c-d6a3-486b-9ff8-f2e178656599 -6a508faa-80a8-3246-9941-90d8cc8dec85,2c78de45-9010-4808-bb61-79ce33aac558 -6a508faa-80a8-3246-9941-90d8cc8dec85,aef22350-ec99-47f0-ada9-97b283fb3d37 -6a508faa-80a8-3246-9941-90d8cc8dec85,61965089-8ebe-49af-8ae8-4b01d346bb21 -6a508faa-80a8-3246-9941-90d8cc8dec85,7bb4f501-fa6e-4a92-99eb-22ed009e6558 -6a508faa-80a8-3246-9941-90d8cc8dec85,2180782f-94dc-4446-8a13-d7cfda2b3616 -6a508faa-80a8-3246-9941-90d8cc8dec85,edf3321f-6038-47b4-a64d-4bca1576544c -6a508faa-80a8-3246-9941-90d8cc8dec85,0952db65-cf97-46df-b298-c441e7f19439 -6a508faa-80a8-3246-9941-90d8cc8dec85,0dc789b7-1a05-46c7-8904-305b2c42c2db -6a508faa-80a8-3246-9941-90d8cc8dec85,7eba97fc-bd8e-47c2-82ad-96a5f7635e53 -6a508faa-80a8-3246-9941-90d8cc8dec85,3fc8cab1-03bf-4dca-80ea-e9b8b896040a -6a508faa-80a8-3246-9941-90d8cc8dec85,40a63475-508e-48bc-a0a6-7d1f280e81aa -6a508faa-80a8-3246-9941-90d8cc8dec85,79405eed-bdd5-4608-828a-90a6d52cbff3 -6a508faa-80a8-3246-9941-90d8cc8dec85,a8d0ea8e-a81e-4077-a60e-0f508f409813 -6a508faa-80a8-3246-9941-90d8cc8dec85,16a7cc63-7f62-4cc2-b118-7348539ae868 -6a508faa-80a8-3246-9941-90d8cc8dec85,b99dea68-56d6-4326-a3d7-b4908e99e850 -6a508faa-80a8-3246-9941-90d8cc8dec85,9a9e39f1-d24b-4448-8dd7-472da8fc6bd5 -6a508faa-80a8-3246-9941-90d8cc8dec85,86cfac5d-aa49-4874-8a48-d9087a02eb13 -6a508faa-80a8-3246-9941-90d8cc8dec85,2f174f29-27e5-4bdc-a9c0-50d42b917f3c -6a508faa-80a8-3246-9941-90d8cc8dec85,2119ae3d-7284-4452-9aa6-1d61d4f33695 -6a508faa-80a8-3246-9941-90d8cc8dec85,fb173361-6a00-4c19-ac67-f49a24fc7c40 -6a508faa-80a8-3246-9941-90d8cc8dec85,f07c0db3-364d-4566-be29-ea9c89e21366 -6a508faa-80a8-3246-9941-90d8cc8dec85,e1158564-aacd-4230-88d7-804ad844dab1 -6a508faa-80a8-3246-9941-90d8cc8dec85,5b7763a2-65ba-4bc6-8b92-6a2c2aacebd1 -6a508faa-80a8-3246-9941-90d8cc8dec85,377c1e57-4868-4dbd-9399-38bf2449d658 -6a508faa-80a8-3246-9941-90d8cc8dec85,b1fc7bc2-d383-49a7-91bb-eace42d0ab73 -6a508faa-80a8-3246-9941-90d8cc8dec85,f84768f1-533f-45a2-b1cc-68ab1318a877 -6a508faa-80a8-3246-9941-90d8cc8dec85,435639c3-fad9-45c9-a11e-bfae24c1304f -6a508faa-80a8-3246-9941-90d8cc8dec85,7f38f316-7f4e-4acf-9c8c-a3840e463454 -6a508faa-80a8-3246-9941-90d8cc8dec85,5f5a05e8-5c93-4e07-bf3c-3303bcb6beb1 -6a508faa-80a8-3246-9941-90d8cc8dec85,054ab3ac-0553-44ad-bad2-c1516e62bfc6 -6a508faa-80a8-3246-9941-90d8cc8dec85,ff370159-eff3-40fa-98e7-f986d9d14bd6 -6a508faa-80a8-3246-9941-90d8cc8dec85,c688eb7e-0123-4d9d-915f-3c7741ba9d9d -6a508faa-80a8-3246-9941-90d8cc8dec85,91437516-603d-411d-81e0-9445e8f794dd -6a508faa-80a8-3246-9941-90d8cc8dec85,faad68be-895e-460d-b97d-14436fda893c -6a508faa-80a8-3246-9941-90d8cc8dec85,3fee5f88-ee86-4c91-9780-b064867fbd7e -6a508faa-80a8-3246-9941-90d8cc8dec85,c76fcb28-a6fc-48b2-b5da-ff11e1549931 -6a508faa-80a8-3246-9941-90d8cc8dec85,452daa89-76ee-4d90-9b2a-14a55fdf648b -6a508faa-80a8-3246-9941-90d8cc8dec85,47679cf7-a8f5-4f3f-9b2f-8691c2856542 -6a508faa-80a8-3246-9941-90d8cc8dec85,eb3b03c2-4d42-4816-9ba3-bdd494d74b03 -6a508faa-80a8-3246-9941-90d8cc8dec85,5bd15d49-6d82-4885-8ba8-4408f96852a7 -6a508faa-80a8-3246-9941-90d8cc8dec85,64546ede-f98c-4baf-aa56-e599c15e9395 -6a508faa-80a8-3246-9941-90d8cc8dec85,e68a1a7b-ce1b-48c5-bd39-4c0db6fae077 -6a508faa-80a8-3246-9941-90d8cc8dec85,5bb1c782-945c-41eb-989d-88a05ebe4e0c -6a508faa-80a8-3246-9941-90d8cc8dec85,dea4e2bd-8b81-4a50-85fe-68e6f989bd24 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ac95b46-7e9d-4f94-b3bd-40b0cb1c7e4b -6a508faa-80a8-3246-9941-90d8cc8dec85,79996b55-754f-4b6b-b0bb-8bd541a1e93f -6a508faa-80a8-3246-9941-90d8cc8dec85,1c7fa73f-3fe3-4b37-b082-2d9b1374001c -6a508faa-80a8-3246-9941-90d8cc8dec85,7b34695f-69bf-49ba-8417-65742a9eaf7b -6a508faa-80a8-3246-9941-90d8cc8dec85,254dc41c-7c0c-4d92-b4aa-8283670bf78e -6a508faa-80a8-3246-9941-90d8cc8dec85,8fc00c96-b2f0-415d-a6a2-31d45cec4005 -6a508faa-80a8-3246-9941-90d8cc8dec85,781914bc-9c01-4be6-8ea8-767bddf2eb03 -6a508faa-80a8-3246-9941-90d8cc8dec85,36c2eb30-2745-47d3-a4d2-fd6458406191 -6a508faa-80a8-3246-9941-90d8cc8dec85,f03c02d4-70ed-4858-95af-bdb9a9859e2d -6a508faa-80a8-3246-9941-90d8cc8dec85,1091d66c-0da0-4084-9053-c72ef5518b72 -6a508faa-80a8-3246-9941-90d8cc8dec85,61566321-7de9-4351-9f00-d003f984315b -6a508faa-80a8-3246-9941-90d8cc8dec85,f7ff334a-8505-414e-b2c2-733d73d434e0 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b71555c-9027-413b-8a7e-65e45126773e -6a508faa-80a8-3246-9941-90d8cc8dec85,6fdf4417-bbda-4fbf-ab10-c170b603d6e3 -6a508faa-80a8-3246-9941-90d8cc8dec85,6177bb27-cecf-4fcc-b8fa-40dc23d7138c -6a508faa-80a8-3246-9941-90d8cc8dec85,350af37a-2e01-4aa5-9051-6222a873d1b3 -6a508faa-80a8-3246-9941-90d8cc8dec85,b58fa81a-2a44-4785-9fa0-6caf9f96d129 -6a508faa-80a8-3246-9941-90d8cc8dec85,6c1c59d8-9b03-4650-be1c-0468b29c7e32 -6a508faa-80a8-3246-9941-90d8cc8dec85,541bd230-05c7-4ea4-aa09-f1bcf16f031f -6a508faa-80a8-3246-9941-90d8cc8dec85,1b65e027-05fe-4b4a-a81c-b9eb54dde0cf -6a508faa-80a8-3246-9941-90d8cc8dec85,f0685b5c-4f00-4cad-908d-7fa5b64aaed0 -6a508faa-80a8-3246-9941-90d8cc8dec85,7faac318-1990-4c8f-a50a-b6cfd21d1f9f -6a508faa-80a8-3246-9941-90d8cc8dec85,c8195baa-ae6b-462e-ae91-db7eeed7ff5e -6a508faa-80a8-3246-9941-90d8cc8dec85,86bb48c8-0f98-4820-a53a-211fd4642048 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ebfc9bb-e1b5-4aaf-b62c-4bb65279bd53 -6a508faa-80a8-3246-9941-90d8cc8dec85,ab435034-c4b9-4397-864e-defec7b17335 -6a508faa-80a8-3246-9941-90d8cc8dec85,f4f0cd3c-495f-426c-b200-4c9cc65070d0 -6a508faa-80a8-3246-9941-90d8cc8dec85,74697289-e2ee-4e2f-b4ba-8683db649c79 -6a508faa-80a8-3246-9941-90d8cc8dec85,6c2479a7-dafd-4cc9-b54f-123936a55643 -6a508faa-80a8-3246-9941-90d8cc8dec85,71f08401-6e48-486d-b8e5-1057856cd1b4 -6a508faa-80a8-3246-9941-90d8cc8dec85,5c34ce3e-4a1b-4974-9117-c2bf84073f71 -6a508faa-80a8-3246-9941-90d8cc8dec85,262f80dd-2b70-4b24-8324-e01db67ed8f1 -6a508faa-80a8-3246-9941-90d8cc8dec85,ce06d320-a6d0-4b6c-9587-45c5fdbe9513 -6a508faa-80a8-3246-9941-90d8cc8dec85,f0138461-a1db-4bdd-a1ab-7266c374721f -6a508faa-80a8-3246-9941-90d8cc8dec85,f385891e-82b4-4a96-849c-e0be36a1a5c7 -6a508faa-80a8-3246-9941-90d8cc8dec85,c4f28d45-f488-4589-ba0a-79ae3edfc377 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b7ceed3-738f-419f-9258-e876d6886739 -6a508faa-80a8-3246-9941-90d8cc8dec85,d25f1f67-122a-4cf8-9a5d-ad835c892099 -6a508faa-80a8-3246-9941-90d8cc8dec85,16c8e285-5eaa-4b5d-bf24-e29895dc3ca8 -6a508faa-80a8-3246-9941-90d8cc8dec85,d912f072-6f8f-494b-a564-2f2fde17203e -6a508faa-80a8-3246-9941-90d8cc8dec85,9e05057a-58bd-44e0-9598-a60b17da1efa -6a508faa-80a8-3246-9941-90d8cc8dec85,197310fb-7388-4840-b70e-4aa4344fda94 -6a508faa-80a8-3246-9941-90d8cc8dec85,70fbc54e-e7cd-485a-840e-1534fe1982c9 -6a508faa-80a8-3246-9941-90d8cc8dec85,c091535e-a1c8-4b21-951d-0a674f7dd381 -6a508faa-80a8-3246-9941-90d8cc8dec85,d6f9484f-1ab9-40a7-9b84-55a89b7996c3 -6a508faa-80a8-3246-9941-90d8cc8dec85,7e9f569c-a598-481b-a34c-57ba2b9ac04e -6a508faa-80a8-3246-9941-90d8cc8dec85,4ce1c1b8-a711-4abb-9d43-63a856a2dec9 -6a508faa-80a8-3246-9941-90d8cc8dec85,aac73245-5cbe-45dc-9d48-57e9d67d253b -6a508faa-80a8-3246-9941-90d8cc8dec85,a098f2da-ec2a-448d-aadb-35512cb3136c -6a508faa-80a8-3246-9941-90d8cc8dec85,0d96d721-b61a-4280-82eb-186fd70ff647 -6a508faa-80a8-3246-9941-90d8cc8dec85,2228a353-d0dc-4752-91e4-e0007fdc9c84 -6a508faa-80a8-3246-9941-90d8cc8dec85,3eb2eb67-b44f-4008-899f-739b3dab923f -6a508faa-80a8-3246-9941-90d8cc8dec85,681a1a8c-b2a6-4e17-a168-812d374ef359 -6a508faa-80a8-3246-9941-90d8cc8dec85,86766a6a-726e-48aa-8125-70cb1056f124 -6a508faa-80a8-3246-9941-90d8cc8dec85,70a20860-580c-4728-90d5-d4efd8409dae -6a508faa-80a8-3246-9941-90d8cc8dec85,ac8e605c-df7e-4f68-9822-4e08058eac25 -6a508faa-80a8-3246-9941-90d8cc8dec85,0cfb6f94-b428-41e1-8106-3ff03c36b03d -6a508faa-80a8-3246-9941-90d8cc8dec85,9fdad459-98c0-43e0-a1a4-db1b79aa373a -6a508faa-80a8-3246-9941-90d8cc8dec85,5206db86-7aff-4239-ad8e-59ccf1b25d81 -6a508faa-80a8-3246-9941-90d8cc8dec85,b3b2c2f0-18b0-45f4-958e-dd3b9cee5e6d -6a508faa-80a8-3246-9941-90d8cc8dec85,dc9e2487-845a-4d7c-9671-f1de7d1b1f9c -6a508faa-80a8-3246-9941-90d8cc8dec85,e5dc16b9-bc20-485b-a06b-4a91fd0f213e -6a508faa-80a8-3246-9941-90d8cc8dec85,45f7d2ef-be30-4f71-994f-70ab724eb46b -6a508faa-80a8-3246-9941-90d8cc8dec85,ab7bd093-d4a3-4117-b60f-c2bc0eb37f69 -6a508faa-80a8-3246-9941-90d8cc8dec85,17ca72f5-71a8-44b1-8312-79a22d6a33bc -6a508faa-80a8-3246-9941-90d8cc8dec85,c34a7a70-3be6-40fb-8761-a43facdbc975 -6a508faa-80a8-3246-9941-90d8cc8dec85,0b306a2f-a04c-49cd-aa97-e201f60848e9 -6a508faa-80a8-3246-9941-90d8cc8dec85,ebbf8452-03ac-4934-9787-66627cf53239 -6a508faa-80a8-3246-9941-90d8cc8dec85,56c6391c-e408-4e4e-98ff-231f867a87a7 -6a508faa-80a8-3246-9941-90d8cc8dec85,85ffaf5e-d7c9-4075-96b4-0051debb0005 -6a508faa-80a8-3246-9941-90d8cc8dec85,322a5d80-9d6e-4ae6-b1bf-84cedd444dd9 -6a508faa-80a8-3246-9941-90d8cc8dec85,5acfbb96-ca58-4602-9bd7-9c9da973fea3 -6a508faa-80a8-3246-9941-90d8cc8dec85,ca66c678-8629-46ea-8bf4-6366ea5f9dab -6a508faa-80a8-3246-9941-90d8cc8dec85,7d35d950-4d7b-47d8-9390-7edcb7582d76 -6a508faa-80a8-3246-9941-90d8cc8dec85,f86e0d80-627b-4739-a3ea-7bbb6b674bdc -6a508faa-80a8-3246-9941-90d8cc8dec85,453dd2ec-58dd-4c41-9680-d9c532b01ebe -6a508faa-80a8-3246-9941-90d8cc8dec85,e6992eb0-f1e1-4c45-985e-7724f658a2fe -6a508faa-80a8-3246-9941-90d8cc8dec85,c04745f1-9c4c-4476-aaa6-318aa843c11e -6a508faa-80a8-3246-9941-90d8cc8dec85,f379261d-9a22-4f0c-b689-5ca8600b3bd9 -6a508faa-80a8-3246-9941-90d8cc8dec85,3f3f2283-0934-4c41-b824-01fdddbdfcd6 -6a508faa-80a8-3246-9941-90d8cc8dec85,4b2df722-44fb-401b-8f11-b5831057c11e -6a508faa-80a8-3246-9941-90d8cc8dec85,cc9c237d-d39b-4ad1-b06e-ebaaf904ad2a -6a508faa-80a8-3246-9941-90d8cc8dec85,e770f3a2-e797-4e66-9b6f-3eaca94e901b -6a508faa-80a8-3246-9941-90d8cc8dec85,9b35c598-fc4a-46e7-b7dc-83fc2058217b -6a508faa-80a8-3246-9941-90d8cc8dec85,597ab9ff-1cc5-4ead-a54b-9dace81e2dc1 -6a508faa-80a8-3246-9941-90d8cc8dec85,a1d0be5e-a0b9-43da-a403-d9b60db1632f -6a508faa-80a8-3246-9941-90d8cc8dec85,9432ea5f-06a6-4e54-8acd-ae9cfdce0aef -6a508faa-80a8-3246-9941-90d8cc8dec85,9dbeef94-7062-410f-8603-f3273378890a -6a508faa-80a8-3246-9941-90d8cc8dec85,51e4d75e-1fef-4c45-8db7-0e379e2c6db0 -6a508faa-80a8-3246-9941-90d8cc8dec85,7689ec71-4597-41ed-99cb-9055d46f152a -6a508faa-80a8-3246-9941-90d8cc8dec85,8ebe0e80-3614-46b0-9ea8-0c267a4fecc1 -6a508faa-80a8-3246-9941-90d8cc8dec85,0951bf7c-e17a-47e1-955d-cdcaa138bce7 -6a508faa-80a8-3246-9941-90d8cc8dec85,d83bbe7c-935b-47fa-aa7a-29fce08fdb95 -6a508faa-80a8-3246-9941-90d8cc8dec85,d431c20e-7bfa-42e3-8f8d-68c1968e31be -6a508faa-80a8-3246-9941-90d8cc8dec85,e14f2f7a-ecd4-4226-a6bf-5cf28368be31 -6a508faa-80a8-3246-9941-90d8cc8dec85,17409637-be52-4bec-bf21-f37df3789108 -6a508faa-80a8-3246-9941-90d8cc8dec85,c8a0bfe1-c0e8-4466-92be-762a3b114fd1 -6a508faa-80a8-3246-9941-90d8cc8dec85,90abbdb5-2bb3-4938-8808-5afdc38500b0 -6a508faa-80a8-3246-9941-90d8cc8dec85,25914632-6612-4d3f-9cab-7100640eef76 -6a508faa-80a8-3246-9941-90d8cc8dec85,28143cff-12ed-44e7-a4ea-77af031ca4a5 -6a508faa-80a8-3246-9941-90d8cc8dec85,567cd747-228b-476f-ae6d-24a67d28f338 -6a508faa-80a8-3246-9941-90d8cc8dec85,1edb7406-54c0-4f3b-8783-a877f3b3feed -6a508faa-80a8-3246-9941-90d8cc8dec85,1a82d197-ab33-49f3-8d7e-1130c620a679 -6a508faa-80a8-3246-9941-90d8cc8dec85,9f6297fc-f844-4b80-b7b1-dfddf3bc7ab3 -6a508faa-80a8-3246-9941-90d8cc8dec85,8a11c8d4-af7d-4331-a83b-2bc069620b24 -6a508faa-80a8-3246-9941-90d8cc8dec85,dfaa777a-17d2-43e0-a790-f8c052b168c4 -6a508faa-80a8-3246-9941-90d8cc8dec85,dd1cf10c-b4dd-4b86-969e-70a83abfb73e -6a508faa-80a8-3246-9941-90d8cc8dec85,0ffd1fd1-35bc-4cf0-84ea-d39689358906 -6a508faa-80a8-3246-9941-90d8cc8dec85,12d70e43-dae8-4c2a-9106-a61f2699ccab -6a508faa-80a8-3246-9941-90d8cc8dec85,6e3bb826-d165-4e0f-8545-30b97e5f1e41 -6a508faa-80a8-3246-9941-90d8cc8dec85,24c7aa06-3cbd-4ede-8fa4-a9c338ff19d5 -6a508faa-80a8-3246-9941-90d8cc8dec85,3b9dabf8-d024-4d5e-b020-1e4b9644e204 -6a508faa-80a8-3246-9941-90d8cc8dec85,d56954ce-11d6-4167-adca-b18a7d587414 -6a508faa-80a8-3246-9941-90d8cc8dec85,4600d661-2ba6-4e7c-812b-474a01c4e5ac -6a508faa-80a8-3246-9941-90d8cc8dec85,fdafc4b0-e0b2-46f5-bd9a-42ffd2a69fc6 -6a508faa-80a8-3246-9941-90d8cc8dec85,dad13fe5-4cdf-40c6-9578-6b9cf501152d -6a508faa-80a8-3246-9941-90d8cc8dec85,d624799b-8aa4-401b-bdda-c05619f08108 -6a508faa-80a8-3246-9941-90d8cc8dec85,2ffc9220-af2a-4152-8838-1d39c153417a -6a508faa-80a8-3246-9941-90d8cc8dec85,d8b5aaf0-b844-444e-ad1f-1a09e0ebca4b -6a508faa-80a8-3246-9941-90d8cc8dec85,f26d6412-f158-4e6e-b473-5442dd896c17 -6a508faa-80a8-3246-9941-90d8cc8dec85,7af21a8d-2357-4778-a071-c57a953828f6 -6a508faa-80a8-3246-9941-90d8cc8dec85,b7c1176e-2646-4cf7-9cec-4032ec32bb62 -6a508faa-80a8-3246-9941-90d8cc8dec85,cf802fd7-6194-45e9-b2f1-4c78a4efebc7 -6a508faa-80a8-3246-9941-90d8cc8dec85,dc171720-5c32-47b8-b92e-2322817b89f8 -6a508faa-80a8-3246-9941-90d8cc8dec85,e77cc021-aa93-48c4-bb82-7b4e996c4271 -6a508faa-80a8-3246-9941-90d8cc8dec85,b6b0827c-705f-44df-98ca-693a28bfbc41 -6a508faa-80a8-3246-9941-90d8cc8dec85,f1521ea9-35c7-45de-8fd1-ccb343730f1b -6a508faa-80a8-3246-9941-90d8cc8dec85,38a6e4df-af3d-45a7-a38f-e9b30f57c811 -6a508faa-80a8-3246-9941-90d8cc8dec85,602ca492-caec-45a0-9505-9126922242e4 -6a508faa-80a8-3246-9941-90d8cc8dec85,84163d78-6ddb-41a8-84e2-a60ad2a8ac2a -6a508faa-80a8-3246-9941-90d8cc8dec85,1d54112f-505a-48bf-98e8-174c29711d80 -6a508faa-80a8-3246-9941-90d8cc8dec85,b513b710-f356-409c-9e67-6732ed03cf00 -6a508faa-80a8-3246-9941-90d8cc8dec85,beef3bca-d33a-46bb-8bd4-79b93de94414 -6a508faa-80a8-3246-9941-90d8cc8dec85,4f61d4eb-3e21-4e4e-baf5-9a0148c89ffe -6a508faa-80a8-3246-9941-90d8cc8dec85,9a5dba69-cf39-4151-93ae-23934dc53436 -6a508faa-80a8-3246-9941-90d8cc8dec85,df9ef07d-48f7-413a-9575-4aca935bf7b0 -6a508faa-80a8-3246-9941-90d8cc8dec85,fc4a7548-a96b-44c1-810e-092cf173dcf8 -6a508faa-80a8-3246-9941-90d8cc8dec85,e3ac9fb6-2aae-4c32-b54a-08c88bdb92dd -6a508faa-80a8-3246-9941-90d8cc8dec85,33532977-53f0-45ad-a217-7b847061e01d -6a508faa-80a8-3246-9941-90d8cc8dec85,b001fdea-98e2-4e2a-8432-cc48aa60717c -6a508faa-80a8-3246-9941-90d8cc8dec85,325589b5-dfca-4571-b7d1-e050fd719e31 -6a508faa-80a8-3246-9941-90d8cc8dec85,26ac6af0-1a0a-4ddc-936f-3eb22db9b922 -6a508faa-80a8-3246-9941-90d8cc8dec85,1c42fdfc-c6f4-4ddd-a4a3-7edf93a74640 -6a508faa-80a8-3246-9941-90d8cc8dec85,fb06812c-b979-4963-953f-34513ae00e87 -6a508faa-80a8-3246-9941-90d8cc8dec85,e0110bda-4159-44c7-809d-f07011c69188 -6a508faa-80a8-3246-9941-90d8cc8dec85,1ddaf177-0528-496e-ab0b-fa98e406a455 -6a508faa-80a8-3246-9941-90d8cc8dec85,07532f7d-20b2-4d06-8148-d742f08d7c8f -6a508faa-80a8-3246-9941-90d8cc8dec85,d4dd9069-fddf-43e1-856b-03a946a45ad6 -6a508faa-80a8-3246-9941-90d8cc8dec85,e8b52baa-1b9d-46ae-88d5-9d5fcf8626c2 -6a508faa-80a8-3246-9941-90d8cc8dec85,5432bb8a-8c6b-447f-8cde-97536b01ed0f -6a508faa-80a8-3246-9941-90d8cc8dec85,e9e38fad-f3b8-4323-bca0-67165e64296c -6a508faa-80a8-3246-9941-90d8cc8dec85,700f90b4-b890-4193-a694-10049594be80 -6a508faa-80a8-3246-9941-90d8cc8dec85,def6400c-2985-47ea-801a-7ad14bb9d8dd -6a508faa-80a8-3246-9941-90d8cc8dec85,74bf9c26-ce41-4bf5-861f-48bae2fd4612 -6a508faa-80a8-3246-9941-90d8cc8dec85,f2ab5afc-c40a-49aa-a780-954a24926211 -6a508faa-80a8-3246-9941-90d8cc8dec85,a1b98b4a-fffe-4f23-a6d4-c5568de22dde -6a508faa-80a8-3246-9941-90d8cc8dec85,a89f4f3e-40c8-487b-8c78-2ad24673c4e6 -6a508faa-80a8-3246-9941-90d8cc8dec85,09b60705-686b-4bd2-b01f-d99f85f4a17d -6a508faa-80a8-3246-9941-90d8cc8dec85,1d65620f-33db-421f-b64f-59760c2ede81 -6a508faa-80a8-3246-9941-90d8cc8dec85,681d6f34-b4eb-400d-a061-b78d246e6045 -6a508faa-80a8-3246-9941-90d8cc8dec85,d9de945d-5830-4406-8976-aac441f92092 -6a508faa-80a8-3246-9941-90d8cc8dec85,0c38f9d0-7eb2-4bcf-8f3f-bd910372e565 -6a508faa-80a8-3246-9941-90d8cc8dec85,563802d6-f1d8-453b-8881-03c7a0f89fb2 -6a508faa-80a8-3246-9941-90d8cc8dec85,dfde579a-1afd-43b4-b51d-94773adce0d9 -6a508faa-80a8-3246-9941-90d8cc8dec85,bac7ec66-1e12-454e-92ba-37c058eb0c7f -6a508faa-80a8-3246-9941-90d8cc8dec85,1d4498d3-05a7-42bb-9f9e-38c8824cca99 -6a508faa-80a8-3246-9941-90d8cc8dec85,e59dca8e-780f-4d11-936c-fd118a9d006e -6a508faa-80a8-3246-9941-90d8cc8dec85,758d43c4-599f-4f4a-94e1-00478a76de31 -6a508faa-80a8-3246-9941-90d8cc8dec85,57bbfbdd-8405-4dde-b9fb-5930d3d379ca -6a508faa-80a8-3246-9941-90d8cc8dec85,912ee523-a6bb-4a83-afb3-0e1a594db471 -6a508faa-80a8-3246-9941-90d8cc8dec85,be4c30eb-7cc0-40a5-bf91-edc77e23b230 -6a508faa-80a8-3246-9941-90d8cc8dec85,46d4a6f7-010b-4dcc-b72c-ff89a9780415 -6a508faa-80a8-3246-9941-90d8cc8dec85,0783aa9e-143d-47eb-aff2-bb8785e323d9 -6a508faa-80a8-3246-9941-90d8cc8dec85,096fbdd7-685f-42aa-b11e-77f4e5286f14 -6a508faa-80a8-3246-9941-90d8cc8dec85,3a817a2d-b70c-4a07-856e-e169dbdc5c96 -6a508faa-80a8-3246-9941-90d8cc8dec85,06d39ea9-014a-4270-808b-7f6e7597e994 -6a508faa-80a8-3246-9941-90d8cc8dec85,ebaf3396-5697-4a46-bcc3-83fe185eb30a -6a508faa-80a8-3246-9941-90d8cc8dec85,ff169057-c8e1-44f0-9572-ba0df0e00a91 -6a508faa-80a8-3246-9941-90d8cc8dec85,77c9a1e6-7bee-49b3-b04b-47e7707742b0 -6a508faa-80a8-3246-9941-90d8cc8dec85,ca4c1e93-8399-44ab-8b33-0323e5fa59d2 -6a508faa-80a8-3246-9941-90d8cc8dec85,7180cd66-5f68-48bc-953f-a95386aaf7d4 -6a508faa-80a8-3246-9941-90d8cc8dec85,dd1125c1-9de9-4fbf-83db-3f8a83999ef7 -6a508faa-80a8-3246-9941-90d8cc8dec85,5e4ca04d-3867-4c80-880c-7e1616d74fb3 -6a508faa-80a8-3246-9941-90d8cc8dec85,f96720e8-3218-4d72-8525-ffac719822fe -6a508faa-80a8-3246-9941-90d8cc8dec85,fc52ed86-7e4a-48fa-8234-1e5ea8ea345f -6a508faa-80a8-3246-9941-90d8cc8dec85,60bac6df-3874-46b3-ba22-78e5d43407dd -6a508faa-80a8-3246-9941-90d8cc8dec85,ee28da28-d862-4a3c-a710-3a63103a9188 -6a508faa-80a8-3246-9941-90d8cc8dec85,6ae4738e-5833-4414-a2de-b0e2ece8ba6f -6a508faa-80a8-3246-9941-90d8cc8dec85,813b7ac1-9d88-4526-b132-8d69e99a06d6 -6a508faa-80a8-3246-9941-90d8cc8dec85,15e36543-8755-40d6-9a80-c0899f0d2dc0 -6a508faa-80a8-3246-9941-90d8cc8dec85,76bf39c1-80ee-4037-b80d-ee1872a7a499 -6a508faa-80a8-3246-9941-90d8cc8dec85,3b6bf031-1405-4eca-8198-5325db3a4b20 -6a508faa-80a8-3246-9941-90d8cc8dec85,225b3f2f-d91b-44da-ae20-4e783bc4fa5f -6a508faa-80a8-3246-9941-90d8cc8dec85,2e5ae292-0944-44ba-8d3f-70245e079664 -6a508faa-80a8-3246-9941-90d8cc8dec85,a98e117b-46a5-48af-a88b-824918f6114f -6a508faa-80a8-3246-9941-90d8cc8dec85,55060223-8f27-48f1-8438-5442f1778cae -6a508faa-80a8-3246-9941-90d8cc8dec85,ac18f521-2b6f-468c-a6d5-0100115824ad -6a508faa-80a8-3246-9941-90d8cc8dec85,b2ce3198-449a-43dc-9ed9-b2adc1004ade -6a508faa-80a8-3246-9941-90d8cc8dec85,06f343f3-b76f-4e38-af4b-ed51ae22c373 -6a508faa-80a8-3246-9941-90d8cc8dec85,2869f76b-0956-4584-ba5c-479e38b86300 -6a508faa-80a8-3246-9941-90d8cc8dec85,0481d98d-a544-4404-8ba2-ebd83e6aaa29 -6a508faa-80a8-3246-9941-90d8cc8dec85,f0f5bc99-ec90-40a7-9207-78a76aa64043 -6a508faa-80a8-3246-9941-90d8cc8dec85,988ac7dc-2da2-4429-937a-bdccb80e7025 -6a508faa-80a8-3246-9941-90d8cc8dec85,65e81b6c-2210-421e-8f39-b35d640f0fc7 -6a508faa-80a8-3246-9941-90d8cc8dec85,bd1f6fef-4c9e-4607-92a6-4b7559edcabb -6a508faa-80a8-3246-9941-90d8cc8dec85,af93e152-71c7-46d4-93c4-bff2240f3743 -6a508faa-80a8-3246-9941-90d8cc8dec85,ef0ebedc-4bbf-488c-8f0c-54546a08e89a -6a508faa-80a8-3246-9941-90d8cc8dec85,a96e3b32-3762-4aa8-a0d6-d8fcc055509c -6a508faa-80a8-3246-9941-90d8cc8dec85,2c3ed7e4-2d6d-4260-99b1-184dd1c8f9e1 -6a508faa-80a8-3246-9941-90d8cc8dec85,981db5bc-2532-46c6-9736-161ebd7f1800 -6a508faa-80a8-3246-9941-90d8cc8dec85,3a29b7d5-4366-4bf4-bc88-6a5b9631905c -6a508faa-80a8-3246-9941-90d8cc8dec85,43c0d887-db2b-48e3-a352-31e726946c46 -6a508faa-80a8-3246-9941-90d8cc8dec85,25bf49f4-41b1-48d4-8b3f-d9ef0c66612b -6a508faa-80a8-3246-9941-90d8cc8dec85,de9cde11-a63c-49c8-a8bc-2c8e41de1482 -6a508faa-80a8-3246-9941-90d8cc8dec85,6086ac80-5056-473e-a378-839c8e29ee85 -6a508faa-80a8-3246-9941-90d8cc8dec85,7d80179a-a094-4a34-be08-a1cedda1fee8 -6a508faa-80a8-3246-9941-90d8cc8dec85,f6e1bf2a-0b7d-4375-b414-468717b6b590 -6a508faa-80a8-3246-9941-90d8cc8dec85,c7546959-36dc-4cb3-9ec3-179af02cd05e -6a508faa-80a8-3246-9941-90d8cc8dec85,1e85ca46-dd07-48d6-a2bf-c9f29f3c2eed -6a508faa-80a8-3246-9941-90d8cc8dec85,d10d2a97-7db9-4119-b8d3-9def606983a2 -6a508faa-80a8-3246-9941-90d8cc8dec85,8c6ef8bf-b8fa-4410-8af8-3a51b3d835bc -6a508faa-80a8-3246-9941-90d8cc8dec85,749f6011-341f-4748-8313-958f8ddc6e63 -6a508faa-80a8-3246-9941-90d8cc8dec85,88e4d772-6539-4f34-b3f4-a240665ec3ea -6a508faa-80a8-3246-9941-90d8cc8dec85,12ff874f-735a-4868-ac19-0472d357141e -6a508faa-80a8-3246-9941-90d8cc8dec85,03669ef2-154d-44e2-88b2-29a793892e44 -6a508faa-80a8-3246-9941-90d8cc8dec85,d2525ebb-fb69-4af0-b91f-4cd2da0bf37b -6a508faa-80a8-3246-9941-90d8cc8dec85,0bd88db8-bde3-4615-8dab-23d933791871 -6a508faa-80a8-3246-9941-90d8cc8dec85,5c6d7287-150f-40a0-9fd1-972ba7d02ee3 -6a508faa-80a8-3246-9941-90d8cc8dec85,1a7f2c6e-4ce0-4303-b20f-aabd7a3d4d89 -6a508faa-80a8-3246-9941-90d8cc8dec85,331a935a-95ab-4d13-b251-b5b386b34582 -6a508faa-80a8-3246-9941-90d8cc8dec85,02c06758-652b-4e82-be81-b10e2a6b20c9 -6a508faa-80a8-3246-9941-90d8cc8dec85,3491ee61-3d4f-42cf-9b15-c1bafd0d9003 -6a508faa-80a8-3246-9941-90d8cc8dec85,608c1939-d7da-44e0-a2af-cfd7c76002cd -6a508faa-80a8-3246-9941-90d8cc8dec85,7109efc6-fe24-4404-b198-cb772342e94f -6a508faa-80a8-3246-9941-90d8cc8dec85,c72813b2-4bc0-40c3-b843-3d1a51666b0d -6a508faa-80a8-3246-9941-90d8cc8dec85,8d31c1a5-b142-42ab-88c8-56359c6e2614 -6a508faa-80a8-3246-9941-90d8cc8dec85,6cc72973-cfca-4546-8965-cfc6525532d0 -6a508faa-80a8-3246-9941-90d8cc8dec85,429ce392-5982-4bcb-b172-b9e12a0b644f -6a508faa-80a8-3246-9941-90d8cc8dec85,487fe0a6-a6d6-438f-87da-5a32ca245147 -6a508faa-80a8-3246-9941-90d8cc8dec85,46f9800c-9e6c-41e6-aded-50587a0fe01a -6a508faa-80a8-3246-9941-90d8cc8dec85,44e55af4-fc58-4e37-b9c2-db03da553f8f -6a508faa-80a8-3246-9941-90d8cc8dec85,04664c07-8345-449f-8d11-9cd62c6f255a -6a508faa-80a8-3246-9941-90d8cc8dec85,e59b9b0a-1145-49c9-a807-9d5872a84859 -6a508faa-80a8-3246-9941-90d8cc8dec85,30b084a4-95be-4939-a53b-d368a8c8f906 -6a508faa-80a8-3246-9941-90d8cc8dec85,5c3197e4-a577-4839-86ac-7ea5175c92e6 -6a508faa-80a8-3246-9941-90d8cc8dec85,5f412533-1823-40ae-954c-f21ac5265abf -6a508faa-80a8-3246-9941-90d8cc8dec85,b133d668-3b6f-41b7-a858-93cfe3efba14 -6a508faa-80a8-3246-9941-90d8cc8dec85,7e2f2b77-ca35-4077-929c-4eb449bc2b7a -6a508faa-80a8-3246-9941-90d8cc8dec85,8c812d89-220f-4b98-8c86-4d359af2e987 -6a508faa-80a8-3246-9941-90d8cc8dec85,11f1d22c-b23b-4036-98f6-7aa6eb2b7762 -6a508faa-80a8-3246-9941-90d8cc8dec85,3e82eef0-286d-40cb-b9e7-f5929a724f50 -6a508faa-80a8-3246-9941-90d8cc8dec85,206da86b-74f0-435e-beb7-2ddee493bf1c -6a508faa-80a8-3246-9941-90d8cc8dec85,4f114a1e-33cb-487d-9cf9-ee6126de5cf9 -6a508faa-80a8-3246-9941-90d8cc8dec85,9c35cea0-6c15-4964-a4a4-0cdd3e31fbcf -6a508faa-80a8-3246-9941-90d8cc8dec85,aecc89f9-61ce-423a-a87f-ee786d5405db -6a508faa-80a8-3246-9941-90d8cc8dec85,2fc5d92f-7e1a-4f7d-8293-ab20c881f6a9 -6a508faa-80a8-3246-9941-90d8cc8dec85,e9848bdb-9f5b-4fcb-841f-4539a0e26ea6 -6a508faa-80a8-3246-9941-90d8cc8dec85,33ba41bc-3740-40a5-abe9-bf236733acbe -6a508faa-80a8-3246-9941-90d8cc8dec85,5dcd7f7b-31ce-4fc5-a443-e38546695d4b -6a508faa-80a8-3246-9941-90d8cc8dec85,95a4b35a-b10d-49e6-8013-ec848a19b385 -6a508faa-80a8-3246-9941-90d8cc8dec85,9a388933-4941-4427-9a7a-64ba344ab1af -6a508faa-80a8-3246-9941-90d8cc8dec85,f9414dd1-68f1-4b95-b555-6336b55f7319 -6a508faa-80a8-3246-9941-90d8cc8dec85,4be04585-a5ea-4560-8802-0af452d511b8 -6a508faa-80a8-3246-9941-90d8cc8dec85,9aa710af-3bbb-4c66-b93c-712312f0037d -6a508faa-80a8-3246-9941-90d8cc8dec85,031a383e-9265-4842-a997-791444b88d48 -6a508faa-80a8-3246-9941-90d8cc8dec85,8ff0e7d6-d82c-467d-8fa8-aa7ad523e39d -6a508faa-80a8-3246-9941-90d8cc8dec85,d4997335-b38b-4302-9458-f624e911814b -6a508faa-80a8-3246-9941-90d8cc8dec85,7f6a1f18-3505-4618-8f03-9186f25fad46 -6a508faa-80a8-3246-9941-90d8cc8dec85,c00ea0d6-9159-49eb-888b-974b69b69f6b -6a508faa-80a8-3246-9941-90d8cc8dec85,8b7e0a5d-68af-4100-87e7-ae4bf53a35ee -6a508faa-80a8-3246-9941-90d8cc8dec85,36ba6dd7-bd02-4a92-ae64-2dbb0a50abf0 -6a508faa-80a8-3246-9941-90d8cc8dec85,17e3078b-0c67-4219-b73a-6614ea395b64 -6a508faa-80a8-3246-9941-90d8cc8dec85,e451ad37-be5b-40ac-8025-0288a7579009 -6a508faa-80a8-3246-9941-90d8cc8dec85,04f52810-ca58-492b-8656-f973b3573d0c -6a508faa-80a8-3246-9941-90d8cc8dec85,0cffdae7-0c9e-45cc-910e-98e1028dd1ae -6a508faa-80a8-3246-9941-90d8cc8dec85,dcc3c654-b289-4d41-9008-d3c01c512f66 -6a508faa-80a8-3246-9941-90d8cc8dec85,ca207275-38e0-4eb4-91a9-ec8ba9982e8e -6a508faa-80a8-3246-9941-90d8cc8dec85,812eb121-256e-4f79-b69f-89f3268e4288 -6a508faa-80a8-3246-9941-90d8cc8dec85,b5af9f0c-d000-4aed-a5f6-54f4c64205b9 -6a508faa-80a8-3246-9941-90d8cc8dec85,ad2ee45c-17e1-4ca8-a72a-efa3a0f1c075 -6a508faa-80a8-3246-9941-90d8cc8dec85,0537c95c-ee91-4c62-b6a3-082644aeb041 -6a508faa-80a8-3246-9941-90d8cc8dec85,94593ecc-2b20-470b-926f-7c072e4d579c -6a508faa-80a8-3246-9941-90d8cc8dec85,72c649b5-15c9-462a-a041-29adc30b097d -6a508faa-80a8-3246-9941-90d8cc8dec85,fd501275-174c-4266-8bd8-89e603d09cef -6a508faa-80a8-3246-9941-90d8cc8dec85,c6730eda-09e2-48a1-901d-76a90cbd8d4a -6a508faa-80a8-3246-9941-90d8cc8dec85,bf36b50d-d7e3-4c77-8645-1c0cfa0d52ed -6a508faa-80a8-3246-9941-90d8cc8dec85,4e52d3e7-196b-4b32-a31c-f6aa9aff27ea -6a508faa-80a8-3246-9941-90d8cc8dec85,0faa509d-eb71-4057-adbd-b78a91ddf705 -6a508faa-80a8-3246-9941-90d8cc8dec85,7780cc5a-b672-48a1-aef8-67115beca522 -6a508faa-80a8-3246-9941-90d8cc8dec85,30f10fc0-2750-4797-8604-34bd1fc80fd0 -6a508faa-80a8-3246-9941-90d8cc8dec85,0ca51907-0fe7-46cb-86fd-36bd74cbbd9f -6a508faa-80a8-3246-9941-90d8cc8dec85,fe56e7c8-b6b4-4dd1-807a-fa6e2e8ed2a2 -6a508faa-80a8-3246-9941-90d8cc8dec85,4c48c582-7bc2-4db4-a731-4cbaa59c3017 -6a508faa-80a8-3246-9941-90d8cc8dec85,a7874d27-03bb-410b-9021-adb0d034a7df -6a508faa-80a8-3246-9941-90d8cc8dec85,5ca0f55d-0b4a-4ebf-9a7e-bfdca16e916f -6a508faa-80a8-3246-9941-90d8cc8dec85,b38e7b8c-c3a8-476f-b941-24e324efb814 -6a508faa-80a8-3246-9941-90d8cc8dec85,49a8d356-d26c-4af0-83fe-2a4a33911d5c -6a508faa-80a8-3246-9941-90d8cc8dec85,2b049d94-5968-4db3-b73d-d98895789010 -6a508faa-80a8-3246-9941-90d8cc8dec85,3a8d778f-a05b-4437-b23d-66f15fb55644 -6a508faa-80a8-3246-9941-90d8cc8dec85,34301dcd-5304-4552-bcc4-7477ae5d49c1 -6a508faa-80a8-3246-9941-90d8cc8dec85,7767440b-0f52-427a-9791-5af3a68fd327 -6a508faa-80a8-3246-9941-90d8cc8dec85,87d6161c-5e7c-4c37-9e57-c6aa2ed58016 -6a508faa-80a8-3246-9941-90d8cc8dec85,fdfae5ee-d64a-4865-b782-d153a3431d58 -6a508faa-80a8-3246-9941-90d8cc8dec85,75389343-55a7-4d2b-afd8-02189a9ed78e -6a508faa-80a8-3246-9941-90d8cc8dec85,08236714-bd1c-42b8-b574-f28a819ce541 -6a508faa-80a8-3246-9941-90d8cc8dec85,063e4e1d-7f43-47ba-98ab-2fc345dfc118 -6a508faa-80a8-3246-9941-90d8cc8dec85,96248dbe-3f12-4377-9163-530f026688d4 -6a508faa-80a8-3246-9941-90d8cc8dec85,56295a6b-6ed5-4437-a5ed-c4f9ce1861b4 -6a508faa-80a8-3246-9941-90d8cc8dec85,8c93c07c-4a35-402c-a3c7-f5dfe1d2ffe5 -6a508faa-80a8-3246-9941-90d8cc8dec85,15ffa9e6-2d61-470f-a157-f4e1e079089f -6a508faa-80a8-3246-9941-90d8cc8dec85,52c1f1a4-f1b5-436b-96a2-9b9d63367bec -6a508faa-80a8-3246-9941-90d8cc8dec85,bed38849-5631-4f54-8a94-1d82cf4f9105 -6a508faa-80a8-3246-9941-90d8cc8dec85,09a7d1be-b999-4f3d-b4fb-74e87e0b0ca9 -6a508faa-80a8-3246-9941-90d8cc8dec85,44eeaa0c-c3df-4bf9-94e6-3dc00c032cbb -6a508faa-80a8-3246-9941-90d8cc8dec85,3189219c-a4ca-4602-b817-9444ffe8f458 -6a508faa-80a8-3246-9941-90d8cc8dec85,2ddc3b02-6e10-409c-b0eb-499ef77475c2 -6a508faa-80a8-3246-9941-90d8cc8dec85,76f84ad6-9f3c-4d20-866d-2dbba52e9dc7 -6a508faa-80a8-3246-9941-90d8cc8dec85,88324684-5a63-41ca-8a7f-8b50689547e7 -6a508faa-80a8-3246-9941-90d8cc8dec85,8ec84808-b959-427b-88a9-432c697c950f -6a508faa-80a8-3246-9941-90d8cc8dec85,9981488a-a48e-4728-98e4-c066843d6c2a -6a508faa-80a8-3246-9941-90d8cc8dec85,8aeccb58-a68e-4e47-83e5-b6dd5fa008b3 -6a508faa-80a8-3246-9941-90d8cc8dec85,064d5662-517d-46af-8be5-1602278314c6 -6a508faa-80a8-3246-9941-90d8cc8dec85,0b3e3bdf-9f2e-4255-91d7-110a85c361cc -6a508faa-80a8-3246-9941-90d8cc8dec85,bb695414-56bb-4067-b2df-ee8105750510 -6a508faa-80a8-3246-9941-90d8cc8dec85,e2e7b167-cf51-48cf-8ee7-8e06c8b8bf06 -6a508faa-80a8-3246-9941-90d8cc8dec85,72bdaed3-3429-456b-8512-3166bb388995 -6a508faa-80a8-3246-9941-90d8cc8dec85,76294642-a95e-4169-b7c8-6c5330d8bf1c -6a508faa-80a8-3246-9941-90d8cc8dec85,90ff198c-dc27-4918-9d64-4dcc82827723 -6a508faa-80a8-3246-9941-90d8cc8dec85,ca9eb5d4-4e5a-4c93-bdc7-d34a5d37006a -6a508faa-80a8-3246-9941-90d8cc8dec85,a424e0e9-b7ea-4256-97cb-6bd6cecbb563 -6a508faa-80a8-3246-9941-90d8cc8dec85,7bd229c1-d28c-4688-9e70-038a31825d56 -6a508faa-80a8-3246-9941-90d8cc8dec85,aac33d0c-c5be-4730-b074-be2e394fb11e -6a508faa-80a8-3246-9941-90d8cc8dec85,a65feb22-4683-493a-818f-2bf81e25fae5 -6a508faa-80a8-3246-9941-90d8cc8dec85,cb06dffc-0b7d-416b-83b8-9b06be3131cc -6a508faa-80a8-3246-9941-90d8cc8dec85,ad1e0638-21e5-4219-84b6-41e25d0d7bad -6a508faa-80a8-3246-9941-90d8cc8dec85,fa59a060-8e8b-47c5-ac42-13d2fd8eb3dd -6a508faa-80a8-3246-9941-90d8cc8dec85,0e5c59b5-6397-4ef1-8716-fea6d68df58d -6a508faa-80a8-3246-9941-90d8cc8dec85,a1fdd0f3-fd96-4f76-a36e-9a3f29c9c542 -6a508faa-80a8-3246-9941-90d8cc8dec85,61f91a8d-5d2a-42ff-8f28-ee4c266e724d -6a508faa-80a8-3246-9941-90d8cc8dec85,32a9738a-48d3-4428-9a5f-457c585f34d1 -6a508faa-80a8-3246-9941-90d8cc8dec85,8d045505-57b5-4505-a376-4195e43b6cfe -6a508faa-80a8-3246-9941-90d8cc8dec85,bc56bd71-4127-497e-ae3c-11c8c01a9d97 -6a508faa-80a8-3246-9941-90d8cc8dec85,50b62092-9afd-4167-ae51-15098fac4665 -6a508faa-80a8-3246-9941-90d8cc8dec85,f8aedf01-e9f8-461f-a4e6-d95d925b46d8 -6a508faa-80a8-3246-9941-90d8cc8dec85,96383396-b153-46ed-b384-06488f026bbe -6a508faa-80a8-3246-9941-90d8cc8dec85,d2aa39d9-f0bd-4148-9ab8-dbd2c207d233 -6a508faa-80a8-3246-9941-90d8cc8dec85,3bb5e937-0f67-4b92-9f29-4dc6f4f10984 -6a508faa-80a8-3246-9941-90d8cc8dec85,af25a11f-c7ca-4c69-8a18-e7d840e68b13 -6a508faa-80a8-3246-9941-90d8cc8dec85,351e8d85-f848-449a-bb3b-c7b589d953b7 -6a508faa-80a8-3246-9941-90d8cc8dec85,1d1c16e5-f0de-4f25-958f-20dbcff94ab4 -6a508faa-80a8-3246-9941-90d8cc8dec85,a08e80e7-e659-4195-b01d-b5a884967468 -6a508faa-80a8-3246-9941-90d8cc8dec85,95b84db5-1be3-47bc-83d0-e04c8b7bd83b -6a508faa-80a8-3246-9941-90d8cc8dec85,df763eaa-b6e9-4c06-a24f-e1b42a04a928 -6a508faa-80a8-3246-9941-90d8cc8dec85,782016b2-198a-4442-877a-7f0151e68881 -6a508faa-80a8-3246-9941-90d8cc8dec85,852dcabc-a5b4-4edf-8790-8e75c4d7f3ba -6a508faa-80a8-3246-9941-90d8cc8dec85,a133814a-7500-43dd-b3c3-5a30988ee5d0 -6a508faa-80a8-3246-9941-90d8cc8dec85,9e3ec8fe-48fc-42a1-933e-dbfffe34b91a -6a508faa-80a8-3246-9941-90d8cc8dec85,1e9e7fde-8c04-4381-a8df-73d15ad61378 -6a508faa-80a8-3246-9941-90d8cc8dec85,f26a6639-12c9-4b6d-ab37-be85e004c137 -6a508faa-80a8-3246-9941-90d8cc8dec85,d4f5cf3d-e1dc-4325-8524-ad738452292e -6a508faa-80a8-3246-9941-90d8cc8dec85,298e952c-1588-4672-8858-88c427244ac9 -6a508faa-80a8-3246-9941-90d8cc8dec85,efef9698-9e25-4a4e-9b44-673cb0730bc3 -6a508faa-80a8-3246-9941-90d8cc8dec85,84e3cc38-efdb-4662-885e-ef8c7c5878f4 -6a508faa-80a8-3246-9941-90d8cc8dec85,13a274d3-7c03-47c3-b480-6362c307e2fb -6a508faa-80a8-3246-9941-90d8cc8dec85,49b83b90-b57b-4143-abba-c078462f4359 -6a508faa-80a8-3246-9941-90d8cc8dec85,21e24358-b4d9-4b73-ac56-7ef13bb0b6eb -6a508faa-80a8-3246-9941-90d8cc8dec85,57041cd1-6a94-4f53-87f6-cc35d4887a23 -6a508faa-80a8-3246-9941-90d8cc8dec85,ba37648b-c4d9-4890-96b2-fdfe46420ab5 -6a508faa-80a8-3246-9941-90d8cc8dec85,6fd6c2ad-68f0-494c-beef-fd3f0b2e5d35 -6a508faa-80a8-3246-9941-90d8cc8dec85,fd7c97a3-08a6-48a5-9f61-6229138d4e25 -6a508faa-80a8-3246-9941-90d8cc8dec85,f03a736c-6d2d-426c-992c-8410f6300054 -6a508faa-80a8-3246-9941-90d8cc8dec85,c485c909-1737-40ce-9d3b-e87ff1a71d47 -6a508faa-80a8-3246-9941-90d8cc8dec85,c91fc5a1-d0f0-4180-9fee-c4b6648301c5 -6a508faa-80a8-3246-9941-90d8cc8dec85,79d6daef-f8e6-415e-8fcc-95d7405b51ea -6a508faa-80a8-3246-9941-90d8cc8dec85,c3c9cb37-97b4-4b1f-a680-c1b0191acf2e -6a508faa-80a8-3246-9941-90d8cc8dec85,619b0966-f871-4fcc-88d2-a4e2299b1b04 -6a508faa-80a8-3246-9941-90d8cc8dec85,7d516385-57a2-4a99-a638-6312b1fbd796 -6a508faa-80a8-3246-9941-90d8cc8dec85,279c91f6-b6e3-4209-b552-9657b90bdf4a -6a508faa-80a8-3246-9941-90d8cc8dec85,561f00d7-e057-4581-b0b5-416031106aa1 -6a508faa-80a8-3246-9941-90d8cc8dec85,19c2aeee-2dd5-4f9d-bf46-1d909e432d1c -6a508faa-80a8-3246-9941-90d8cc8dec85,4a29211e-d5b7-4d3f-95be-3977f4f36f46 -6a508faa-80a8-3246-9941-90d8cc8dec85,9f7ad65b-ff9a-4fa6-8f0a-ff059fdd3e42 -6a508faa-80a8-3246-9941-90d8cc8dec85,d56de03a-8d32-4717-a2f4-e8631d2b8bf1 -6a508faa-80a8-3246-9941-90d8cc8dec85,cac58d31-643a-4508-8029-a905c7fa58b9 -6a508faa-80a8-3246-9941-90d8cc8dec85,45bfbddf-df66-4352-af03-a90c6c86972b -6a508faa-80a8-3246-9941-90d8cc8dec85,70bfee5e-e184-45dc-8439-8e77c9038661 -6a508faa-80a8-3246-9941-90d8cc8dec85,57b11633-9664-478d-8e58-d29714d0bdc7 -6a508faa-80a8-3246-9941-90d8cc8dec85,66eada3d-6b2c-4855-813b-fce2b3084be2 -6a508faa-80a8-3246-9941-90d8cc8dec85,4ec60e9b-bac1-4d01-b619-239b13960868 -6a508faa-80a8-3246-9941-90d8cc8dec85,361d796d-cc4d-4c2d-a615-c0d0fdf8ee64 -6a508faa-80a8-3246-9941-90d8cc8dec85,21eb05d3-6b96-4ae4-b4c9-7b5ffcce9097 -6a508faa-80a8-3246-9941-90d8cc8dec85,01b52eb1-ec9e-4f6c-bd8a-0ebf6e9348a8 -6a508faa-80a8-3246-9941-90d8cc8dec85,3bacbdaa-a165-4a47-abf3-e0c1f5a7aea4 -6a508faa-80a8-3246-9941-90d8cc8dec85,d62d6f95-eca8-409b-931b-298e8abd2f1b -6a508faa-80a8-3246-9941-90d8cc8dec85,6e604e0b-e7c9-412b-a72b-404423bf13a0 -6a508faa-80a8-3246-9941-90d8cc8dec85,c23bd245-e6d1-4f1e-9431-5ec7c10bcddc -6a508faa-80a8-3246-9941-90d8cc8dec85,1e012059-a9e8-41fc-86e7-af75e85a5f84 -6a508faa-80a8-3246-9941-90d8cc8dec85,f53aa666-2ce0-4e73-a0d1-1e32faa8d4ab -6a508faa-80a8-3246-9941-90d8cc8dec85,c562a505-cb32-489e-8414-dfb7a41449e7 -6a508faa-80a8-3246-9941-90d8cc8dec85,acc16ea6-58fc-46c4-b662-8ca2d9a8092d -6a508faa-80a8-3246-9941-90d8cc8dec85,c97e325a-3731-41db-a645-690be07c6335 -6a508faa-80a8-3246-9941-90d8cc8dec85,85aece27-876f-433b-8b14-1fe6d102250d -6a508faa-80a8-3246-9941-90d8cc8dec85,7a3053fe-2d17-476d-9289-af736892dff4 -6a508faa-80a8-3246-9941-90d8cc8dec85,57ee50c5-ee88-4e4f-82b6-a85242296b4f -6a508faa-80a8-3246-9941-90d8cc8dec85,1ce6b82c-c1d0-40ff-92b6-b132a05b1a0b -6a508faa-80a8-3246-9941-90d8cc8dec85,ccfcdada-4b45-4872-b7c3-2d2448b6f9db -6a508faa-80a8-3246-9941-90d8cc8dec85,b773b78d-34e9-4830-9641-82a3b4aebda6 -6a508faa-80a8-3246-9941-90d8cc8dec85,0a5a561d-5903-47f5-995b-89e47205e59e -6a508faa-80a8-3246-9941-90d8cc8dec85,9deb9b7b-5a56-4623-ad40-a4da9354b04b -6a508faa-80a8-3246-9941-90d8cc8dec85,daa851dc-c4e8-4092-b54c-20d6f3bf6f7b -6a508faa-80a8-3246-9941-90d8cc8dec85,218728ea-47b1-4dba-8268-9a975aac8387 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b1ac3fa-8e82-44b8-8b7d-61d03f420483 -6a508faa-80a8-3246-9941-90d8cc8dec85,2f490b7c-1132-4c5e-988d-1cb9ef11d29b -6a508faa-80a8-3246-9941-90d8cc8dec85,24dcbed2-c0a2-4839-90dc-8a1a5f59b303 -6a508faa-80a8-3246-9941-90d8cc8dec85,fbefbac5-7b62-42a5-a50e-cd98a96993b6 -6a508faa-80a8-3246-9941-90d8cc8dec85,56f04e98-8553-4967-a776-0d9040b47a25 -6a508faa-80a8-3246-9941-90d8cc8dec85,b050d1b3-9d79-4289-9321-8961501f4d66 -6a508faa-80a8-3246-9941-90d8cc8dec85,6908de5b-d589-46e4-be6f-a9564027c863 -6a508faa-80a8-3246-9941-90d8cc8dec85,e397d9ee-251a-42db-880e-ad4982f2582b -6a508faa-80a8-3246-9941-90d8cc8dec85,50af44eb-c671-461f-9f21-de51f34c6ab7 -6a508faa-80a8-3246-9941-90d8cc8dec85,a42b85f2-0691-41e3-a44f-7b7d6d5865a5 -6a508faa-80a8-3246-9941-90d8cc8dec85,e14b3c12-b7a7-4bcb-9c00-aea65d78cd00 -6a508faa-80a8-3246-9941-90d8cc8dec85,38b408cd-657d-40ff-98a6-8f9cf491b890 -6a508faa-80a8-3246-9941-90d8cc8dec85,d7702dfa-2649-4063-8d38-9f54c69624ce -6a508faa-80a8-3246-9941-90d8cc8dec85,e4014aae-85bd-4643-a852-802ce5d8ae99 -6a508faa-80a8-3246-9941-90d8cc8dec85,618e5f17-de04-4f51-a765-fffc2b5d8643 -6a508faa-80a8-3246-9941-90d8cc8dec85,9cdb07d2-4f3a-4207-9064-05b5cb8c81ca -6a508faa-80a8-3246-9941-90d8cc8dec85,f90c63ca-a71f-4b5c-a221-bc662657caa3 -6a508faa-80a8-3246-9941-90d8cc8dec85,eb1b2bc6-22dd-424e-a0ec-8e2504017f31 -6a508faa-80a8-3246-9941-90d8cc8dec85,cfab2e99-8ee1-4cc1-95d3-e056f6994e51 -6a508faa-80a8-3246-9941-90d8cc8dec85,4674504c-7ab8-4791-b059-80c47399f413 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ef0e9e3-7786-42df-ae80-ed633853082c -6a508faa-80a8-3246-9941-90d8cc8dec85,977e9362-0db6-4f53-ab30-f25a598bb1cd -6a508faa-80a8-3246-9941-90d8cc8dec85,43bad3b2-9326-482d-a46a-00b3f0daa180 -6a508faa-80a8-3246-9941-90d8cc8dec85,9fd5503d-c02d-4da0-a84f-36ddd41bf081 -6a508faa-80a8-3246-9941-90d8cc8dec85,58fc1486-f467-4a02-9281-c19ce217d3f5 -6a508faa-80a8-3246-9941-90d8cc8dec85,98092ef6-cdf7-4bab-8a63-995a49711e13 -6a508faa-80a8-3246-9941-90d8cc8dec85,fc2022eb-94e4-4a89-8dfa-0044fdb97f71 -6a508faa-80a8-3246-9941-90d8cc8dec85,f62a0eb5-3f17-408b-b8c5-16942698f5b6 -6a508faa-80a8-3246-9941-90d8cc8dec85,899fb552-ee40-4568-8b1e-6d4f1236d5db -6a508faa-80a8-3246-9941-90d8cc8dec85,3a4cf867-da37-472e-b255-c1bfb8d9f2a7 -6a508faa-80a8-3246-9941-90d8cc8dec85,3de94eb1-04be-40ff-9674-6c11450e5801 -6a508faa-80a8-3246-9941-90d8cc8dec85,cbd5ea76-1b72-4854-87ab-7ae36894fb2a -6a508faa-80a8-3246-9941-90d8cc8dec85,c2658f5c-1236-4660-bfae-387af412ee7e -6a508faa-80a8-3246-9941-90d8cc8dec85,c9303250-44f9-43ad-9790-20a44e34e0b6 -6a508faa-80a8-3246-9941-90d8cc8dec85,3483d065-bf83-4e34-8a84-f3b839164fc6 -6a508faa-80a8-3246-9941-90d8cc8dec85,9b2b85ae-4b9b-47d2-92dd-d8d92abcedb2 -6a508faa-80a8-3246-9941-90d8cc8dec85,eac4ec4c-6df8-4af0-a6f1-9c8317422a85 -6a508faa-80a8-3246-9941-90d8cc8dec85,5e766c70-b19d-4df3-8559-08f6da4fd875 -6a508faa-80a8-3246-9941-90d8cc8dec85,e2ad2485-9319-412d-8821-79a4f9f5449c -6a508faa-80a8-3246-9941-90d8cc8dec85,4b39b8d6-d6cf-469e-9539-0cc01841f270 -6a508faa-80a8-3246-9941-90d8cc8dec85,9568e951-b3f9-4e53-ba1c-ccdcf6e5ddae -6a508faa-80a8-3246-9941-90d8cc8dec85,2910b1b8-51da-4b23-bc12-23121b616509 -6a508faa-80a8-3246-9941-90d8cc8dec85,774a1f47-5829-4a70-bb4e-90e1148fad45 -6a508faa-80a8-3246-9941-90d8cc8dec85,0cf0123c-2df8-4089-81f0-262ed80f5df3 -6a508faa-80a8-3246-9941-90d8cc8dec85,066ce29e-8152-4c29-8fc4-35aada2d9c1a -6a508faa-80a8-3246-9941-90d8cc8dec85,555cc36c-5103-4cf6-b28c-4d0f66e57ac8 -6a508faa-80a8-3246-9941-90d8cc8dec85,2b1be14f-d4a2-43d0-9592-09eea783cc25 -6a508faa-80a8-3246-9941-90d8cc8dec85,a5e22935-924a-47df-8f8d-6a388b94b016 -6a508faa-80a8-3246-9941-90d8cc8dec85,37965d33-029f-4b93-bdb1-32ac1781360f -6a508faa-80a8-3246-9941-90d8cc8dec85,885dc1fd-e862-48a8-afc6-686a24538bc0 -6a508faa-80a8-3246-9941-90d8cc8dec85,2ea14071-fb17-4299-baab-4a9418deba55 -6a508faa-80a8-3246-9941-90d8cc8dec85,07f6b4e9-cb91-42da-bf9d-3a949fbfd950 -6a508faa-80a8-3246-9941-90d8cc8dec85,8eef2865-0fc2-4358-8356-4fd70462c523 -6a508faa-80a8-3246-9941-90d8cc8dec85,15d7dca2-ffaf-4ecc-ab39-126b654321f5 -6a508faa-80a8-3246-9941-90d8cc8dec85,433bcfc3-9e9a-49ab-a12e-ee5f91f3bde5 -6a508faa-80a8-3246-9941-90d8cc8dec85,bcd65ef2-a36a-4d6f-b6fe-4f5d35aa42b5 -6a508faa-80a8-3246-9941-90d8cc8dec85,d900090f-a1fc-4303-b89f-0b1def71c782 -6a508faa-80a8-3246-9941-90d8cc8dec85,2b69edd1-361c-4490-93b5-7ad172785bb3 -6a508faa-80a8-3246-9941-90d8cc8dec85,6b786613-cb5e-476b-9f2e-dbde95502ff2 -6a508faa-80a8-3246-9941-90d8cc8dec85,2f0366aa-0a67-4e03-bb51-055da8654154 -6a508faa-80a8-3246-9941-90d8cc8dec85,342dc90c-3c14-4e41-88e3-7a8049da2d7f -6a508faa-80a8-3246-9941-90d8cc8dec85,ce37b48d-b803-43d9-ab39-3303124296cd -6a508faa-80a8-3246-9941-90d8cc8dec85,ccbff8ed-077e-4b75-ac23-7cbf3ddd37f9 -6a508faa-80a8-3246-9941-90d8cc8dec85,f0e78b7c-2e95-43a8-aba9-c373486a75d4 -6a508faa-80a8-3246-9941-90d8cc8dec85,f4ca103b-6d35-45b3-a69f-edffc611f821 -6a508faa-80a8-3246-9941-90d8cc8dec85,a1c544d8-e58b-4593-9018-c43e536dc219 -6a508faa-80a8-3246-9941-90d8cc8dec85,0e34548d-60a6-4620-b12b-8175bf4e0649 -6a508faa-80a8-3246-9941-90d8cc8dec85,aa321c5e-30cd-45b2-ae4a-0fb6ae367554 -6a508faa-80a8-3246-9941-90d8cc8dec85,f87ff0a9-8ff4-4cb3-bb80-ede45aabaecd -6a508faa-80a8-3246-9941-90d8cc8dec85,23a76d22-f343-40d0-9f10-6231238c0fe6 -6a508faa-80a8-3246-9941-90d8cc8dec85,b2ce647b-d972-41cc-9a93-ddf86e1bb12f -6a508faa-80a8-3246-9941-90d8cc8dec85,6c35c325-f6b0-473c-a774-61129c2e54f7 -6a508faa-80a8-3246-9941-90d8cc8dec85,538ae0ce-fc42-4ded-ad9f-91e66ee1121e -6a508faa-80a8-3246-9941-90d8cc8dec85,517f680f-cd20-44f1-9f26-6ed9e7b39296 -6a508faa-80a8-3246-9941-90d8cc8dec85,988d30cf-970b-4832-bd3c-e629ee9a33aa -6a508faa-80a8-3246-9941-90d8cc8dec85,641a8a5c-ccdf-489e-9f40-5c35fa39296e -6a508faa-80a8-3246-9941-90d8cc8dec85,78e56afe-74a0-4a27-a60d-231a951fe44c -6a508faa-80a8-3246-9941-90d8cc8dec85,b306c107-60d5-4f39-8239-3f7d073efb48 -6a508faa-80a8-3246-9941-90d8cc8dec85,9f3f358e-8f52-4eb7-b12d-f4afbef6eadf -6a508faa-80a8-3246-9941-90d8cc8dec85,7d0bb11a-b6e2-459b-89ce-e3a7aac822bc -6a508faa-80a8-3246-9941-90d8cc8dec85,992824ad-9139-4434-bd06-8c502103d526 -6a508faa-80a8-3246-9941-90d8cc8dec85,faa3997f-9980-4148-9a19-c797cbe0e8b5 -6a508faa-80a8-3246-9941-90d8cc8dec85,a6fef482-eb63-4a23-9a67-9fcf904ddfa3 -6a508faa-80a8-3246-9941-90d8cc8dec85,0d465fa2-3c2f-4a18-82d4-489fa52d2d32 -6a508faa-80a8-3246-9941-90d8cc8dec85,b610ff63-6ef3-4a5a-a45c-7d1e9d850bb8 -6a508faa-80a8-3246-9941-90d8cc8dec85,5fcd0ca3-9c04-4a16-bd25-1c8c953f0663 -6a508faa-80a8-3246-9941-90d8cc8dec85,122ecbc7-c751-425b-9c53-f7ecad18fa8f -6a508faa-80a8-3246-9941-90d8cc8dec85,58ff82de-cf57-4581-b3e4-02c5c17bc3dc -6a508faa-80a8-3246-9941-90d8cc8dec85,91d31bf8-4b7a-4248-9813-63b52ef6e4cf -6a508faa-80a8-3246-9941-90d8cc8dec85,dc6cccb0-8e75-4354-8239-2b7f4fd9fc3a -6a508faa-80a8-3246-9941-90d8cc8dec85,cc52c4cb-0bbb-488b-80e4-ddd97e64d42e -6a508faa-80a8-3246-9941-90d8cc8dec85,fb25dcc1-f582-4201-9f55-d7ad8794b9b3 -6a508faa-80a8-3246-9941-90d8cc8dec85,dd0125fc-96ee-4634-96a8-2a932ea4c0e8 -6a508faa-80a8-3246-9941-90d8cc8dec85,19e104bb-950c-4616-bb41-2753678a0ca0 -6a508faa-80a8-3246-9941-90d8cc8dec85,ffa8cba4-d91f-48b2-9e99-a6724fb511d8 -6a508faa-80a8-3246-9941-90d8cc8dec85,8e6f33c9-e479-4052-91c0-d0137bfb3d0c -6a508faa-80a8-3246-9941-90d8cc8dec85,59e7effa-bf0c-403f-9700-aa0681d565a7 -6a508faa-80a8-3246-9941-90d8cc8dec85,c293f440-bc9b-4f1f-8db8-141d5b479490 -6a508faa-80a8-3246-9941-90d8cc8dec85,9caaba82-457e-427e-8387-dea403501e6d -6a508faa-80a8-3246-9941-90d8cc8dec85,3b9c582e-2d14-44a2-8110-662e1f1f7734 -6a508faa-80a8-3246-9941-90d8cc8dec85,3672e186-cb15-438f-b7c8-414206b99c9c -6a508faa-80a8-3246-9941-90d8cc8dec85,d9b0d3f2-ffdd-470a-a959-b3e4407ad094 -6a508faa-80a8-3246-9941-90d8cc8dec85,9361254f-0f9d-45a0-b686-c81e26976833 -6a508faa-80a8-3246-9941-90d8cc8dec85,59738c32-45dc-4f6f-ad99-2fb186a9f704 -6a508faa-80a8-3246-9941-90d8cc8dec85,f10b6e2d-85a2-4c25-9ae2-14dcfaeef8b4 -6a508faa-80a8-3246-9941-90d8cc8dec85,251898f4-8aa2-4c19-be67-1925e854ab75 -6a508faa-80a8-3246-9941-90d8cc8dec85,9692d2b7-f1cf-44a1-a9ac-cab1a2c2e7d4 -6a508faa-80a8-3246-9941-90d8cc8dec85,a8c83110-056a-4c03-99f2-94a3a55a6765 -6a508faa-80a8-3246-9941-90d8cc8dec85,960ea918-ef7c-4f5f-84dd-98e10a10c51f -6a508faa-80a8-3246-9941-90d8cc8dec85,73e0599e-5844-44b0-a347-ae7e3d442898 -6a508faa-80a8-3246-9941-90d8cc8dec85,4cbdcd76-a6bc-4de8-a7ca-5ab72abb79f9 -6a508faa-80a8-3246-9941-90d8cc8dec85,1d8ff927-7428-47c6-ac3a-ff31c7c03c49 -6a508faa-80a8-3246-9941-90d8cc8dec85,83098ee3-cf89-43ef-82fa-3d11d2cedbb1 -6a508faa-80a8-3246-9941-90d8cc8dec85,31dddfb9-8355-4736-931f-e74a1c61e260 -6a508faa-80a8-3246-9941-90d8cc8dec85,de7657d7-2c5f-402b-b7c4-30a0b4ae60e6 -6a508faa-80a8-3246-9941-90d8cc8dec85,be7f9dc5-d020-42bd-85ab-7985215354e5 -6a508faa-80a8-3246-9941-90d8cc8dec85,dca7485b-eae4-468e-98b3-65bece6a93cb -6a508faa-80a8-3246-9941-90d8cc8dec85,49c25dd3-09fc-4142-a761-bf42a5bd4131 -6a508faa-80a8-3246-9941-90d8cc8dec85,7375cdae-e018-49cb-801c-36e46769af4c -6a508faa-80a8-3246-9941-90d8cc8dec85,f2678b66-dc40-4070-94da-046592c2d646 -6a508faa-80a8-3246-9941-90d8cc8dec85,96f1bca4-24a2-46ed-aaa9-ce4f831d87b5 -6a508faa-80a8-3246-9941-90d8cc8dec85,b65043d2-5f54-40f4-a15a-655035a4f97f -6a508faa-80a8-3246-9941-90d8cc8dec85,e1ff3bd7-3435-49ec-8b6c-d5b22ddc3b47 -6a508faa-80a8-3246-9941-90d8cc8dec85,9b3b0918-cebf-4a07-9ab5-9627187a4cc7 -6a508faa-80a8-3246-9941-90d8cc8dec85,1599ddf5-5693-47f0-a837-49f8267934da -6a508faa-80a8-3246-9941-90d8cc8dec85,0c4dc58c-5dc9-4047-8546-4bff2a460ed0 -6a508faa-80a8-3246-9941-90d8cc8dec85,ccd78648-2e1c-4287-961e-69a7c1d1e76b -6a508faa-80a8-3246-9941-90d8cc8dec85,a687ca77-3758-47ee-a688-0d96f7a49b5a -6a508faa-80a8-3246-9941-90d8cc8dec85,e7d7a39f-d9d2-44d5-bdd1-372e631bfd4e -6a508faa-80a8-3246-9941-90d8cc8dec85,35158126-6fcb-4586-a3a6-55d83b10a96a -6a508faa-80a8-3246-9941-90d8cc8dec85,a7b46158-021b-4ce7-be7a-66f0dd0cfdaf -6a508faa-80a8-3246-9941-90d8cc8dec85,dbad5a9b-8c38-41cd-b583-81d37830c7aa -6a508faa-80a8-3246-9941-90d8cc8dec85,33e01fbc-5b29-40da-8fb3-b9c37b5eba64 -6a508faa-80a8-3246-9941-90d8cc8dec85,a0292bc9-aa44-4843-a56b-8e84db1ea610 -6a508faa-80a8-3246-9941-90d8cc8dec85,96950b5c-14ff-4f45-b59c-50740514a75c -6a508faa-80a8-3246-9941-90d8cc8dec85,2a18ea0e-ef60-470d-9da6-3f0346487300 -6a508faa-80a8-3246-9941-90d8cc8dec85,61515d94-2eee-478d-a0d2-27bbeaa6bed3 -6a508faa-80a8-3246-9941-90d8cc8dec85,3c813eb7-9f59-4998-b961-4fe452cf9ab5 -6a508faa-80a8-3246-9941-90d8cc8dec85,6c491cc5-7c75-450c-a445-eae8e189d29e -6a508faa-80a8-3246-9941-90d8cc8dec85,6b6f85ed-1b25-40b4-8291-e87301196457 -6a508faa-80a8-3246-9941-90d8cc8dec85,91445ec1-2b8b-47b4-801f-aec1d421454e -6a508faa-80a8-3246-9941-90d8cc8dec85,33417abc-ca3c-47c4-a7c3-e91cba2361ae -6a508faa-80a8-3246-9941-90d8cc8dec85,42e51cc8-3d65-44d4-b52c-da3967936deb -6a508faa-80a8-3246-9941-90d8cc8dec85,ccf4aedc-a92a-4a68-8181-8f0f7a1f85a6 -6a508faa-80a8-3246-9941-90d8cc8dec85,7d929503-38f2-4d96-81ca-b7d2c9aefd03 -6a508faa-80a8-3246-9941-90d8cc8dec85,b25e6ff4-e2f5-4673-8385-13bcf755c4a9 -6a508faa-80a8-3246-9941-90d8cc8dec85,de3e3f99-d397-4ca1-946a-1ca3c9e957da -6a508faa-80a8-3246-9941-90d8cc8dec85,3d24aef4-7683-450f-ac2d-0a332c318a0d -6a508faa-80a8-3246-9941-90d8cc8dec85,25147e4a-0c98-4b78-bdc7-83a6535e4059 -6a508faa-80a8-3246-9941-90d8cc8dec85,271e14fe-9152-496b-9bc1-f8b3a33628fb -6a508faa-80a8-3246-9941-90d8cc8dec85,416b5b69-cf8c-4c92-baec-b07f4415a5ec -6a508faa-80a8-3246-9941-90d8cc8dec85,7f9ea55a-0330-48a3-80bc-f196a5c507fc -6a508faa-80a8-3246-9941-90d8cc8dec85,482a3817-e02d-4795-b675-c14b442c8b78 -6a508faa-80a8-3246-9941-90d8cc8dec85,7faa8428-f03f-4e85-99f2-3c5bdf655a13 -6a508faa-80a8-3246-9941-90d8cc8dec85,c8272f26-199a-4cb9-a7cf-111e9f354f3c -6a508faa-80a8-3246-9941-90d8cc8dec85,85fff5ac-1481-480d-955e-88940a1f4dcd -6a508faa-80a8-3246-9941-90d8cc8dec85,07561d88-41a4-493e-83d9-109d66efaf96 -6a508faa-80a8-3246-9941-90d8cc8dec85,114cd6ba-60af-4de6-aecd-8f398af8ffc3 -6a508faa-80a8-3246-9941-90d8cc8dec85,2aaf1b82-1240-46f5-8c0a-fbb78e9b210b -6a508faa-80a8-3246-9941-90d8cc8dec85,017e36bc-46e4-4af8-801c-787782d5aba7 -6a508faa-80a8-3246-9941-90d8cc8dec85,2c6319e7-5718-4b3a-b004-cf8904b30e9d -6a508faa-80a8-3246-9941-90d8cc8dec85,eb228a54-d478-4062-93ec-f3d457e77c40 -6a508faa-80a8-3246-9941-90d8cc8dec85,7a44e87e-3e2f-4d3c-a6a8-3a11d14e3580 -6a508faa-80a8-3246-9941-90d8cc8dec85,ed7a9216-2126-4a56-b342-69c538de2c81 -6a508faa-80a8-3246-9941-90d8cc8dec85,a9c2ce52-f3a0-4ae3-a6b5-fabc2ae3eda2 -6a508faa-80a8-3246-9941-90d8cc8dec85,d98f6905-d68d-4344-88e2-2a122eb4c785 -6a508faa-80a8-3246-9941-90d8cc8dec85,9e792e5a-a35a-4ad9-8677-90ad921caf7b -6a508faa-80a8-3246-9941-90d8cc8dec85,f2c49634-3548-4d32-8ca7-86f72581a6f6 -6a508faa-80a8-3246-9941-90d8cc8dec85,75fc3503-6374-430a-8222-bafc925f7f6c -6a508faa-80a8-3246-9941-90d8cc8dec85,3347dfaa-e6ff-4280-ab56-f84e4e75472e -6a508faa-80a8-3246-9941-90d8cc8dec85,c5cf9823-fa87-43d5-bc69-3091c58c00bc -6a508faa-80a8-3246-9941-90d8cc8dec85,291a2fa5-94a2-4c10-aa7a-3906d5c771f6 -6a508faa-80a8-3246-9941-90d8cc8dec85,136437d0-9954-4fc2-8d7b-08663f75418c -6a508faa-80a8-3246-9941-90d8cc8dec85,fa8cb2c6-89aa-4598-b2a4-c1a2ea37dad9 -6a508faa-80a8-3246-9941-90d8cc8dec85,e325b22c-c7c9-4c28-9a35-f305d7efe439 -6a508faa-80a8-3246-9941-90d8cc8dec85,21f0a0df-51e4-44eb-bf3b-d75cc1f1193f -6a508faa-80a8-3246-9941-90d8cc8dec85,561928e3-a3e7-40a0-b8fb-a60843c27202 -6a508faa-80a8-3246-9941-90d8cc8dec85,168907a6-2f54-419a-9529-a45910768133 -6a508faa-80a8-3246-9941-90d8cc8dec85,e500aa73-2e38-4166-906c-9c4879cd07e1 -6a508faa-80a8-3246-9941-90d8cc8dec85,a3581efe-9c3d-4f43-93f6-5b40062fa44c -6a508faa-80a8-3246-9941-90d8cc8dec85,e40566eb-4bfe-457c-8458-47f3e6c006a4 -6a508faa-80a8-3246-9941-90d8cc8dec85,7f404b17-86aa-4043-9c10-e1f21a43154d -6a508faa-80a8-3246-9941-90d8cc8dec85,733c6491-75a0-488f-8b12-4360ace0c1c2 -6a508faa-80a8-3246-9941-90d8cc8dec85,474a8a4a-e080-4c4b-b2db-86d84e5fdaa5 -6a508faa-80a8-3246-9941-90d8cc8dec85,ac612498-b96a-4e1f-a8c1-363da2a56359 -6a508faa-80a8-3246-9941-90d8cc8dec85,5dd211b2-2bf4-46ed-9d39-65fe8b8194af -6a508faa-80a8-3246-9941-90d8cc8dec85,abb0240e-ea0e-438c-b887-d9f44928e7f4 -6a508faa-80a8-3246-9941-90d8cc8dec85,bdcdc3e8-100c-4037-b9af-c0074d2da7e1 -6a508faa-80a8-3246-9941-90d8cc8dec85,18b7628a-5c9c-45f5-9ba2-8c1d91f8e745 -6a508faa-80a8-3246-9941-90d8cc8dec85,226df84d-9075-4257-81ae-1ebb2473e193 -6a508faa-80a8-3246-9941-90d8cc8dec85,12f86120-01cb-4c53-ad97-4914269257ff -6a508faa-80a8-3246-9941-90d8cc8dec85,80e1f509-7fa9-49a1-9bb7-630dbf818544 -6a508faa-80a8-3246-9941-90d8cc8dec85,2ddd94b7-7bf0-4d03-bacd-e3219baba1df -6a508faa-80a8-3246-9941-90d8cc8dec85,7e0734b7-ffd9-4e80-a592-15d1f1d33a62 -6a508faa-80a8-3246-9941-90d8cc8dec85,9706f844-7403-4e49-b38d-78985552a03e -6a508faa-80a8-3246-9941-90d8cc8dec85,3106bd9b-3f6c-4c49-b3b3-6e2bdcaa2194 -6a508faa-80a8-3246-9941-90d8cc8dec85,d13274eb-5926-4af3-ab5f-69f5796c6628 -6a508faa-80a8-3246-9941-90d8cc8dec85,4a18455a-37db-4798-9456-6fe02f4663d5 -6a508faa-80a8-3246-9941-90d8cc8dec85,ad3a96b9-32de-4b98-82c1-0a0fe2828bd5 -6a508faa-80a8-3246-9941-90d8cc8dec85,75988206-cc02-42b8-8ed6-f803150f00d1 -6a508faa-80a8-3246-9941-90d8cc8dec85,1fd00564-e4eb-4419-8ba3-2cfd3037b48f -6a508faa-80a8-3246-9941-90d8cc8dec85,80057adf-d358-496c-9594-cf14ca3209b3 -6a508faa-80a8-3246-9941-90d8cc8dec85,576f25c2-77d6-4e5b-adaf-b790bfb62275 -6a508faa-80a8-3246-9941-90d8cc8dec85,52985590-d55e-4c27-bf33-4f6e844d2dce -6a508faa-80a8-3246-9941-90d8cc8dec85,4feab31e-5595-4c7a-a7d4-4c8901cfdfab -6a508faa-80a8-3246-9941-90d8cc8dec85,f9b378eb-1572-4b26-b635-108baa471602 -6a508faa-80a8-3246-9941-90d8cc8dec85,f882ad1f-60e7-41e5-87f9-c2a67f41460c -6a508faa-80a8-3246-9941-90d8cc8dec85,e21058d4-81a2-4198-ad21-c1a6fee9a24e -6a508faa-80a8-3246-9941-90d8cc8dec85,7f2e10aa-6b81-457b-8949-aa690fc5bd49 -6a508faa-80a8-3246-9941-90d8cc8dec85,371ae880-7e1e-4cb1-9a8c-9d270255ac18 -6a508faa-80a8-3246-9941-90d8cc8dec85,9788ea75-2a9c-4fa3-a1f1-ecb0dcd87b1b -6a508faa-80a8-3246-9941-90d8cc8dec85,b9d08a91-1f2a-468f-901d-040b835009c8 -6a508faa-80a8-3246-9941-90d8cc8dec85,fad2c24f-8b24-487d-a568-54c901d54bab -6a508faa-80a8-3246-9941-90d8cc8dec85,bdbc0b88-398a-417a-a4ed-3927eb8b7dde -6a508faa-80a8-3246-9941-90d8cc8dec85,8535324f-b4cb-40fd-bb8d-44f0bbf5d13d -6a508faa-80a8-3246-9941-90d8cc8dec85,20352992-316b-460f-b802-63e19b8813d3 -6a508faa-80a8-3246-9941-90d8cc8dec85,902f57d4-f296-4ccc-bdcf-2590c25c25f2 -6a508faa-80a8-3246-9941-90d8cc8dec85,7aed1f8c-aed0-4acb-9510-a45dc924e12e -6a508faa-80a8-3246-9941-90d8cc8dec85,429a5312-63b7-4d10-a6aa-9c4ac1083976 -6a508faa-80a8-3246-9941-90d8cc8dec85,c2526af9-b586-416c-b866-99e88bf55c83 -6a508faa-80a8-3246-9941-90d8cc8dec85,5e1d2b7c-1312-4e01-92d3-2c54d6b9ae97 -6a508faa-80a8-3246-9941-90d8cc8dec85,a67a40b2-6212-42b2-ba4c-3fe9df8580ec -6a508faa-80a8-3246-9941-90d8cc8dec85,b2264910-e98d-4e85-a76c-3878f288afd7 -6a508faa-80a8-3246-9941-90d8cc8dec85,8f2f69ae-a50b-4a26-9d36-b1c25d4c6038 -6a508faa-80a8-3246-9941-90d8cc8dec85,9e1fcbf7-e2a3-4dbf-99e1-683f475ebc8b -6a508faa-80a8-3246-9941-90d8cc8dec85,9b657a37-80df-4a6e-914f-61842d9feea9 -6a508faa-80a8-3246-9941-90d8cc8dec85,11a1a400-cf15-4193-a6d2-bd43a8379571 -6a508faa-80a8-3246-9941-90d8cc8dec85,3f5b734b-5c78-4f13-94c1-c10c72a80686 -6a508faa-80a8-3246-9941-90d8cc8dec85,d6d52790-1b6e-402e-8389-68ad30a02ff9 -6a508faa-80a8-3246-9941-90d8cc8dec85,e16e0840-3945-4770-84c0-1f3b02e98e43 -6a508faa-80a8-3246-9941-90d8cc8dec85,6e5cecec-566c-4ec1-b991-436e4cde2e46 -6a508faa-80a8-3246-9941-90d8cc8dec85,c7094d8d-7acc-497b-9c1c-4749c6a68893 -6a508faa-80a8-3246-9941-90d8cc8dec85,3611c6bc-b06c-4a52-bc5a-b88ae9849eb6 -6a508faa-80a8-3246-9941-90d8cc8dec85,5e6a7dcc-2b59-40d0-8923-5dded01e9241 -6a508faa-80a8-3246-9941-90d8cc8dec85,3ae212ad-ee11-45a9-a190-e9138fbc578e -6a508faa-80a8-3246-9941-90d8cc8dec85,15cac2cf-65bc-4c39-9424-c6794f0e867a -6a508faa-80a8-3246-9941-90d8cc8dec85,3784bbda-77a5-4372-89f5-5e8c365ebaab -6a508faa-80a8-3246-9941-90d8cc8dec85,d0fc6373-eb99-4327-ac3e-97188fef049f -6a508faa-80a8-3246-9941-90d8cc8dec85,cef5b272-b307-4e91-8068-280725c446ac -6a508faa-80a8-3246-9941-90d8cc8dec85,692c841c-6b69-403d-a6e4-675e89225f79 -6a508faa-80a8-3246-9941-90d8cc8dec85,80bbb348-1013-4f2f-bf00-ead86cf5ab17 -6a508faa-80a8-3246-9941-90d8cc8dec85,f015b2ee-7d89-494a-9b1f-9dc92372c473 -6a508faa-80a8-3246-9941-90d8cc8dec85,d15d58a8-d1e1-4151-8db2-c232489c84eb -6a508faa-80a8-3246-9941-90d8cc8dec85,fea8a039-36d8-442d-beaf-cdc7b472e0d7 -6a508faa-80a8-3246-9941-90d8cc8dec85,ba88be36-e500-4e54-a974-dba2591a26b2 -6a508faa-80a8-3246-9941-90d8cc8dec85,2f16cb51-09db-43c4-a331-f7737d078145 -6a508faa-80a8-3246-9941-90d8cc8dec85,d7a0e751-0f06-4871-862b-83b2e149cd3b -6a508faa-80a8-3246-9941-90d8cc8dec85,14f9ba7a-f752-494e-94b8-a6fff4967621 -6a508faa-80a8-3246-9941-90d8cc8dec85,44a6cc3d-83cb-44d4-bab8-15ab50fd1203 -6a508faa-80a8-3246-9941-90d8cc8dec85,29837565-93d2-4fdc-b8e4-c465a0071992 -6a508faa-80a8-3246-9941-90d8cc8dec85,4a5b4a85-d4a2-45b9-a75e-27d2e8545603 -6a508faa-80a8-3246-9941-90d8cc8dec85,6724d91e-7562-493d-a22c-a6641d0519cb -6a508faa-80a8-3246-9941-90d8cc8dec85,49779b4e-e327-4512-8dcd-721f2768657e -6a508faa-80a8-3246-9941-90d8cc8dec85,28c8612a-0465-4f85-a670-4c33b340cdc2 -6a508faa-80a8-3246-9941-90d8cc8dec85,acf93cf2-36d7-4cbd-a6dc-5209073eb558 -6a508faa-80a8-3246-9941-90d8cc8dec85,89aa70a8-fccc-49e0-bab0-2af9331915cc -6a508faa-80a8-3246-9941-90d8cc8dec85,c3cac8b5-a45f-44fa-97d0-6c6952831807 -6a508faa-80a8-3246-9941-90d8cc8dec85,8c03183d-e2da-4820-8c1a-471b08ce7936 -6a508faa-80a8-3246-9941-90d8cc8dec85,85343b4b-1547-4fcd-b768-efca220aedec -6a508faa-80a8-3246-9941-90d8cc8dec85,ffd371ee-233d-4c61-9006-64a34d062011 -6a508faa-80a8-3246-9941-90d8cc8dec85,f25a26b7-cb4b-465a-a524-2fdf7a5c834e -6a508faa-80a8-3246-9941-90d8cc8dec85,d09d3606-d7a5-441d-a7e5-8eb7585aed34 -6a508faa-80a8-3246-9941-90d8cc8dec85,d0b5b361-b089-40a5-99d4-d5af1c38bbac -6a508faa-80a8-3246-9941-90d8cc8dec85,dcbd8dd6-dba4-40c7-be6b-c9e3fc5275aa -6a508faa-80a8-3246-9941-90d8cc8dec85,4fd83ba3-8646-4605-ab3c-a17ff387aa2d -6a508faa-80a8-3246-9941-90d8cc8dec85,1b52b37b-5210-459f-a60c-4a418ebc8c4a -6a508faa-80a8-3246-9941-90d8cc8dec85,db1e3076-ca62-4cb2-96a6-38356de8f81c -6a508faa-80a8-3246-9941-90d8cc8dec85,40cd0e2e-b36b-4826-9ea3-36cafa9660ff -6a508faa-80a8-3246-9941-90d8cc8dec85,1046343a-f56e-46ee-8160-e51295835a7b -6a508faa-80a8-3246-9941-90d8cc8dec85,a0f0cdef-1a7d-4203-9f71-a310647ecc0a -6a508faa-80a8-3246-9941-90d8cc8dec85,f8e263e0-6cc8-4a39-8e3a-6c08f186a3dc -6a508faa-80a8-3246-9941-90d8cc8dec85,ac017a59-7279-4778-9ec6-bc64853c0ba2 -6a508faa-80a8-3246-9941-90d8cc8dec85,ff4a5e51-862f-4664-bac1-fa77242864eb -6a508faa-80a8-3246-9941-90d8cc8dec85,74c5309d-c33c-4c01-825d-0420812bcd64 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ea45a66-ac33-4e42-b5cd-adaa0a7e9037 -6a508faa-80a8-3246-9941-90d8cc8dec85,a91fdb00-e7fb-493c-9110-8f40d01bc58f -6a508faa-80a8-3246-9941-90d8cc8dec85,d516d1f7-7d04-4da0-bef3-d85a8323540b -6a508faa-80a8-3246-9941-90d8cc8dec85,6af06ce0-c066-4a41-8b88-23f7e1ad6788 -6a508faa-80a8-3246-9941-90d8cc8dec85,220baadb-3235-4c75-a320-e8ce15d237fa -6a508faa-80a8-3246-9941-90d8cc8dec85,bf7b9717-8a4c-4561-bb40-a6e2c2f90c91 -6a508faa-80a8-3246-9941-90d8cc8dec85,cfe5acc5-3822-49ad-82ef-2ff58a984093 -6a508faa-80a8-3246-9941-90d8cc8dec85,2c126085-32f3-430a-a662-1255183e89d6 -6a508faa-80a8-3246-9941-90d8cc8dec85,8aa1c24d-4bb3-49fc-8b64-2949b44d939d -6a508faa-80a8-3246-9941-90d8cc8dec85,163a582f-1bb0-47a6-9487-766b73938709 -6a508faa-80a8-3246-9941-90d8cc8dec85,2ce6c7f6-555a-4c7e-8686-0df5306f588a -6a508faa-80a8-3246-9941-90d8cc8dec85,a16cfad4-4625-4d5d-b30c-c00cacd401a2 -6a508faa-80a8-3246-9941-90d8cc8dec85,95851d43-0c1c-4f4f-adc2-2c219d265c75 -6a508faa-80a8-3246-9941-90d8cc8dec85,ce5a017c-ef0b-43c8-9e28-9d71ea01605a -6a508faa-80a8-3246-9941-90d8cc8dec85,1bc6ff8d-5a6f-473f-8f44-3311f13680d4 -6a508faa-80a8-3246-9941-90d8cc8dec85,e2373cce-586d-4c02-a03a-e3ae613231bf -6a508faa-80a8-3246-9941-90d8cc8dec85,74f47c95-be99-4b85-b4c8-d68987a33c37 -6a508faa-80a8-3246-9941-90d8cc8dec85,f6b9f6aa-1e79-4e86-84be-04283216340e -6a508faa-80a8-3246-9941-90d8cc8dec85,4dda62c9-dd42-420d-a004-86cc68aebf5c -6a508faa-80a8-3246-9941-90d8cc8dec85,7d2cf051-95a1-4e58-bc7a-ef226868bb35 -6a508faa-80a8-3246-9941-90d8cc8dec85,47db1d2a-7422-4926-ab12-df04129fd845 -6a508faa-80a8-3246-9941-90d8cc8dec85,316bd8c8-8bad-413f-940f-fc649ee83345 -6a508faa-80a8-3246-9941-90d8cc8dec85,b8a0a558-833f-4299-a3d4-2c707038a40a -6a508faa-80a8-3246-9941-90d8cc8dec85,b5e5af58-e69d-4dbe-a7c2-7df7bf6003b6 -6a508faa-80a8-3246-9941-90d8cc8dec85,532127d4-77ee-4c21-9228-56245efd8388 -6a508faa-80a8-3246-9941-90d8cc8dec85,178822d4-1b25-4c86-8f94-a65dc509766b -6a508faa-80a8-3246-9941-90d8cc8dec85,058f9029-cf92-4084-9b49-7e1c14daf48a -6a508faa-80a8-3246-9941-90d8cc8dec85,e5db7da2-8a6f-4b7e-a596-85df1034c455 -6a508faa-80a8-3246-9941-90d8cc8dec85,29f68a9d-3e59-4bc0-920c-155ae3a29fcb -6a508faa-80a8-3246-9941-90d8cc8dec85,c9d072b7-3137-436a-8a2b-79e4583950aa -6a508faa-80a8-3246-9941-90d8cc8dec85,80ab2b8d-82ad-40e1-91d6-5c09a69451df -6a508faa-80a8-3246-9941-90d8cc8dec85,520de724-f2bf-4367-9f12-45f4acad2286 -6a508faa-80a8-3246-9941-90d8cc8dec85,b795d7f5-546f-460e-9602-95507d167632 -6a508faa-80a8-3246-9941-90d8cc8dec85,376d62a8-168c-48e7-8d51-3632e1141adc -6a508faa-80a8-3246-9941-90d8cc8dec85,c7274e41-4fa6-4370-a833-1c26d5cead3e -6a508faa-80a8-3246-9941-90d8cc8dec85,c673adff-4b78-46ac-a56f-280c0470b9ea -6a508faa-80a8-3246-9941-90d8cc8dec85,037c9624-e908-460d-a2f8-f3c4b23cec16 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ed7fce9-0b45-4efd-9a84-887fe0b95db1 -6a508faa-80a8-3246-9941-90d8cc8dec85,4147da41-6909-46a7-a859-c5ae0a0cbe23 -6a508faa-80a8-3246-9941-90d8cc8dec85,de2ac499-6fe3-47c2-bab1-00e74aee89e3 -6a508faa-80a8-3246-9941-90d8cc8dec85,d50e5124-0153-4ef4-bfe3-df1c1f1fcf89 -6a508faa-80a8-3246-9941-90d8cc8dec85,846e0c9a-3cf4-43c3-b2b0-ee9915e72218 -6a508faa-80a8-3246-9941-90d8cc8dec85,28196f43-1c98-48ca-8cbe-95ff1693918b -6a508faa-80a8-3246-9941-90d8cc8dec85,238672a3-a0c1-4a16-bcf5-a142a0bb04ef -6a508faa-80a8-3246-9941-90d8cc8dec85,0ba28291-8771-4403-9f57-dabae7ddf3a4 -6a508faa-80a8-3246-9941-90d8cc8dec85,bc4807e8-50aa-47c2-9278-219f48f89e2e -6a508faa-80a8-3246-9941-90d8cc8dec85,49703fcd-7833-4b2d-8fa3-1b4ae2828658 -6a508faa-80a8-3246-9941-90d8cc8dec85,bcadb830-635b-43f9-ac71-563b578f9ac6 -6a508faa-80a8-3246-9941-90d8cc8dec85,407f4132-c1ca-4576-906c-a5c7060c3b90 -6a508faa-80a8-3246-9941-90d8cc8dec85,ca479df6-aa77-482e-b859-f54550bf5b95 -6a508faa-80a8-3246-9941-90d8cc8dec85,1f520b1f-a934-4d6e-b686-f1768c82af31 -6a508faa-80a8-3246-9941-90d8cc8dec85,f0dda40d-2309-4d94-8371-067f5c8072ae -6a508faa-80a8-3246-9941-90d8cc8dec85,f00bd575-72b9-49d5-bd06-152ecf275000 -6a508faa-80a8-3246-9941-90d8cc8dec85,2a1f664b-d887-41c8-acb8-27f074b30f66 -6a508faa-80a8-3246-9941-90d8cc8dec85,c28eb868-5ba3-4e75-9cb4-6dc026f54bf4 -6a508faa-80a8-3246-9941-90d8cc8dec85,d31c4188-4e3f-4d7e-88b1-f7f330f1f6be -6a508faa-80a8-3246-9941-90d8cc8dec85,e54b9ad2-a5c3-4da7-b819-7dec93d07fce -6a508faa-80a8-3246-9941-90d8cc8dec85,a516d535-0116-411b-99a5-afee079671f5 -6a508faa-80a8-3246-9941-90d8cc8dec85,c36e9a46-6508-4ff7-9f09-6225708256bf -6a508faa-80a8-3246-9941-90d8cc8dec85,05a2638b-dc53-43a4-8b62-1997408c9ec5 -6a508faa-80a8-3246-9941-90d8cc8dec85,250cb8ee-c093-4668-9d50-1878c55fb5e2 -6a508faa-80a8-3246-9941-90d8cc8dec85,08966480-9238-408a-9d87-a7f6fb649441 -6a508faa-80a8-3246-9941-90d8cc8dec85,d4835ef2-201b-47ba-a8fc-438553c273b9 -6a508faa-80a8-3246-9941-90d8cc8dec85,e4972a48-94a3-44fe-9ac7-09a0fa3d9a73 -6a508faa-80a8-3246-9941-90d8cc8dec85,f5942bf2-f844-4976-a25a-bc139dd59823 -6a508faa-80a8-3246-9941-90d8cc8dec85,cee771ac-3505-4121-8834-0ea102ead79d -6a508faa-80a8-3246-9941-90d8cc8dec85,4841792f-1ba7-49c1-9bbc-9ec7ce6332dd -6a508faa-80a8-3246-9941-90d8cc8dec85,5b9afe67-cef6-4d91-849e-d207b4a1696d -6a508faa-80a8-3246-9941-90d8cc8dec85,df776b7d-ebc6-478f-9cd1-eea7e4da4353 -6a508faa-80a8-3246-9941-90d8cc8dec85,859976e1-123d-4e20-8b37-819fd63909a0 -6a508faa-80a8-3246-9941-90d8cc8dec85,fbd477eb-4df8-4a07-ba96-160f16e11a30 -6a508faa-80a8-3246-9941-90d8cc8dec85,eabd08b1-1db5-43fa-b28a-a3ea19250de1 -6a508faa-80a8-3246-9941-90d8cc8dec85,8778c053-1226-4785-b1ad-056b59e2b5e9 -6a508faa-80a8-3246-9941-90d8cc8dec85,a7e16ae0-d6a8-42da-bca2-1da7e02cdc09 -6a508faa-80a8-3246-9941-90d8cc8dec85,381df8b2-b6d2-4c19-a063-1876f9096445 -6a508faa-80a8-3246-9941-90d8cc8dec85,89be543c-6081-44cd-ae7c-06b07df54fe3 -6a508faa-80a8-3246-9941-90d8cc8dec85,57a83a9e-eea3-4e79-a0bf-47b203678351 -6a508faa-80a8-3246-9941-90d8cc8dec85,5c8fd66c-1113-41bc-8ae0-03df983a5b6d -6a508faa-80a8-3246-9941-90d8cc8dec85,eb08b7c4-1f03-4ac1-b6c0-14b978e7f306 -6a508faa-80a8-3246-9941-90d8cc8dec85,d60be85f-8c16-43d2-9601-e3619f40136f -6a508faa-80a8-3246-9941-90d8cc8dec85,df1190f3-ac28-4f59-8703-ef8e88cdf6ab -6a508faa-80a8-3246-9941-90d8cc8dec85,07c8ba1a-3858-4ff3-98ec-1674bb1b817a -6a508faa-80a8-3246-9941-90d8cc8dec85,9f1ca624-de5c-45e9-a63d-28d82bd21506 -6a508faa-80a8-3246-9941-90d8cc8dec85,b8518c80-ccea-4a9f-aeef-37cfefa5225f -6a508faa-80a8-3246-9941-90d8cc8dec85,e8a30e25-90f8-4ca6-9b75-a76f5818ad48 -6a508faa-80a8-3246-9941-90d8cc8dec85,99c72e70-76ef-4040-a078-6cf0f5e27139 -6a508faa-80a8-3246-9941-90d8cc8dec85,3b59ec25-2abc-431e-a4ba-27466943c3c9 -6a508faa-80a8-3246-9941-90d8cc8dec85,11b50167-388b-4706-8eea-604dfc104532 -6a508faa-80a8-3246-9941-90d8cc8dec85,55ea1abe-f326-4e78-9de4-8416cb4d3006 -6a508faa-80a8-3246-9941-90d8cc8dec85,177f0153-5481-4b18-96bd-9f0b06d97d91 -6a508faa-80a8-3246-9941-90d8cc8dec85,59e75932-e468-4999-a995-a9656d1423b7 -6a508faa-80a8-3246-9941-90d8cc8dec85,948047c9-ae53-473f-954c-d1d17b662c31 -6a508faa-80a8-3246-9941-90d8cc8dec85,8d93b273-d67f-4ebe-bb3f-c13fac96e914 -6a508faa-80a8-3246-9941-90d8cc8dec85,a1ab48d3-a70a-4142-bab3-464802ff42c3 -6a508faa-80a8-3246-9941-90d8cc8dec85,485c4029-f560-44b9-90c8-4844d14ed884 -6a508faa-80a8-3246-9941-90d8cc8dec85,9f81e611-0af0-431f-aff5-41dd3cb580d2 -6a508faa-80a8-3246-9941-90d8cc8dec85,c0505bcb-bff0-45ee-8155-c3489139b3cc -6a508faa-80a8-3246-9941-90d8cc8dec85,8bd87665-7b71-4fb4-b6ee-46383ec754ac -6a508faa-80a8-3246-9941-90d8cc8dec85,35ff5c6a-ea8c-4b0d-b9b8-1fadc6bd462b -6a508faa-80a8-3246-9941-90d8cc8dec85,dda7877b-623a-4090-b485-37b21b9551b0 -6a508faa-80a8-3246-9941-90d8cc8dec85,657871b2-5ef1-446d-a1bf-55f74da742af -6a508faa-80a8-3246-9941-90d8cc8dec85,839a0d2a-589f-4761-8e31-b915b47f3a81 -6a508faa-80a8-3246-9941-90d8cc8dec85,99eef70c-3cb7-4023-be17-4d06c4346535 -6a508faa-80a8-3246-9941-90d8cc8dec85,fc69518c-b6d6-4db2-a472-e9ef7e568e43 -6a508faa-80a8-3246-9941-90d8cc8dec85,8ee25ade-0f02-4257-be73-42090038c071 -6a508faa-80a8-3246-9941-90d8cc8dec85,46b75db9-9b6b-4b85-a1fe-0dc92a3ec9d4 -6a508faa-80a8-3246-9941-90d8cc8dec85,c21beab9-e969-4a4c-8944-2ae0837d8826 -6a508faa-80a8-3246-9941-90d8cc8dec85,55ab2713-3114-4230-9a62-259ebd4bd1e7 -6a508faa-80a8-3246-9941-90d8cc8dec85,0ee7b12f-fb2d-4ec5-8dc6-3a8c604aac43 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ac74153-f111-4e3d-b629-d0fe0cc40309 -6a508faa-80a8-3246-9941-90d8cc8dec85,69878314-5464-4987-b21a-e81c1d37a674 -6a508faa-80a8-3246-9941-90d8cc8dec85,9c976a16-6ced-4f3d-89ac-7b6ff6198de7 -6a508faa-80a8-3246-9941-90d8cc8dec85,25f29712-805e-4225-807f-0fc31eb4d13e -6a508faa-80a8-3246-9941-90d8cc8dec85,24113ebf-528c-48c4-b0b5-231ee84e685e -6a508faa-80a8-3246-9941-90d8cc8dec85,db643ee5-b4bf-4d8a-9100-6e7a6015bf4c -6a508faa-80a8-3246-9941-90d8cc8dec85,eac5636e-698c-4055-ade7-914ffe779031 -6a508faa-80a8-3246-9941-90d8cc8dec85,565c97be-f7d3-4114-b550-f7b2d150d729 -6a508faa-80a8-3246-9941-90d8cc8dec85,267960d1-66eb-43c0-9b28-a7ad407e3a8b -6a508faa-80a8-3246-9941-90d8cc8dec85,df2b4f78-a7b7-4ddc-8c13-31c48f43217f -6a508faa-80a8-3246-9941-90d8cc8dec85,93e8f2a8-6a7b-4ea3-8252-16c112141ef4 -6a508faa-80a8-3246-9941-90d8cc8dec85,e6cad43c-153b-424d-8684-855f7c7be408 -6a508faa-80a8-3246-9941-90d8cc8dec85,d66fe760-cf7d-4fa3-948b-1ef68d5bb160 -6a508faa-80a8-3246-9941-90d8cc8dec85,89094c90-e05b-4a30-83e6-a1cc2c882102 -6a508faa-80a8-3246-9941-90d8cc8dec85,3261e7f2-119e-45a4-b65b-b1aa2747c0b7 -6a508faa-80a8-3246-9941-90d8cc8dec85,c6317dcc-6043-4b2e-8d26-67b153bafae1 -6a508faa-80a8-3246-9941-90d8cc8dec85,1496c938-2df2-499c-90cc-b9401f372668 -6a508faa-80a8-3246-9941-90d8cc8dec85,105e00d4-745f-4293-9680-f985574776f5 -6a508faa-80a8-3246-9941-90d8cc8dec85,8ea9aaf6-d14d-4d4e-b9f9-635e7fce600f -6a508faa-80a8-3246-9941-90d8cc8dec85,e9a52833-0679-469c-ae80-46ef543b6f5a -6a508faa-80a8-3246-9941-90d8cc8dec85,20c0b765-bc2f-4024-a85b-07d78ff50f55 -6a508faa-80a8-3246-9941-90d8cc8dec85,14ee8335-8f9a-4e3d-b13b-f5e404e56f74 -6a508faa-80a8-3246-9941-90d8cc8dec85,078862f7-d35f-4ca0-9b89-a2db512e5c0b -6a508faa-80a8-3246-9941-90d8cc8dec85,da9f1aea-11c2-4fa3-8c6c-7bfed5dfcb53 -6a508faa-80a8-3246-9941-90d8cc8dec85,e8328d74-2b67-4006-88a3-648bd27dc0fc -6a508faa-80a8-3246-9941-90d8cc8dec85,71a41016-705d-4858-a5f1-fbe0dc8022b8 -6a508faa-80a8-3246-9941-90d8cc8dec85,c7125af0-9772-4956-b081-9626a816bd52 -6a508faa-80a8-3246-9941-90d8cc8dec85,8f94ee31-a946-4d6a-877a-3cc486974252 -6a508faa-80a8-3246-9941-90d8cc8dec85,3f26faaf-adb3-40f3-a59d-efd48cd9175b -6a508faa-80a8-3246-9941-90d8cc8dec85,fda1a911-5951-4516-9fec-69a86d337a8d -6a508faa-80a8-3246-9941-90d8cc8dec85,8f511155-b782-4cdd-bff4-4848872ae29a -6a508faa-80a8-3246-9941-90d8cc8dec85,db1fc021-8217-4bdb-ab79-567c4ff09fc9 -6a508faa-80a8-3246-9941-90d8cc8dec85,a7c27f1d-559c-42e7-b7b0-dbea6e0977a8 -6a508faa-80a8-3246-9941-90d8cc8dec85,ae9cc72f-4de7-4b61-94f2-7a833108b32e -6a508faa-80a8-3246-9941-90d8cc8dec85,295e06b0-ac98-45cc-90dc-0d35f1be6569 -6a508faa-80a8-3246-9941-90d8cc8dec85,1f14d886-15c6-42dd-8913-99aafa44700b -6a508faa-80a8-3246-9941-90d8cc8dec85,df1464cd-d425-4eb8-8a85-7287c57d7d4c -6a508faa-80a8-3246-9941-90d8cc8dec85,24deea3e-df1b-4769-aa27-ca7bd33d9fb3 -6a508faa-80a8-3246-9941-90d8cc8dec85,577cda4d-8318-49d3-988b-d7a581643f71 -6a508faa-80a8-3246-9941-90d8cc8dec85,f2941070-6aa3-4759-93a0-4fd6c1a8b726 -6a508faa-80a8-3246-9941-90d8cc8dec85,30f0950d-4075-4e0d-9a47-9acefaae196a -6a508faa-80a8-3246-9941-90d8cc8dec85,04dce22a-7550-4d38-ad02-435acbeca573 -6a508faa-80a8-3246-9941-90d8cc8dec85,0d665b71-10e7-4567-a47b-07b1f8619908 -6a508faa-80a8-3246-9941-90d8cc8dec85,f81b70fb-65c1-4724-99fc-df99c3030ca3 -6a508faa-80a8-3246-9941-90d8cc8dec85,777efd3b-15cb-4708-9120-176066b1f21b -6a508faa-80a8-3246-9941-90d8cc8dec85,84443ccb-3012-4ddf-828f-63fcc74074b9 -6a508faa-80a8-3246-9941-90d8cc8dec85,183a300f-da39-4d04-9669-ebd3c56c5a4a -6a508faa-80a8-3246-9941-90d8cc8dec85,cc32da4e-a119-4a3a-9fc2-34c990f80fc8 -6a508faa-80a8-3246-9941-90d8cc8dec85,331eb1f8-fa81-4a66-a1f4-434d94838173 -6a508faa-80a8-3246-9941-90d8cc8dec85,a00f5e43-5e42-41cc-af05-3bb743892008 -6a508faa-80a8-3246-9941-90d8cc8dec85,7f46b6c0-9714-4fd5-810a-4660ed59d956 -6a508faa-80a8-3246-9941-90d8cc8dec85,4188b283-1247-4a22-8d4f-4a61219b8916 -6a508faa-80a8-3246-9941-90d8cc8dec85,cbe038b0-d1d5-4137-a570-d7b210bd3923 -6a508faa-80a8-3246-9941-90d8cc8dec85,0c7b6d02-d662-4b12-afcb-b43fd74ac643 -6a508faa-80a8-3246-9941-90d8cc8dec85,10a1d113-833f-4a39-b940-d954dade4aa0 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b97f34b-12ea-4ff1-97ec-174fa57986d9 -6a508faa-80a8-3246-9941-90d8cc8dec85,fdd8440f-1cdf-4678-858d-7948b55dfd8f -6a508faa-80a8-3246-9941-90d8cc8dec85,853a90fc-d567-451c-a716-5728e37a2bc9 -6a508faa-80a8-3246-9941-90d8cc8dec85,3d8a1ad4-17f7-4146-b579-22aa5a5040e0 -6a508faa-80a8-3246-9941-90d8cc8dec85,a3d2678a-2080-44cb-8f46-14bac3d11618 -6a508faa-80a8-3246-9941-90d8cc8dec85,77ccc0fb-012f-4fd0-8fa6-7017edba8046 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ffd2dc6-ce4d-4596-8032-8db9162f3ad8 -6a508faa-80a8-3246-9941-90d8cc8dec85,3bd6af3f-d930-49d8-b508-f1e20e975c4f -6a508faa-80a8-3246-9941-90d8cc8dec85,292e20fa-ee97-4aae-860f-dc2d0fd5b8de -6a508faa-80a8-3246-9941-90d8cc8dec85,2d43dbf6-a4ac-4ac9-8ec1-17dc0c4147fc -6a508faa-80a8-3246-9941-90d8cc8dec85,460e2a7b-c7f6-48e4-b1df-09e32cbe1927 -6a508faa-80a8-3246-9941-90d8cc8dec85,d599f9e6-a654-4763-aae6-f259eb0ca054 -6a508faa-80a8-3246-9941-90d8cc8dec85,00fd39df-0625-41fc-85bb-d6c421ccc98f -6a508faa-80a8-3246-9941-90d8cc8dec85,82fb3ac3-ecbb-4869-9347-5271f2600d15 -6a508faa-80a8-3246-9941-90d8cc8dec85,a17b0dc9-198e-4869-913f-c498d8d7c3aa -6a508faa-80a8-3246-9941-90d8cc8dec85,dd4c19ee-c4cb-46b0-b5ae-cc48f4cebfc5 -6a508faa-80a8-3246-9941-90d8cc8dec85,7aa9ee38-72fc-4b5b-9ead-72050ab94b0c -6a508faa-80a8-3246-9941-90d8cc8dec85,6cdf2f4c-67b0-4bb7-ba92-d17dee6fbcf6 -6a508faa-80a8-3246-9941-90d8cc8dec85,01611750-fab9-4a96-bc83-a470d99cdbba -6a508faa-80a8-3246-9941-90d8cc8dec85,5a78877a-fe1e-4c2e-89f3-604a5d9d819f -6a508faa-80a8-3246-9941-90d8cc8dec85,c69914e9-15c2-445c-aab3-a9530adb133a -6a508faa-80a8-3246-9941-90d8cc8dec85,f17ee503-6fa2-4c5a-ac09-e25327d165c5 -6a508faa-80a8-3246-9941-90d8cc8dec85,590760d3-afe9-4df5-bd31-f8c6a3273436 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b6a07e1-56b9-43b3-875f-03e82626dd3b -6a508faa-80a8-3246-9941-90d8cc8dec85,fb71d5f4-3aeb-41ee-90e5-d8843a8b33ba -6a508faa-80a8-3246-9941-90d8cc8dec85,5bb64aa1-19f0-4401-9828-d7324c1a4d99 -6a508faa-80a8-3246-9941-90d8cc8dec85,e77098f6-2403-41bc-8020-36db7f72f2ea -6a508faa-80a8-3246-9941-90d8cc8dec85,711cef1c-31f8-43b9-bf1a-18792c9304d3 -6a508faa-80a8-3246-9941-90d8cc8dec85,dbbea217-7077-45dd-ad8d-a00e0983995b -6a508faa-80a8-3246-9941-90d8cc8dec85,97c567cc-0748-4ca8-b5e7-ad54b7677a2c -6a508faa-80a8-3246-9941-90d8cc8dec85,73e26495-993b-4220-b4a3-74ccf920b66e -6a508faa-80a8-3246-9941-90d8cc8dec85,e9c9d9cc-56cf-4bca-ac7e-aac0a8e6cb8f -6a508faa-80a8-3246-9941-90d8cc8dec85,329b6b63-ce88-4f99-8a06-19a5d284ba66 -6a508faa-80a8-3246-9941-90d8cc8dec85,da2e6c3f-b78a-4d84-bbb5-eb05d09be197 -6a508faa-80a8-3246-9941-90d8cc8dec85,8860ce1d-3f50-4f92-a3eb-e18c3ee44b9e -6a508faa-80a8-3246-9941-90d8cc8dec85,b0a9718c-571a-41a6-bb71-f31e036078d1 -6a508faa-80a8-3246-9941-90d8cc8dec85,4f1e1f55-dfac-4239-b0fa-e8b20c03683c -6a508faa-80a8-3246-9941-90d8cc8dec85,22a227c7-fdd1-4d83-be94-64b4ba37e7a3 -6a508faa-80a8-3246-9941-90d8cc8dec85,dc4932bc-548a-44a2-b633-21a47aa6d25e -6a508faa-80a8-3246-9941-90d8cc8dec85,483c34ee-666b-4097-a0fa-f18fe3c3ea18 -6a508faa-80a8-3246-9941-90d8cc8dec85,ce117f95-15ca-4b36-adcb-6cac7ca0db41 -6a508faa-80a8-3246-9941-90d8cc8dec85,bb516b5d-5bd3-411b-96fb-289ff47d2201 -6a508faa-80a8-3246-9941-90d8cc8dec85,365a1c10-f3b3-4378-8f28-4bc2334c0e6e -6a508faa-80a8-3246-9941-90d8cc8dec85,bb426864-2ddc-48f7-80b1-f76b7a4d3051 -6a508faa-80a8-3246-9941-90d8cc8dec85,3692a862-0684-40f2-a060-82723f233590 -6a508faa-80a8-3246-9941-90d8cc8dec85,f9c344a3-aab7-4336-b12a-81aa1fdfedfe -6a508faa-80a8-3246-9941-90d8cc8dec85,7ae55358-b36c-4dd3-982a-30376ad6e0e2 -6a508faa-80a8-3246-9941-90d8cc8dec85,2ad200b8-a314-4b31-b134-bbe7458ad512 -6a508faa-80a8-3246-9941-90d8cc8dec85,cea72457-8007-47c0-b0aa-1542b592cf11 -6a508faa-80a8-3246-9941-90d8cc8dec85,10a255bd-7690-4397-8d5f-6c049dc46402 -6a508faa-80a8-3246-9941-90d8cc8dec85,3b9440fc-db26-4bf8-9c20-15d4ca098281 -6a508faa-80a8-3246-9941-90d8cc8dec85,b6e4d5ea-6426-46f8-acc7-233562f091e4 -6a508faa-80a8-3246-9941-90d8cc8dec85,6da83e1f-97c1-4d77-befc-f789d9a11edc -6a508faa-80a8-3246-9941-90d8cc8dec85,d8d448dd-ce72-4b6f-8142-4de1dc499bab -6a508faa-80a8-3246-9941-90d8cc8dec85,c6d6f813-024f-4bb2-ab7f-7543b0f77fc7 -6a508faa-80a8-3246-9941-90d8cc8dec85,e45bcf2a-a83e-41ac-8641-d7384ca99266 -6a508faa-80a8-3246-9941-90d8cc8dec85,86e58c6d-7f06-4471-8664-691cf87b7f51 -6a508faa-80a8-3246-9941-90d8cc8dec85,2ef52a87-fb69-4f3e-bef5-878fa6c52c53 -6a508faa-80a8-3246-9941-90d8cc8dec85,1fbc52d3-cf28-45a5-9409-3e9057eef48d -6a508faa-80a8-3246-9941-90d8cc8dec85,9121a307-5dfa-4785-bfa7-69bab4e14a45 -6a508faa-80a8-3246-9941-90d8cc8dec85,dc195334-3804-48ae-87eb-0e7eea479d6c -6a508faa-80a8-3246-9941-90d8cc8dec85,3e678e3c-816f-4526-9652-10a107318b8e -6a508faa-80a8-3246-9941-90d8cc8dec85,2d8fd9e4-2971-465b-a772-7bf2431757ee -6a508faa-80a8-3246-9941-90d8cc8dec85,727583b6-64e6-4f8f-9df2-aef2e3425f88 -6a508faa-80a8-3246-9941-90d8cc8dec85,e4bbf084-bde4-4a7c-a2b2-0fbef943c339 -6a508faa-80a8-3246-9941-90d8cc8dec85,e58ef14c-275d-43a3-b7f7-034ea9bfc746 -6a508faa-80a8-3246-9941-90d8cc8dec85,8221bf4f-3c50-49a8-aad3-0589f1a67cfb -6a508faa-80a8-3246-9941-90d8cc8dec85,8a2f19d8-af8a-4aba-8912-b922ed25b4c3 -6a508faa-80a8-3246-9941-90d8cc8dec85,5e139009-e7d5-4a86-a9a1-4a364b99d5c1 -6a508faa-80a8-3246-9941-90d8cc8dec85,9d6b58c1-eacc-477d-93bf-c72fd492b3fd -6a508faa-80a8-3246-9941-90d8cc8dec85,e68d0eea-aa8b-4295-9890-aba3aeaafc87 -6a508faa-80a8-3246-9941-90d8cc8dec85,22ac4411-5a76-4ded-8068-0bbb582f2dec -6a508faa-80a8-3246-9941-90d8cc8dec85,2da3f814-a02e-4da4-b204-60a3f24bc65f -6a508faa-80a8-3246-9941-90d8cc8dec85,aeef0ae6-65c8-495d-a65e-da88ce826fe9 -6a508faa-80a8-3246-9941-90d8cc8dec85,98392a88-9a19-4acc-a84c-e1bebe4ec068 -6a508faa-80a8-3246-9941-90d8cc8dec85,2f6d444d-935c-4795-b96f-37f17b7336b6 -6a508faa-80a8-3246-9941-90d8cc8dec85,c337e268-1f2f-4820-96f3-1b100b15e4aa -6a508faa-80a8-3246-9941-90d8cc8dec85,e7eefd46-e47f-4d59-996b-6d4b81e6a071 -6a508faa-80a8-3246-9941-90d8cc8dec85,bce7d614-c011-41a8-be4d-65f06e4100bc -6a508faa-80a8-3246-9941-90d8cc8dec85,b03ab9df-f595-49f2-a498-e7f25c2e51f3 -6a508faa-80a8-3246-9941-90d8cc8dec85,083b7d8c-64bb-4bbe-be86-34a4b7dc07bf -6a508faa-80a8-3246-9941-90d8cc8dec85,68e6645f-b27f-44f1-bc02-6601eba02a07 -6a508faa-80a8-3246-9941-90d8cc8dec85,4271dcde-a418-4766-913b-dbfb69ca5aca -6a508faa-80a8-3246-9941-90d8cc8dec85,55e3829e-ae00-439e-a3d0-f6dd97c659e3 -6a508faa-80a8-3246-9941-90d8cc8dec85,7cf6ed71-edbf-4036-8cd2-146a660bbdc5 -6a508faa-80a8-3246-9941-90d8cc8dec85,0f1f3799-40df-48d3-b448-d092557f1b40 -6a508faa-80a8-3246-9941-90d8cc8dec85,60a2df78-c929-41a1-96f2-647676dc9621 -6a508faa-80a8-3246-9941-90d8cc8dec85,eab5a513-943e-41da-9484-dc17a94beea6 -6a508faa-80a8-3246-9941-90d8cc8dec85,96ffb6ff-3b9e-4d76-9079-63ee60f1052d -6a508faa-80a8-3246-9941-90d8cc8dec85,e47be324-db94-4ae0-bc87-96e74d836545 -6a508faa-80a8-3246-9941-90d8cc8dec85,34bc42ab-a354-4fab-981a-6a7e5701a809 -6a508faa-80a8-3246-9941-90d8cc8dec85,b0c55812-6f5f-4b5b-b03d-c88f9f508262 -6a508faa-80a8-3246-9941-90d8cc8dec85,f0c1b943-e8a9-4fb3-b4e9-79bb4000370e -6a508faa-80a8-3246-9941-90d8cc8dec85,0a31edbe-3860-456c-8c3a-77ffd573fd95 -6a508faa-80a8-3246-9941-90d8cc8dec85,ec58ca8a-03b0-4af8-a2ce-210a606fc28b -6a508faa-80a8-3246-9941-90d8cc8dec85,86257bd7-018d-424f-8c20-2b4b4a49874a -6a508faa-80a8-3246-9941-90d8cc8dec85,ebc43ebc-aa96-4977-8f3f-9fc9e2740aa6 -6a508faa-80a8-3246-9941-90d8cc8dec85,72cdcb91-014a-4a00-8a07-6ae370c93cb7 -6a508faa-80a8-3246-9941-90d8cc8dec85,b47eddb8-4ab3-47fa-879d-4ecabc772224 -6a508faa-80a8-3246-9941-90d8cc8dec85,5cdc579d-638c-4950-b336-a9232e4fced1 -6a508faa-80a8-3246-9941-90d8cc8dec85,d3d2d7f9-75ec-4704-8413-8b03e1fdae86 -6a508faa-80a8-3246-9941-90d8cc8dec85,436f9347-e219-4e31-9f9f-b681f8d4e2ac -6a508faa-80a8-3246-9941-90d8cc8dec85,6975d533-e7bf-42c6-ad55-54487d7c093b -6a508faa-80a8-3246-9941-90d8cc8dec85,0b84a918-0460-46a0-a6ec-767916709b6a -6a508faa-80a8-3246-9941-90d8cc8dec85,8934d85e-e0c0-448b-9070-47384c239b05 -6a508faa-80a8-3246-9941-90d8cc8dec85,b3611906-67cb-4911-ad1a-b3742aaec09a -6a508faa-80a8-3246-9941-90d8cc8dec85,243ed293-2c1f-438c-bd46-88706b16a942 -6a508faa-80a8-3246-9941-90d8cc8dec85,ab7daf79-3781-4ad6-9710-4527be34d5ca -6a508faa-80a8-3246-9941-90d8cc8dec85,4fb6de5a-0df2-427b-a8c2-76f819bbafd0 -6a508faa-80a8-3246-9941-90d8cc8dec85,e29ec9c0-a640-4ccb-aa62-2ba2838e3cef -6a508faa-80a8-3246-9941-90d8cc8dec85,33e36e7a-baaf-409a-b292-af468d6c3ac3 -6a508faa-80a8-3246-9941-90d8cc8dec85,5d632e1f-7bc1-4db6-b0d7-084a10c35dc6 -6a508faa-80a8-3246-9941-90d8cc8dec85,10ac54b6-176a-41e8-acf4-5e966fc977ec -6a508faa-80a8-3246-9941-90d8cc8dec85,4714dc7e-0f91-4ec4-9baf-4665d9969e0a -6a508faa-80a8-3246-9941-90d8cc8dec85,aabe76ea-af17-4916-b72a-59f48ebb9646 -6a508faa-80a8-3246-9941-90d8cc8dec85,87d7104f-e0f6-4034-a41f-0f493983eeec -6a508faa-80a8-3246-9941-90d8cc8dec85,1a7578f2-15bc-4149-b699-140b030f8da5 -6a508faa-80a8-3246-9941-90d8cc8dec85,3994a9fc-01fd-4703-a465-16c66764e96d -6a508faa-80a8-3246-9941-90d8cc8dec85,f3c0ec6c-c737-4780-bb54-d823623972e9 -6a508faa-80a8-3246-9941-90d8cc8dec85,205f122c-b863-4878-986f-f69b5a94aa1b -6a508faa-80a8-3246-9941-90d8cc8dec85,4b1c84b3-0ee3-413e-bd15-b7bb14f9d3d7 -6a508faa-80a8-3246-9941-90d8cc8dec85,1059ba10-7f7b-49d7-9e38-9cdc3735c47f -6a508faa-80a8-3246-9941-90d8cc8dec85,f93c9fb4-c38f-4f02-acc9-ce2223a0ba0e -6a508faa-80a8-3246-9941-90d8cc8dec85,4d796ac6-077f-4f9b-bdb7-45635abc1287 -6a508faa-80a8-3246-9941-90d8cc8dec85,25cf0ca5-a0f3-4409-808d-a0529117aa11 -6a508faa-80a8-3246-9941-90d8cc8dec85,f5710000-0da6-4358-ab91-f1386700e20f -6a508faa-80a8-3246-9941-90d8cc8dec85,edc3077f-a8ee-4e5f-829b-b68f1c42389e -6a508faa-80a8-3246-9941-90d8cc8dec85,fe99e87a-c60c-4b19-8167-73e2572ca986 -6a508faa-80a8-3246-9941-90d8cc8dec85,e33e6174-8b69-4d8a-b209-28afdf136e68 -6a508faa-80a8-3246-9941-90d8cc8dec85,58a3aac1-03c1-40bf-a29f-684e0196abde -6a508faa-80a8-3246-9941-90d8cc8dec85,856ffb08-e594-4a0d-87bf-35a8fd7932e1 -6a508faa-80a8-3246-9941-90d8cc8dec85,372b9bb3-ab2e-4a04-84ca-8defb81c4e79 -6a508faa-80a8-3246-9941-90d8cc8dec85,9ad4ab06-ffb4-47c1-9917-f86105264b7b -6a508faa-80a8-3246-9941-90d8cc8dec85,01de5380-37f8-4824-ba66-1ffbd35a50f9 -6a508faa-80a8-3246-9941-90d8cc8dec85,dcd29452-bbaa-4c13-8f3a-af8403ed31f5 -6a508faa-80a8-3246-9941-90d8cc8dec85,c8f5a241-20a3-4eb6-8c07-955848613c7a -6a508faa-80a8-3246-9941-90d8cc8dec85,afbb5626-85d2-4bc4-9be7-80b854ca5f91 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b864bf9-d5a1-436e-8210-86c5009582b3 -6a508faa-80a8-3246-9941-90d8cc8dec85,d8723130-9429-4aa8-9623-ac719e4a5723 -6a508faa-80a8-3246-9941-90d8cc8dec85,9c3349b8-e316-4287-80ab-5f80f1af6add -6a508faa-80a8-3246-9941-90d8cc8dec85,ecfcdcd8-0011-4181-8470-86f324c87a4d -6a508faa-80a8-3246-9941-90d8cc8dec85,549130ff-ad2f-4c96-87bb-79bf089113dc -6a508faa-80a8-3246-9941-90d8cc8dec85,4a5fdbc0-a55c-49c7-8df9-dfe5468039e4 -6a508faa-80a8-3246-9941-90d8cc8dec85,4d107141-a78b-4aa6-8928-f1c7e624ced4 -6a508faa-80a8-3246-9941-90d8cc8dec85,8061505b-e290-486d-adc9-4d8dbaae0fa7 -6a508faa-80a8-3246-9941-90d8cc8dec85,052b2d9b-3cc1-4502-8830-f969f9e1381c -6a508faa-80a8-3246-9941-90d8cc8dec85,e32e0183-f1b8-4970-a649-a9bab39a8406 -6a508faa-80a8-3246-9941-90d8cc8dec85,cacc2a37-8aa6-4324-a22a-52b1899b4433 -6a508faa-80a8-3246-9941-90d8cc8dec85,f2222826-9db9-4225-b6de-89050c40b24c -6a508faa-80a8-3246-9941-90d8cc8dec85,99509b21-84b1-4700-bd0f-c470260d0c9a -6a508faa-80a8-3246-9941-90d8cc8dec85,e26cc642-0fa6-47fb-ba7b-d68dd8fde775 -6a508faa-80a8-3246-9941-90d8cc8dec85,b028256a-53da-40eb-b8ab-e07fbe931d8c -6a508faa-80a8-3246-9941-90d8cc8dec85,7db62799-f6e1-4ed6-9a50-d7210251f8ce -6a508faa-80a8-3246-9941-90d8cc8dec85,db6ffe9f-1636-44e4-8f83-2f5a3b5b216e -6a508faa-80a8-3246-9941-90d8cc8dec85,6148dbe9-f867-4b35-842e-a9d5f961f89c -6a508faa-80a8-3246-9941-90d8cc8dec85,17b856af-b1d5-4fc6-8bcb-375fa59b9180 -6a508faa-80a8-3246-9941-90d8cc8dec85,a55f63c2-c349-4666-bc8c-86bc93f58d49 -6a508faa-80a8-3246-9941-90d8cc8dec85,3bbcbe3d-77a7-4a51-855a-4a4e1d9719b7 -6a508faa-80a8-3246-9941-90d8cc8dec85,64deec20-43b9-4262-9d3b-f09b19387c57 -6a508faa-80a8-3246-9941-90d8cc8dec85,b0a118a8-7dd2-4208-9e3f-a772a241583e -6a508faa-80a8-3246-9941-90d8cc8dec85,6ecb5362-32b2-4d6a-b0dd-40739d9f3bd0 -6a508faa-80a8-3246-9941-90d8cc8dec85,83670181-97e8-416d-a50e-0bbcedd9c164 -6a508faa-80a8-3246-9941-90d8cc8dec85,c1bf549d-bb1e-4f0c-95f4-5fdc4c1b7de7 -6a508faa-80a8-3246-9941-90d8cc8dec85,be3bb5d5-190d-4dba-afa0-11a9a8c8eb43 -6a508faa-80a8-3246-9941-90d8cc8dec85,04b233e4-9fd3-4e03-9a85-a49bddd4d8c1 -6a508faa-80a8-3246-9941-90d8cc8dec85,1551105c-0dd6-4f11-867b-74a10c3439ba -6a508faa-80a8-3246-9941-90d8cc8dec85,543a9154-b02f-4c90-988a-e6fc7d38e1be -6a508faa-80a8-3246-9941-90d8cc8dec85,fa287a82-9a2d-4249-9945-6fd26bf40026 -6a508faa-80a8-3246-9941-90d8cc8dec85,c74fd102-c1b8-4890-8571-7229855d6b34 -6a508faa-80a8-3246-9941-90d8cc8dec85,b7bfefc6-73d1-495e-bd79-3e46fcf7f9c6 -6a508faa-80a8-3246-9941-90d8cc8dec85,ff01f6d3-01d3-4f8d-b80b-69eeb8e5a31c -6a508faa-80a8-3246-9941-90d8cc8dec85,ddb51bb0-8b37-4496-afa2-3a7a048a9004 -6a508faa-80a8-3246-9941-90d8cc8dec85,088935b2-8a50-4aae-beb1-85571dbf1f3f -6a508faa-80a8-3246-9941-90d8cc8dec85,902a2259-78c6-46a3-91a7-18ebdbd9f9be -6a508faa-80a8-3246-9941-90d8cc8dec85,2e7443cf-30bb-457a-adbd-8a0fe71d52f9 -6a508faa-80a8-3246-9941-90d8cc8dec85,fe486aea-b0ed-4d55-8ab0-757523e79fdd -6a508faa-80a8-3246-9941-90d8cc8dec85,f080a5d8-5edd-4ba2-a1ac-7ad4d2f34003 -6a508faa-80a8-3246-9941-90d8cc8dec85,83deafb3-1c1c-48dd-ad61-dbcef0373c1b -6a508faa-80a8-3246-9941-90d8cc8dec85,4de8320c-cfa9-476c-b3f6-f833777fc081 -6a508faa-80a8-3246-9941-90d8cc8dec85,53e01f15-8755-4c73-9d59-13b09bb34723 -6a508faa-80a8-3246-9941-90d8cc8dec85,cf72424e-9efb-43b2-b795-e10b2ed2a2a4 -6a508faa-80a8-3246-9941-90d8cc8dec85,3546cd85-ad10-44fd-bf1e-b78c5fa59b04 -6a508faa-80a8-3246-9941-90d8cc8dec85,097b32a2-c33e-40cf-9308-1dad99edca0e -6a508faa-80a8-3246-9941-90d8cc8dec85,b51b3056-5dbe-4344-9379-369986f3e98a -6a508faa-80a8-3246-9941-90d8cc8dec85,018a7a3d-b54d-49ba-b422-e63b3e9af0eb -6a508faa-80a8-3246-9941-90d8cc8dec85,04f2325d-ecd9-4ed3-aa9b-1fcb1443c06b -6a508faa-80a8-3246-9941-90d8cc8dec85,94c735d5-5b4e-4a05-809d-63df1d65a242 -6a508faa-80a8-3246-9941-90d8cc8dec85,b78ace76-0ec6-45bd-bde2-6a2507d2d5d5 -6a508faa-80a8-3246-9941-90d8cc8dec85,4df7ffd7-08d7-46ee-9204-2e93b9dd1b71 -6a508faa-80a8-3246-9941-90d8cc8dec85,4f617c24-3364-4130-a098-09b97a5a970f -6a508faa-80a8-3246-9941-90d8cc8dec85,72c8e4b1-f252-4d68-9e96-e695c8649a40 -6a508faa-80a8-3246-9941-90d8cc8dec85,886021ad-a7ed-4dce-9ea7-8760db57c1b7 -6a508faa-80a8-3246-9941-90d8cc8dec85,40b522d0-7f8c-4d56-84b6-349383f3f5e3 -6a508faa-80a8-3246-9941-90d8cc8dec85,8b8e0e87-d831-45b3-81c0-e332d8abf9a3 -6a508faa-80a8-3246-9941-90d8cc8dec85,b22b8d4f-10d3-427b-b7cb-8e7de914c759 -6a508faa-80a8-3246-9941-90d8cc8dec85,ea40e31b-2944-464d-ad30-3c6195c0b411 -6a508faa-80a8-3246-9941-90d8cc8dec85,6db1a21c-e83d-46f3-b270-10fc4dabb2af -6a508faa-80a8-3246-9941-90d8cc8dec85,a985e2ce-3ef3-4f96-ae9e-5d5ce200bcf6 -6a508faa-80a8-3246-9941-90d8cc8dec85,c74b6b3e-ef4d-474b-a369-8dcd0eaa82b6 -6a508faa-80a8-3246-9941-90d8cc8dec85,03a4abd1-4753-46d9-988a-7772c957b1e4 -6a508faa-80a8-3246-9941-90d8cc8dec85,007c211e-9817-422a-a33a-12aa6d72bd64 -6a508faa-80a8-3246-9941-90d8cc8dec85,f2f2a77a-2d7e-42b5-ae82-9e2deace7abc -6a508faa-80a8-3246-9941-90d8cc8dec85,cbe3e420-4263-42f9-b5f0-7283152f1539 -6a508faa-80a8-3246-9941-90d8cc8dec85,3968f13c-62cc-45fd-a3b0-94413c1c5933 -6a508faa-80a8-3246-9941-90d8cc8dec85,6fe6f7dc-69f5-41cf-b325-0ee4446ac2dc -6a508faa-80a8-3246-9941-90d8cc8dec85,35e625e8-9ece-4e97-b1b7-baff6620bb1a -6a508faa-80a8-3246-9941-90d8cc8dec85,53a3d50e-d394-4adc-958c-b99798bd243b -6a508faa-80a8-3246-9941-90d8cc8dec85,0b7489af-83ef-4382-a99c-c884d29b51b7 -6a508faa-80a8-3246-9941-90d8cc8dec85,e27b1ad8-5e76-444e-9779-dc406fa29426 -6a508faa-80a8-3246-9941-90d8cc8dec85,ddc4cdb4-3a61-4451-9a16-6552e347a3fc -6a508faa-80a8-3246-9941-90d8cc8dec85,701c4b65-f050-4c4a-8d24-7ab9790c057e -6a508faa-80a8-3246-9941-90d8cc8dec85,b66f441a-204f-48ff-b215-f1f1520e7f09 -6a508faa-80a8-3246-9941-90d8cc8dec85,abef793e-4842-47f2-acd8-895dd8ca169d -6a508faa-80a8-3246-9941-90d8cc8dec85,2f0aed62-b4f6-4efc-8cdc-f47151987d60 -6a508faa-80a8-3246-9941-90d8cc8dec85,6645ad76-8077-4751-b9ed-ae7d1228bedb -6a508faa-80a8-3246-9941-90d8cc8dec85,4d783807-ffa0-4dd1-9a3f-b5f781b3bd19 -6a508faa-80a8-3246-9941-90d8cc8dec85,adfa3721-40f1-4a25-a3a9-5f0140eea34d -6a508faa-80a8-3246-9941-90d8cc8dec85,800dc40d-28ee-4e30-84b8-5f1645692ac4 -6a508faa-80a8-3246-9941-90d8cc8dec85,64b9c52a-9471-4cc7-a6bc-e7b209f9e55f -6a508faa-80a8-3246-9941-90d8cc8dec85,0e549159-3768-4b34-80b8-2f3e05499bfd -6a508faa-80a8-3246-9941-90d8cc8dec85,f0a94d4a-28a4-4c27-a2f6-b086dc3d7a47 -6a508faa-80a8-3246-9941-90d8cc8dec85,4d9cf850-2396-47fa-9472-fcd149980bc5 -6a508faa-80a8-3246-9941-90d8cc8dec85,baf8770b-1195-4a07-9acb-2488331a6e6e -6a508faa-80a8-3246-9941-90d8cc8dec85,44ce54f2-77fb-40cd-925e-90a0c77f007b -6a508faa-80a8-3246-9941-90d8cc8dec85,b0983169-a4a0-4fa6-828b-711952c8e89e -6a508faa-80a8-3246-9941-90d8cc8dec85,669c08c3-b70c-461f-bf2a-ad1a51b113b0 -6a508faa-80a8-3246-9941-90d8cc8dec85,58868a7e-1e7e-4b1b-b57b-c12f10e5cf6b -6a508faa-80a8-3246-9941-90d8cc8dec85,e93c474f-e931-4982-8476-a75cd9152c39 -6a508faa-80a8-3246-9941-90d8cc8dec85,e4743f29-fcd9-4755-bfd1-32b85e65edd3 -6a508faa-80a8-3246-9941-90d8cc8dec85,7728f9bf-ef63-49a6-a9ed-0b96e973a4e8 -6a508faa-80a8-3246-9941-90d8cc8dec85,cc6ed490-cb4d-4343-8d1f-a83992920cb0 -6a508faa-80a8-3246-9941-90d8cc8dec85,0e938b3e-733a-439e-a0f2-55006c67ab65 -6a508faa-80a8-3246-9941-90d8cc8dec85,b83fcffd-1a42-43fa-a637-ba9f7bed2a3d -6a508faa-80a8-3246-9941-90d8cc8dec85,b71ce947-2b75-4972-9fac-451450087a3c -6a508faa-80a8-3246-9941-90d8cc8dec85,a95b3d3d-4a99-4d7d-a982-e9252e929b8a -6a508faa-80a8-3246-9941-90d8cc8dec85,175f613c-6f71-4402-ac2e-0006e0b5be89 -6a508faa-80a8-3246-9941-90d8cc8dec85,4663a93f-7e17-4b29-9303-d96768815204 -6a508faa-80a8-3246-9941-90d8cc8dec85,b8ecae8a-7bd2-49d5-8e1f-7a3cf21e8ca9 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ad0c048-5904-4034-9e99-3a66068bd63a -6a508faa-80a8-3246-9941-90d8cc8dec85,4998ecfa-cb53-405b-acc6-7ff79a55a5e7 -6a508faa-80a8-3246-9941-90d8cc8dec85,7b659612-374e-4dac-86df-7470fc42ae31 -6a508faa-80a8-3246-9941-90d8cc8dec85,f1ed0c02-00c0-45c0-ab06-0613879b395c -6a508faa-80a8-3246-9941-90d8cc8dec85,d34d4eb2-0e17-474c-bb0d-6a13b6025088 -6a508faa-80a8-3246-9941-90d8cc8dec85,3c23e4a8-12c2-460b-9ccc-2ccfac3f84a5 -6a508faa-80a8-3246-9941-90d8cc8dec85,b90a5c5f-7fca-408f-a28d-5b270bfa985b -6a508faa-80a8-3246-9941-90d8cc8dec85,dd47e525-ff34-42fa-a326-3350fa9489d4 -6a508faa-80a8-3246-9941-90d8cc8dec85,6f998ce4-771c-44f9-a634-4712a294ce4f -6a508faa-80a8-3246-9941-90d8cc8dec85,d21e91e2-a7e2-432a-894c-7ae9991fe87e -6a508faa-80a8-3246-9941-90d8cc8dec85,71d83d4d-4c74-4ed1-a6b5-eb140474e69d -6a508faa-80a8-3246-9941-90d8cc8dec85,c085e3a9-c644-4d3c-86a3-eba78e1f0001 -6a508faa-80a8-3246-9941-90d8cc8dec85,a32c6b3b-42a7-4103-aa79-d462b309b71c -6a508faa-80a8-3246-9941-90d8cc8dec85,3aa6aa15-16f9-499d-800c-2e5af889a94c -6a508faa-80a8-3246-9941-90d8cc8dec85,0579e4d0-07b3-4b01-a97c-a6633adb1b51 -6a508faa-80a8-3246-9941-90d8cc8dec85,7332a72f-8938-4d66-bb56-eb80d33e5157 -6a508faa-80a8-3246-9941-90d8cc8dec85,48e2f44c-12f4-48c8-b547-5a505c5bbf3b -6a508faa-80a8-3246-9941-90d8cc8dec85,cb3ab30a-b94d-4c6a-b5ff-2dfe58b45504 -6a508faa-80a8-3246-9941-90d8cc8dec85,800eec37-c3e4-4b07-9245-762adb70834f -6a508faa-80a8-3246-9941-90d8cc8dec85,75e69a0d-c556-449a-a16e-2aef4314ab92 -6a508faa-80a8-3246-9941-90d8cc8dec85,6fd7ac35-ed33-4ebd-af0b-4ffca3b0b2e6 -6a508faa-80a8-3246-9941-90d8cc8dec85,5eb6a4df-c1b0-4a41-a547-d4ecce73de4b -6a508faa-80a8-3246-9941-90d8cc8dec85,03939a7a-659c-4fc8-84da-3ee53b063fb7 -6a508faa-80a8-3246-9941-90d8cc8dec85,e8628089-d323-4782-bc5f-295db4d192c9 -6a508faa-80a8-3246-9941-90d8cc8dec85,d5cc7b84-0076-4042-b3ac-3c03feac9ae9 -6a508faa-80a8-3246-9941-90d8cc8dec85,a099f468-a34c-4266-a639-21acbe74a3d8 -6a508faa-80a8-3246-9941-90d8cc8dec85,d57960df-b6ef-489b-b7e7-77c355c82cbc -6a508faa-80a8-3246-9941-90d8cc8dec85,7c5839be-da4a-40ee-b802-c3be891b728c -6a508faa-80a8-3246-9941-90d8cc8dec85,f415220a-9cdd-4c33-bd90-1ef54710be2b -6a508faa-80a8-3246-9941-90d8cc8dec85,a9bdf26a-d3e1-4bb0-9776-20e9499ae469 -6a508faa-80a8-3246-9941-90d8cc8dec85,b7f260a4-3804-4a8e-89a1-3154aa804088 -6a508faa-80a8-3246-9941-90d8cc8dec85,1fca1949-57ac-497a-9237-5ab6b379c23b -6a508faa-80a8-3246-9941-90d8cc8dec85,fdff8121-62d6-4177-b0b1-aa44a09cc0fe -6a508faa-80a8-3246-9941-90d8cc8dec85,1240d39f-0b52-426e-8531-6f0dc3230a69 -6a508faa-80a8-3246-9941-90d8cc8dec85,2859ec3a-7f96-4702-ac0f-c2a9e7c79256 -6a508faa-80a8-3246-9941-90d8cc8dec85,2536be20-0b3c-491c-8895-a3cb50f489f9 -6a508faa-80a8-3246-9941-90d8cc8dec85,fbecaa05-ace0-4278-ad63-787c68572ad6 -6a508faa-80a8-3246-9941-90d8cc8dec85,6abaa67c-5bdf-4e67-aa77-c53fd50b1b1f -6a508faa-80a8-3246-9941-90d8cc8dec85,67e9dceb-a2f7-4c4b-b0e8-8a17c165eeb6 -6a508faa-80a8-3246-9941-90d8cc8dec85,f28690b8-a5e6-469a-8a89-8fe87c136b5f -6a508faa-80a8-3246-9941-90d8cc8dec85,1a446e2d-0346-47db-9274-497bdcb59d21 -6a508faa-80a8-3246-9941-90d8cc8dec85,fbc40836-5cf5-430d-8aa9-c2eacd5c78a3 -6a508faa-80a8-3246-9941-90d8cc8dec85,b98c2b21-bfdc-4d5d-8aaa-598a2fbb86e8 -6a508faa-80a8-3246-9941-90d8cc8dec85,0ff4af2f-fa2f-486a-9950-49cb1144f504 -6a508faa-80a8-3246-9941-90d8cc8dec85,fe409ba4-3431-46e6-9475-c0ba8348841f -6a508faa-80a8-3246-9941-90d8cc8dec85,1637da27-7258-4b6e-aa26-afc0dba3f2cd -6a508faa-80a8-3246-9941-90d8cc8dec85,5df72163-07ca-49a6-8793-198208f4d263 -6a508faa-80a8-3246-9941-90d8cc8dec85,b1a879c1-2630-4cc5-b250-7d106e2e9ef3 -6a508faa-80a8-3246-9941-90d8cc8dec85,5cc91299-01ee-48ae-b3a9-a720d97c4918 -6a508faa-80a8-3246-9941-90d8cc8dec85,00bd4c83-e4d8-4c88-9023-943f0bfdcaaf -6a508faa-80a8-3246-9941-90d8cc8dec85,1b8129f1-67bf-4b6c-a36c-87d402557ef2 -6a508faa-80a8-3246-9941-90d8cc8dec85,d32856ba-3fba-4f6e-a2c2-c3b75e5b09fc -6a508faa-80a8-3246-9941-90d8cc8dec85,dde828e5-510b-4db8-ab24-7c5a2044d902 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b2aadff-a99b-4d7a-ab9a-c6bb9daaee0a -6a508faa-80a8-3246-9941-90d8cc8dec85,410169e6-e028-4205-9699-86695a6dc6f6 -6a508faa-80a8-3246-9941-90d8cc8dec85,1f1056bb-42a9-4fc8-928e-5a8c4aac4125 -6a508faa-80a8-3246-9941-90d8cc8dec85,052e8541-99cb-491c-98a4-ae59ad17070b -6a508faa-80a8-3246-9941-90d8cc8dec85,6974dd50-9d6e-4bfd-9cda-d9abb026f69c -6a508faa-80a8-3246-9941-90d8cc8dec85,39a9befe-b020-4dee-af62-78d5912897f2 -6a508faa-80a8-3246-9941-90d8cc8dec85,1b47ce00-a649-4774-9d74-518c968cf80c -6a508faa-80a8-3246-9941-90d8cc8dec85,8baa8445-c6ba-45f5-9b52-c76c99a4c836 -6a508faa-80a8-3246-9941-90d8cc8dec85,5be1e8d4-9753-4abe-ab63-8eb334806976 -6a508faa-80a8-3246-9941-90d8cc8dec85,9394f13b-3a53-4dd5-a092-e2bb01c2687a -6a508faa-80a8-3246-9941-90d8cc8dec85,b6c3f6b1-10ae-4157-a6dc-475397b6629b -6a508faa-80a8-3246-9941-90d8cc8dec85,cc4b86db-73cd-476a-bcb5-5d15f1bd22ab -6a508faa-80a8-3246-9941-90d8cc8dec85,d48d23fd-f053-431d-8ece-0b0b01e7473b -6a508faa-80a8-3246-9941-90d8cc8dec85,c9f1e679-4069-43e1-b8d1-23ca99f7301e -6a508faa-80a8-3246-9941-90d8cc8dec85,708e52c9-b0d0-4bbc-870d-7e19a4dc5ad7 -6a508faa-80a8-3246-9941-90d8cc8dec85,e1c832b8-e2ad-400f-964b-7fb66aefcd34 -6a508faa-80a8-3246-9941-90d8cc8dec85,79df61b4-28ad-4022-bcd7-01d1c58325f6 -6a508faa-80a8-3246-9941-90d8cc8dec85,735727a7-16ca-4074-ae5f-e2ca2ba6ec63 -6a508faa-80a8-3246-9941-90d8cc8dec85,f78f8a19-a27d-4833-9aa7-79f9584b38f3 -6a508faa-80a8-3246-9941-90d8cc8dec85,1d454a8f-8a55-4122-a505-c8b66c969f9f -6a508faa-80a8-3246-9941-90d8cc8dec85,c3c61f4b-05a9-4bb7-9dcd-13568b947b3b -6a508faa-80a8-3246-9941-90d8cc8dec85,8d4d2d29-cd2a-4284-9ad4-ead62c61ffdf -6a508faa-80a8-3246-9941-90d8cc8dec85,118ea678-f413-4890-ac04-926ab4763e2a -6a508faa-80a8-3246-9941-90d8cc8dec85,ebf13121-ec64-4326-9134-d48dc566ad47 -6a508faa-80a8-3246-9941-90d8cc8dec85,eec480b4-1720-4d01-b14d-5a1cfa99b7a6 -6a508faa-80a8-3246-9941-90d8cc8dec85,4694d95a-cee2-45eb-8cbf-e528b3326653 -6a508faa-80a8-3246-9941-90d8cc8dec85,2df9cefa-ca33-49f7-86a2-1dc5aab821c2 -6a508faa-80a8-3246-9941-90d8cc8dec85,c0e48983-35ce-4c52-a65c-52f8889f097d -6a508faa-80a8-3246-9941-90d8cc8dec85,52065757-c42f-4611-9371-7076096637d1 -6a508faa-80a8-3246-9941-90d8cc8dec85,332af0d6-8be7-429a-9152-97daeb17df7a -6a508faa-80a8-3246-9941-90d8cc8dec85,32891f10-964e-4fdf-aa8f-60b1b31fa9a2 -6a508faa-80a8-3246-9941-90d8cc8dec85,bf8499a3-1fa1-47ed-9491-3fd58b1d6fdf -6a508faa-80a8-3246-9941-90d8cc8dec85,bde991cd-de19-4a8d-b80c-42afc548e4c2 -6a508faa-80a8-3246-9941-90d8cc8dec85,36b84d72-6119-4122-ad4a-5de5ffc3ce3e -6a508faa-80a8-3246-9941-90d8cc8dec85,67af8d95-0212-41c1-a89c-bcfdfc860dd8 -6a508faa-80a8-3246-9941-90d8cc8dec85,c030d9c6-d724-4b3b-afdb-0cdbff044645 -6a508faa-80a8-3246-9941-90d8cc8dec85,fde548b9-3a95-469c-831e-bba14f0b24aa -6a508faa-80a8-3246-9941-90d8cc8dec85,a0193405-56a7-4827-943c-75289eb07d19 -6a508faa-80a8-3246-9941-90d8cc8dec85,a2b2983e-960f-410f-ada4-fe0ed0267b62 -6a508faa-80a8-3246-9941-90d8cc8dec85,f69a5abe-fc52-48d0-8a51-75a4f7633486 -6a508faa-80a8-3246-9941-90d8cc8dec85,19104acf-574b-42d9-aa70-ffa2e7071d49 -6a508faa-80a8-3246-9941-90d8cc8dec85,feb364c8-68e4-4617-9631-cb1fb2d4d788 -6a508faa-80a8-3246-9941-90d8cc8dec85,6853d560-1ca5-449a-9da7-f0f2101577e3 -6a508faa-80a8-3246-9941-90d8cc8dec85,349d460c-9ca8-4341-b4ec-8c52abb3d441 -6a508faa-80a8-3246-9941-90d8cc8dec85,a19b731a-199f-426d-8838-bf1e5ea9e9bf -6a508faa-80a8-3246-9941-90d8cc8dec85,61fd9f06-e099-42a8-aaa6-48d696282a3d -6a508faa-80a8-3246-9941-90d8cc8dec85,e102d726-f8aa-4e02-bfd5-638a50d723f0 -6a508faa-80a8-3246-9941-90d8cc8dec85,45c65c27-0afc-4b13-8600-9f61fe873549 -6a508faa-80a8-3246-9941-90d8cc8dec85,f04df6d0-79dc-4582-bc99-db50a3906da0 -6a508faa-80a8-3246-9941-90d8cc8dec85,6f3155ef-4035-4748-8051-a09105d19d64 -6a508faa-80a8-3246-9941-90d8cc8dec85,9ae0158d-af1e-4c29-b528-83e50bd00c2d -6a508faa-80a8-3246-9941-90d8cc8dec85,5e352a9a-b272-4845-a5ef-ea9026a55098 -6a508faa-80a8-3246-9941-90d8cc8dec85,d4c5f32b-5116-406d-bc83-20ba06dddd93 -6a508faa-80a8-3246-9941-90d8cc8dec85,5ffe6914-8313-47f4-8ed8-adec47f05d0b -6a508faa-80a8-3246-9941-90d8cc8dec85,93c88fbd-7281-4c06-910f-98746045fa11 -6a508faa-80a8-3246-9941-90d8cc8dec85,1288a3c9-d9b9-4d96-bd1e-7a393e35f012 -6a508faa-80a8-3246-9941-90d8cc8dec85,bdb66942-8762-4794-8df0-a5dc38ffa888 -6a508faa-80a8-3246-9941-90d8cc8dec85,ae35892d-ad5d-445c-8b50-71d221a37623 -6a508faa-80a8-3246-9941-90d8cc8dec85,bd869228-beda-4c6b-bf5d-71c7e6965602 -6a508faa-80a8-3246-9941-90d8cc8dec85,9bc73a4f-f48c-4dfe-9b39-cb4b583d0d6e -6a508faa-80a8-3246-9941-90d8cc8dec85,a072732b-8654-499a-9e6e-3bfb55ba2a81 -6a508faa-80a8-3246-9941-90d8cc8dec85,2c4de710-821d-427b-aa77-bd45bae0ce15 -6a508faa-80a8-3246-9941-90d8cc8dec85,307cd43e-14af-4d61-9036-2037dad97a06 -6a508faa-80a8-3246-9941-90d8cc8dec85,a2149e0b-5cde-4ed9-ba56-177674bddcb5 -6a508faa-80a8-3246-9941-90d8cc8dec85,e50ad741-9dc9-4d08-80ba-d6b3e98b8772 -6a508faa-80a8-3246-9941-90d8cc8dec85,b26c4556-60c7-46dd-a536-b0b9a1e25568 -6a508faa-80a8-3246-9941-90d8cc8dec85,54edc6f4-ffa9-431e-adb9-b913a25af18f -6a508faa-80a8-3246-9941-90d8cc8dec85,beae1775-0ab6-46c0-bd3f-fb434a5b3e4d -6a508faa-80a8-3246-9941-90d8cc8dec85,5b1349e5-b784-4e1b-b7e8-3944c7f9d199 -6a508faa-80a8-3246-9941-90d8cc8dec85,8e2c9568-5342-4815-9440-4e0905d25cd3 -6a508faa-80a8-3246-9941-90d8cc8dec85,6987ed8b-1da4-4364-a195-0e0c6d49242c -6a508faa-80a8-3246-9941-90d8cc8dec85,41b1c462-0d01-4190-922c-805f7bd41a55 -6a508faa-80a8-3246-9941-90d8cc8dec85,ca811051-1c1c-44f4-85d6-442d47dd0262 -6a508faa-80a8-3246-9941-90d8cc8dec85,5529825f-60b4-4204-9cc5-3558ddb37d8e -6a508faa-80a8-3246-9941-90d8cc8dec85,c5d27f4b-cfae-44bb-9be0-561a08a1bf5e -6a508faa-80a8-3246-9941-90d8cc8dec85,2a73db63-74d9-49fd-bd87-e72b941b32ae -6a508faa-80a8-3246-9941-90d8cc8dec85,148f9023-3cc8-466c-8efb-a97fb8a7a92d -6a508faa-80a8-3246-9941-90d8cc8dec85,416144d5-951f-4716-8378-00729ad16b64 -6a508faa-80a8-3246-9941-90d8cc8dec85,7e5c65c8-a8d7-4a56-9076-b13aad54305c -6a508faa-80a8-3246-9941-90d8cc8dec85,2e002464-5d7a-43bf-a00e-3278d50c88e2 -6a508faa-80a8-3246-9941-90d8cc8dec85,159c5d15-47cc-4e8b-aa17-12af5a875bdd -6a508faa-80a8-3246-9941-90d8cc8dec85,856e46c2-9c79-42bd-9ff1-db304fe9a680 -6a508faa-80a8-3246-9941-90d8cc8dec85,026c9027-5ceb-4c42-8e4d-ef05ec6a1b48 -6a508faa-80a8-3246-9941-90d8cc8dec85,4c78fcd3-b001-43cf-ba5d-15c1eadb7c95 -6a508faa-80a8-3246-9941-90d8cc8dec85,22fd1eda-89d7-43a9-a10b-eb94f591c0ca -6a508faa-80a8-3246-9941-90d8cc8dec85,0226746e-1c4a-4474-9634-9810676be8e4 -6a508faa-80a8-3246-9941-90d8cc8dec85,19ad4f13-af83-4fa7-a7eb-43d661f8b656 -6a508faa-80a8-3246-9941-90d8cc8dec85,4313ac0e-5eca-459a-bc41-17a4e4b113ea -6a508faa-80a8-3246-9941-90d8cc8dec85,2217aa03-18c4-479a-b505-625440435d3a -6a508faa-80a8-3246-9941-90d8cc8dec85,52b9c6c7-c9fe-43af-b797-a76050bdbc9e -6a508faa-80a8-3246-9941-90d8cc8dec85,da8ab572-2eff-4ad1-81a8-81e0f6dcc321 -6a508faa-80a8-3246-9941-90d8cc8dec85,e6160576-c21b-4f17-ab31-e182a9188bad -6a508faa-80a8-3246-9941-90d8cc8dec85,a343f21d-f62b-4f89-b062-e7c41a507ad9 -6a508faa-80a8-3246-9941-90d8cc8dec85,d7015866-2045-4482-a314-f944c8f54efd -6a508faa-80a8-3246-9941-90d8cc8dec85,a87fa137-f337-4afd-947c-d967b47479c5 -6a508faa-80a8-3246-9941-90d8cc8dec85,296a1373-00ca-46ec-9ebd-a7ebbe538785 -6a508faa-80a8-3246-9941-90d8cc8dec85,1f80888b-e70d-4e16-84c6-08145ab72a03 -6a508faa-80a8-3246-9941-90d8cc8dec85,3e101b6f-5c54-42ae-951d-e5309c877f16 -6a508faa-80a8-3246-9941-90d8cc8dec85,82bd12de-18aa-4a47-a9a8-ab1a139af6ca -6a508faa-80a8-3246-9941-90d8cc8dec85,7667dc2f-0726-4dc8-af28-9e1d875813e6 -6a508faa-80a8-3246-9941-90d8cc8dec85,07658797-1155-4082-b5f8-26338960f7f7 -6a508faa-80a8-3246-9941-90d8cc8dec85,61ce4653-0f61-4d37-9c82-1535b4fdfa75 -6a508faa-80a8-3246-9941-90d8cc8dec85,0e816ee0-c418-4f2e-bdf8-36207ac85999 -6a508faa-80a8-3246-9941-90d8cc8dec85,f4567f8d-1767-4cc1-a9aa-a971efa39177 -6a508faa-80a8-3246-9941-90d8cc8dec85,6d097ed6-6f0d-4cdb-9003-18622582a462 -6a508faa-80a8-3246-9941-90d8cc8dec85,52ea2877-40b5-4e4b-b08e-ea293890d438 -6a508faa-80a8-3246-9941-90d8cc8dec85,10d4a121-07d3-4bab-b659-ec2b8f24b1a5 -6a508faa-80a8-3246-9941-90d8cc8dec85,4d60f53c-8bdb-41fa-b4bd-c8e53915ebcb -6a508faa-80a8-3246-9941-90d8cc8dec85,c0aba81c-aba6-4a2e-8e40-679ddc215154 -6a508faa-80a8-3246-9941-90d8cc8dec85,e7198780-2952-4549-a2d3-032b547b1f0f -6a508faa-80a8-3246-9941-90d8cc8dec85,89d05ec8-8477-4e85-9cd6-2b5e907a0681 -6a508faa-80a8-3246-9941-90d8cc8dec85,251c3d84-c06c-4055-98d7-9ac57ff5740c -6a508faa-80a8-3246-9941-90d8cc8dec85,c3cd8584-e4a1-40f8-a339-2796384196fa -6a508faa-80a8-3246-9941-90d8cc8dec85,63c243b1-fa06-44f3-b8dc-62d416be7e13 -6a508faa-80a8-3246-9941-90d8cc8dec85,c545e699-16e8-4b97-9f44-1fcc7ae29179 -6a508faa-80a8-3246-9941-90d8cc8dec85,4f109a92-f9ab-4b92-99ee-90ba08f16b1b -6a508faa-80a8-3246-9941-90d8cc8dec85,dca90ebf-2096-4e8c-800d-db461229da63 -6a508faa-80a8-3246-9941-90d8cc8dec85,85444279-9987-4e11-bd81-ae10ddf76003 -6a508faa-80a8-3246-9941-90d8cc8dec85,16d86119-9e89-4bd9-8c24-4b289471a52e -6a508faa-80a8-3246-9941-90d8cc8dec85,d070691b-2e27-48db-a345-4ea84f1de43d -6a508faa-80a8-3246-9941-90d8cc8dec85,12e872ea-c38f-42c6-8074-1caf7796494f -6a508faa-80a8-3246-9941-90d8cc8dec85,e0176d7e-8925-4219-a5f3-8630a973bc15 -6a508faa-80a8-3246-9941-90d8cc8dec85,cb7f730a-cbad-40d5-943a-4d8cbe349a23 -6a508faa-80a8-3246-9941-90d8cc8dec85,1ebd885f-809e-4808-bd9c-dd2b4be1171a -6a508faa-80a8-3246-9941-90d8cc8dec85,79bfbb33-b619-4061-a875-1226d40b7290 -6a508faa-80a8-3246-9941-90d8cc8dec85,3dbdd076-ca0d-456d-9903-ff2d9e63780f -6a508faa-80a8-3246-9941-90d8cc8dec85,31773102-7393-430f-971b-48268c3826fb -6a508faa-80a8-3246-9941-90d8cc8dec85,024aa619-5d16-4a14-8f42-e232beece4ef -6a508faa-80a8-3246-9941-90d8cc8dec85,77ddb64c-f311-4224-8690-2b6eb6e5c0b5 -6a508faa-80a8-3246-9941-90d8cc8dec85,aa412dde-ae9a-469e-9664-21b3bffbf33b -6a508faa-80a8-3246-9941-90d8cc8dec85,23f56ef5-e235-44cc-b6bb-b4f0060310b6 diff --git a/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/EmissionsFactor.csv b/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/EmissionsFactor.csv index 3cbc722f5..8281f1aa4 100644 --- a/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/EmissionsFactor.csv +++ b/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/EmissionsFactor.csv @@ -1,10246 +1,8549 @@ -gas,region,units,reference,gpc_reference_number,actor_id,emissions_per_activity,methodology_name,metadata,year,id -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,6b5ab3ee-46bc-4026-a02d-bce70c8ec22b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,06019252-cf4c-4160-b803-7a41072faa8b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,af9cffdf-3b42-4bcc-a88f-5330f1e7519d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,e197c549-6aba-4032-ab79-e8d7de072f40 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,30f7c8e4-675a-40b3-8f78-8096bcba8614 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8aca5166-bd78-44cf-abbe-7662ebda0558 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,680f15a5-a8b8-4084-a5ab-acd43015cf07 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,58cb1272-2383-44b0-8e2d-c3a122e8a486 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,dceac096-9a2f-46d3-8501-17d94348e253 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,9874403c-4470-4ed3-b823-6c80c78e2d83 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,21d71a70-3ae2-4035-aa1d-58a7d9fd7ced -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,ac96b78b-286e-49e4-915e-e16168eb587c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,d3d95ffa-29d5-4c64-935d-754dd4e79a7b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,823077d0-92e2-4102-8665-e6d8d39a0c87 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,a58eec51-73d8-4512-9d69-340607bdf356 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,bfa44eec-bdce-47e7-9e49-8e3570995cb9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f893db27-f9d2-42d2-adf3-3e11a02387c0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,c1a4b72d-f0ce-4190-9629-13fb5c349332 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3c082bde-8c7d-4eab-80c5-0209776b43e7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,a019ac8f-7bc4-4b2b-a07d-c39153e6febf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,d134b98c-264d-4b1e-89a0-fba2eef194a0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,4bf20207-9128-4b0b-a347-5db9a58d4c43 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,569fdc6a-7a28-417a-a088-c9f091e2612b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,fc56d792-0b6f-415e-bc96-5731711842c1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f8aad96e-61d6-4a5d-9c44-fbd7f8aa5989 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,67afb053-d2b3-418d-ae31-abc5ecec46e1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,cb2dabbf-ef32-4aaf-ab12-131355853057 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,79c1b8da-272f-45c4-8f0a-dcafb5b84d93 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,a08613e9-b14b-46d7-9ef5-fbf50213e85d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,6b33bbc2-96e9-4253-8cbb-7a6a904dce2a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,dad8a6d0-73d6-474d-8701-df3c928326f3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,6cc26d1f-e4a2-4d4a-841e-b3d4e5b8a459 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,a1a291b5-5785-433b-b819-62f9bfe65674 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,b3e10099-bf3f-4f16-9c3a-e63c43e2aff3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8d1648f5-ac44-471a-ad48-6f49e2eab326 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,771f881a-66f5-4820-8d20-e2def11bc04a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,2dfa1292-2abb-47cf-9d7d-6dd23ea63f82 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,e8e25ace-77da-4d1e-9987-758ce30ab5e3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,7364159d-945c-421b-bed7-9b4443771978 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,603c312a-c057-4074-bb0c-fdf17813e412 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,6b5b3610-1fc4-4058-8092-f02b166dc451 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,fba6ac71-b66b-453f-bb8e-b7b69e4dad4b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,52970779-8158-4f5f-a7af-233f19a690f0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,97737f57-7f25-4273-95cc-d35e953ec780 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,dac9feea-2cf0-46b9-8acf-6e75d494ed55 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,513459b4-ca8c-4073-9912-2a24acf61249 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,162e158a-d4bf-4259-a420-8ee20cbaac45 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,b2e9ed94-f6bb-4e92-a220-1f2a9f92345d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,c11f5d5e-be12-4b47-8b1e-f174e7f99f6e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,5f4ab33d-c003-41e7-915b-485dcd3622d7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,cf5fdfc2-20ed-467d-b346-47b1c425d32b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,89a2a425-5fea-4f67-a7f2-839034e46525 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,7f811952-4c4f-4349-a7b6-1d100b8bb396 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,98.26666666666667,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,e64d5817-0a10-42fb-b857-a06bcadc1250 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,40ebce60-99d1-47b3-9b7d-ad613e05298e -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,5827b3bd-6e14-46c2-a1a1-4990973d40a9 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,45b76d7d-7cf2-4f0a-83c6-c2eef1c5e6af -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,9ee97bd6-cebc-477d-ac8e-df89aa095962 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3c43f491-343c-43c6-a627-987dd09b3110 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,e7899d93-9257-49bb-8218-fb7a5feb8027 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,7cfaca54-20fe-4b9c-b515-7ae553d05850 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,bc7f346a-ab98-4143-beaf-2674f80447b5 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,df6a40d9-998a-4d02-9beb-08837b45c9b3 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ca2ecdf9-f3b0-4ff2-9979-3445deb6cad0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,765a1358-6f03-4f2b-a78e-d43fc67b1340 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2543e945-bf3d-478e-90ea-5a0896417d53 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,16340e20-2249-4aef-bb8f-18bd12aca0cd -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,403648c5-e8ce-49bf-b352-c4e1036ae6a3 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,1464623b-cba0-40db-9859-6be082ad4694 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,716fe256-d05f-4bdb-8f4c-d2521d1449b0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ed43af18-ad84-4d1f-94bc-8e8b61865fa0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,6266f0b3-ef66-4352-9141-0458d50991c9 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,89df5e5f-9b1e-45ec-8b5e-026db6bd4691 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,787ef48f-3d66-4496-b56f-c056e115d452 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,4c62f0ba-ab33-4534-8651-8e89b1b1aeab -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,62f3b4b9-80de-46ef-aca0-5e8971f10cb5 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e23365c9-0c6a-422d-b95d-f9822c189235 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,647e3ebf-c1f6-43af-925a-230e1369acf7 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f420b5e2-a77d-4d9c-a61f-ca6d23490640 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f235ecab-06d6-47ac-899b-9f851b9cd335 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f597fb76-39cf-4b28-946a-bfd9a6464ff0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,97042ded-ff90-4606-8736-fd26ff634a66 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,957804d4-8ffd-44e2-b0f3-2bf896d20f47 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,dedc17b5-3a44-405d-8fa0-da6373ea2aee -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,47ecb0ba-2d0d-4571-af62-8e4699c8afe4 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,58c8cf2e-1452-4426-bc8a-a795e9001bea -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,d569541b-3a45-4cfd-8a32-ebb9791445f1 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,4b62ae4c-ee3c-4967-80ba-4ef7d7ce3f68 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,dc5e59d2-df1a-4b94-baef-61d94387819f -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,7f5659b9-c61d-4ce3-823d-8bdefadb1ebd -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,cecc4c8d-36e4-43e5-ac9a-cdfb219d1f0a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,a8098802-e40e-4f76-a176-0a54561219a7 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,493e4aee-cfa6-4882-8f19-bf56643a2cd0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,56cc575c-6878-4b11-b35f-65160c333b4c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,d85a1e08-cf2f-4993-99e2-341f1ea7c60d -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f41887e8-7a09-4370-bdc2-11a03f5b5eb3 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,4dc8d863-b436-4c1c-9492-449d022f0620 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,a7ff3522-4fe3-4277-a3ad-5df96993460e -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,dcffc8ad-afd6-4c61-8681-e76e102be5ed -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,6c526783-46e3-412b-b7ae-8a5e1480e9b0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,53a07136-a325-4cca-b5cd-951f9a5b17b1 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,1bd6d9ab-55ee-4652-a2b3-86d029cdb4fd -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,d5b34081-23d9-47c3-a040-2ad5264b7eb0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,1d38ec47-2dae-4392-b75b-9d1019bcfbc6 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,15aa4b17-ad09-49b8-82ab-333c04582b38 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,2e48e0c8-5209-460b-bcf8-44a1a448bdbd -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,2d3c152b-bb62-4987-9afd-76ab1099aeba -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,2df5edc6-6011-42f0-bf8b-90aea96d7e7c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8f4e7e51-5f95-47b6-8b4b-551d56b09bc0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,cf49878a-1421-4535-ad2a-c9f1c6ebc7ea -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f6b1f327-a5ae-48df-8193-58d7e4ee5114 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,1d287013-5902-4b60-ae8e-18d8f8f77328 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,6aa647b4-3846-4aa0-b97b-2c147311252c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,926ce778-2163-4b14-b0b9-9be698ea0bbe -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,560786f8-f6f0-42da-848d-9345b687b428 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3ce861c2-e072-41dd-b06e-65dcaedfaf75 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,cc34880a-f892-4433-a9d3-24a1954b04ea -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,1107a30e-c9bc-49e4-a4c2-d5bcde447065 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,1c911c7d-7406-4930-bfef-7be945adac7b -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,e011b493-7403-4852-a6f1-5163cd88eca3 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,ed9deda2-a171-49ef-9c1a-a374c636cc25 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,39b6f301-59de-4c52-8378-6dca41eaca5d -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3de661ee-2a7e-40c7-9ca6-ef90c2f6ffd9 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,fffc6cd6-ccb1-4196-843d-5a5373010827 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,fa1decc3-a4e6-46f3-9363-dfb05fb3adf7 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,27249d2c-938a-47c5-84f2-df0681a25cf2 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,5d06acb2-d1b3-436f-ba98-e37b12b33b99 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,dadc43f7-a4ea-4090-ac6e-28231b96fa47 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b41c857e-96eb-4477-9bf0-a4b107965f7a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,582470e1-4d61-4948-8f3e-4bcc4350cd95 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,896680f4-a9df-495d-a080-6c988ae819c9 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,590f3358-fcac-4f47-b127-b53d3cb2abe5 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,082d31d2-8750-41b2-8859-9e252d8ebf20 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,459024f0-926f-4be3-b012-1e543e806363 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,5b00eb4d-21b6-41b8-8c5e-3c6bb52ebc6a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,77cf4895-11b7-4226-9f40-cda38e33bb40 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,e2dc1e8c-b4af-4b4b-a667-9a34bd6d136a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,066028d9-cb97-4b1d-aafa-c4cfed3241c8 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,9e4a8014-a7d7-49d6-83ae-d3831127124c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b438032e-2db5-4c19-960f-f96ef9968e2c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,d17c7740-5163-4e0c-8623-4b52fced8637 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,fab5fc7a-3b8a-405b-aace-6ad5f096367a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,962cd562-2686-4bd5-b465-4258eb7a6a41 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,fc9932f4-7c1d-4add-b3fb-d976b9644a79 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a92a95a1-08af-426c-a8f8-83c3968f87a1 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,6c546453-1a70-44bb-a440-6a6bc257872d -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,5c5651e0-5d7c-4841-a2bc-e4355bd7967b -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,10ba4577-fbb0-4e62-868f-70e85dbcc3ec -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,4a922f00-cd7a-43d7-a3ae-f2ff6e42a16c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,62ccbb60-7afe-486a-b4cf-e4e6bd80216e -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,6b4e2942-ad25-4c79-9d80-6ff7dc8316e7 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,355e2246-86c7-474f-afa6-610520470387 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,7290d292-9ecd-4e40-a6a6-38d1793841db -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,b2b38497-b897-4a18-8bc4-2bdfaa8ed078 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,739b2308-f244-467e-99fe-9a404992533c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a47fe50b-4738-4d6b-a486-e6dce82bbb80 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,05f160b2-6751-4ddf-9195-5c72c73e9045 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1d0aa377-126b-4964-bb78-ca0d67d3e6b1 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a9751416-5c24-4e4b-956d-24b5ee3a75bb -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,13903419-a654-4ea7-821b-bffd10d4cfb4 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e5d1b044-e548-413e-8b3f-5a8d3550497f -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,93.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,cd3206e2-e66a-4b0d-9a9b-75d48258f14f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,9bcad770-eebc-4ea6-9a2f-b9d70d672ad0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ee46c3ff-e146-415c-85aa-8954ab9bba67 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,016a4d4f-f801-4a6d-a1aa-26b224273949 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,44e4b3e9-0c7c-45cd-85fe-c70b8e65185b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,20d505f0-cc33-4f16-87d3-bfcf2f345866 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,e666f3ad-3529-4416-a1cb-60b09c5ea5f6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,1d461ac9-1edf-4468-8ccc-915b914ceb65 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,1728dd52-d6a3-461b-94c3-afdc3d69a6f0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0bb63eeb-b357-412f-8103-73b7379f93c8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8a5c01b1-8a43-4562-8e2f-88ee8cea044f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,01b39b42-82d6-4945-b1c7-8f2a7d0ead72 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,5be90619-c5c7-48d4-a817-be03584c6af7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a8adf398-a0a9-4d42-912a-c952a83bb6d7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,00df4d78-9b95-4fb8-a3b0-0ab0440d2c1f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2de00c40-ca16-4dfb-9593-ed79ea634622 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,67d795bb-7d1f-4876-8ef7-d5ee71be87e0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,459e25c9-47fd-4c7c-95dc-6caa63e78ccd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,23ac671d-5b16-4dd1-b2df-e32464e52dc3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,20342d32-3518-4ccd-966d-937ce6c3e846 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,862d820a-f654-470d-8180-203315d4e330 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8b5a30dd-d40a-4514-b27c-da80f80b445a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e29ef160-aab6-4a8b-89ff-f2bb65b6ea46 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,fe096d08-7d2d-47ef-afdc-165f8a26c795 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,fe528275-2c64-4267-8e28-2cbab0a1ae8e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,994b3e7a-d1b6-467f-a9a3-74ed42b9aad3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,dcf2ee73-36c6-4dcb-974e-6448574b14c3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,4c1a4d49-c3ce-490f-abb5-e82559c3f1f2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,15fd9c3b-bc58-47f6-907b-805456b88d84 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,af87908f-abbd-46a3-a788-b516a7f23d61 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,67276499-1a0a-44a1-8e7e-8a8d9a1cf9f9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,695a08b7-b51e-489e-b968-56e1eccd5d46 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,6e22ac9e-c648-4a52-94ca-d326ac1d701c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8a461956-43d9-4c15-911f-5a704482cc20 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,48e03214-424f-4ac7-8054-4846af54dda4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,c042ad39-3cf9-43b4-a0f8-599737305daf -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e8c97f61-02ac-4bb1-99ed-993ddb5b5de6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,e73409f5-91d4-4f05-bdab-db5e29a6ea65 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,338fcdb2-cb6f-4fb7-a86a-12339aa213bf -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,b273cf24-5dc3-4a8e-9556-4f0dd6e0a29a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,a4f8b1f3-d619-4598-9052-6c72d96474dd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,27b2ccfe-d844-445e-81fa-94621d9f8220 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,62543b5e-9ec4-4d1a-89ac-c1eb9f436552 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,02b20354-49bb-41fb-ba51-84bb48d44e67 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,80ead7a5-9a61-45c2-9592-d4de75569ccd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,0dee13b2-b35b-4906-bceb-8f4c6dfe971a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8527af65-58b9-4290-9047-aa2f3ad21215 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,e3a0bb87-a475-4c9c-8893-0d3e84d074e6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,c342ad85-7a9f-4153-aa07-53c42362d31f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f35d96bc-dc38-4498-bcb9-e7799fba63d6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,b719a1ea-1c82-425d-bb05-eb4dda9db32d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8a859792-24a5-4a7c-9133-d83b81889350 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,ed530b0a-8496-47dd-afc4-ec5a3f85e06a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,14dd00e5-b8b1-4799-b9d8-f1e5e161bc38 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,148014ba-2612-4cfe-bedc-59e2b8662f09 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,e3752d2c-f882-49a1-a574-e237a126a9ab -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,6c1daca6-7de6-43fa-a900-33f771185862 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,119b2e11-4a4f-4c7c-a9aa-80049167011e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,095b3638-f0bc-4bdd-a631-508a41cf12e2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b07da0fe-610f-4383-830f-8b7b9fea8c2a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,065271e5-1d6e-4f04-b795-65e8020915c3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,ad25379e-c242-4b9f-8445-e3bd5efc4f64 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f9daf701-8f64-4278-80fd-74e3294a387a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2d662b1c-fd9b-4b0a-b40a-34cea41f5ff7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,641ac30c-52cd-4224-a5dc-a107c8ed7d9a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,c25b7c3c-84be-46da-9a1c-738b4086ae1f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,52741ebe-757f-4dcc-8b26-93b6003c1eb5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,17eb6400-c129-4578-9b83-a50e0174b7e5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,9cdd8b70-5b95-49ca-b18e-41b4fa44cf45 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2574d8e9-8718-4874-aae0-50e1c99fc9e6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,337f119a-7ef8-4406-b26a-669ecd4a94da -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,457345f9-4a45-403c-a37d-8cd99094559a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,dbf3dbf3-3267-4071-8d39-69591f0ab013 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,fbfa61ea-0395-405e-b3d9-e126c3afba84 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b04e1399-2dfd-4e42-9822-c4c790441eb4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,e69f3f0e-f414-4073-a91d-8f3ebd289d78 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,5b53f928-d62a-48ea-afba-1e14eab32fb7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,25e4b862-e3e1-4b3c-918f-f8351348fe63 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,76921a8d-c5e3-46bb-bcac-54122161270b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3b4146d0-3250-45b3-8cc9-7dc4fd9bc8ed -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,6a0cd8ff-305a-4712-b95f-8fa332c1a5ca -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,2cb0b0dc-f6ee-40ba-89c8-7673be96194f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,dc65a337-4ffa-45d5-8e07-35ae7ddfaf97 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3b7e5998-246e-4676-b822-019244eba790 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,d6f08a29-c7bf-40df-a244-fb968a956185 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,4b292886-9bcc-4da8-b605-0f4f47abc38e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,a1634d00-f5a3-4706-acb0-ac5327a3a458 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,d7c90aee-3b9d-42ee-8a33-6ddaf0ec6761 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,be502814-e4d2-462b-aa4b-fe0c9675a986 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f1a6309b-1ac0-4029-9ce6-309c84eaf7dd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3aa3734c-6611-46b4-9f9b-f97cd2d79ca3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a5b41af2-b1b5-48c0-9b47-4504efa91f25 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f797ffe6-9c12-4103-865e-0153c672be3c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a8e8987e-06e7-4aea-a2ea-b56a8b738234 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,6956de11-48e2-498b-84de-a38711f9ded0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,75caa1de-03ad-439c-a93a-20aac7a7e4f6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,de06535d-d267-4d0e-9f94-d3cfd43f6820 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,00cc66a9-6f90-409f-9045-739c76c4a0bc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,01245e5c-1304-4417-af82-24da748e48dc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a326e245-f606-4434-aba3-50f7cc93e9a6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e5054897-b1e0-4ead-b1bf-76fe945acf36 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,7a011136-26e0-4d5c-a83d-9f3a296e83a2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,25369e93-79df-446a-8054-75bf9f12f45d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,df865852-c8fd-471b-9a88-93bcf88cb773 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a2493bcb-6db7-4367-8ddf-7ee173da5671 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,fbd96c4d-42d7-4f2c-a942-dd377daf2bfe -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,172f64b5-b052-4cda-b1b4-f4221bbd768c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,dcd9268f-f7c5-4a13-a7a2-c7c44ae7b3d9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,93.13333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,addb9d30-847c-4854-bd22-d1f2e8e0a0e2 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,7dde69f6-1673-4577-94b5-ade64ce30c20 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,1977fb91-6618-4261-ad2a-465f1b1c9c77 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,7321c3d0-9ce9-4ae3-89bc-47dea192fc1b -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,037f0b3a-b598-4fb9-8d99-34abfd097627 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,e42ef6a5-4e4b-4ddf-b6ee-722925b4531a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8b563690-884b-4ea7-9ca2-e7ee88ad29ea -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,02633ad2-3684-43ed-b0df-4a95ead81d09 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,49c93981-e382-46fe-b1fc-f6a4c5acc159 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,bf15e4ad-825e-426d-99ff-df0c20c7c569 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0a65c97c-74db-4035-85f1-5ae721dbdf3d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a8284637-d9ed-472e-9c6a-8c9787fed897 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ae2b96f1-e7fd-4a88-a610-f0f21a8d54f2 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,858fc98c-42c0-4eca-bc4b-3f8d62104613 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,b89fcf5b-34b2-4e6f-9896-28cce230fd55 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,b569514b-4b4c-408c-a53c-5533b1eff562 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f0f179d8-0346-4f16-aca7-5f1346d6a69a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,864e9836-2870-4b04-973d-2ebc9e75815f -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,60ea001a-9bb0-445c-ab7f-725bc04326ba -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,70399e59-014d-40ba-998e-1121d5af48ff -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,58b25464-a111-4662-a4ec-502a33f0b5d2 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,1e257080-e6f7-4e7d-a8ac-9a20f299040f -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,a87377a8-515b-4d38-b721-e3df6d887202 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,84128f74-9f7c-4788-b40a-1b0fd90f9153 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,db2e5cdb-aa22-4d88-a641-f41a2b59099e -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,57a45275-7eaf-4214-9639-203fd0dd3079 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e2348a58-4c65-485b-880e-4f7daf84e5c8 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,ce07f4e5-ba61-4dfe-b6d5-7a5cb55bc782 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,6a1e4b3b-0946-4efa-9dbc-081daee089b4 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,97a3fc5b-a702-4b88-b4a4-22171bf89da3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3d706e3d-af82-4279-860b-6fa725bdc7aa -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8b5c23a1-44a5-477b-b6c3-af311274030c -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,67afbb0c-2f0f-42a7-ab1f-ed79694640b6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,a82592ec-dbf9-4218-9446-d62e9854afdf -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,288a12a5-4467-4af0-8fda-4423dd1520a7 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,10f88caa-fd99-4dec-a421-9e2b91471e6d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8cd56e0d-f974-4121-a1c0-471a64c3d7cc -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,4ca1f0cd-5ac4-49f0-817c-48d83f631784 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,73eb0b2f-6d00-4133-9d5e-0f31809e0bf4 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,03af98c0-680b-4834-8d39-fc474444b337 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,1d27fc45-f41b-4644-9fd4-f94f07e6073b -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f221e96c-f8a1-4a5c-a27b-722e47c9afa0 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f221032a-7a60-4fd6-92df-e5bf09a1484f -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,297284e8-9ecf-4290-b202-95f690531f6f -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,b0ad7b5e-4b65-4466-9ef0-5afdfc45be15 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,4ab48a20-e771-47ac-a088-08dd1b531389 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,ed6e6471-1e29-442e-b569-c47139b6ea9d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,c83c0168-06ea-4737-ad93-96846e587544 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,7f4b2176-c6d1-4d26-bb41-c6a73c32a82a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,282b4bf3-9028-4d9d-9e31-82d447981c90 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,0a815919-ccd1-4935-8b57-9ebe78902fc7 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,a35399ac-3a93-4ff9-ae61-07ba443757cb -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,84380a9c-bee8-4561-93af-16264f5d35ba -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,049fb9cb-9e08-4379-b1f7-fbb3ae5f5095 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,356c5723-0855-48b4-86fb-fac0d4da93f9 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,c69ef9db-c6ad-4f50-a96f-5bf3fd6d5b69 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f4dc413a-5143-4da5-a470-23e759cfc160 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b8035fe2-5854-4a99-968e-23dcb55e2fd6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,16b03f0d-bf26-4412-bda6-98fbff112bfd -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,25080f06-87d2-4d66-b952-5802e535c935 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,490d5443-2a2a-406a-9489-85699a5ea8a5 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,922a703a-8de8-4dcf-9adc-86dcad25e341 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,dde57b2c-f51d-40c7-beae-c808e83b61b2 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,1d53f9a5-d635-4b1d-aa08-994166cc203b -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,5d6df53a-686b-47f7-9700-c91dfa48a7d9 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,94c94e97-0f60-4eb5-a03e-d810682db97e -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a877682d-0ca4-423a-b5cd-f24a9a4e44e9 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,cc3d8805-88b5-43de-8327-35cf15194127 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,4e893d96-543e-48b2-877e-d48fec614135 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,16bc9f24-fe5e-4b29-9b05-283d5f4b986b -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,9d9ed530-a084-40a4-804a-07fba135e1b0 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,c571d5df-f86c-43eb-981f-601638ddab43 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,27bd5ebe-6bc2-4051-aa31-09ecd5b9efc3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c14c7259-2ad6-4b45-b061-e656815a3f27 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,d062b1f3-3c43-4e9b-9b68-963692f9be89 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c20edccb-da2c-404c-b547-0b5644326da5 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,9b3345a5-c2e4-4f4c-bcd4-36e51ac42e1f -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b87ff1c0-540d-4635-9d4b-bb1b0c370166 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,58ebf120-27b7-4105-89ad-c933937594df -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,fc47514c-ace9-42f7-ad40-4c9295ebd3f0 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,843dd98e-9fe6-4782-a1f5-88832c4dbe5d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c4537222-7ce6-490a-98bc-379e3a0951d3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,96cb2e23-1642-4e53-953f-00da66cac9a3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f3602f94-4c38-4246-bcec-2ff53bddce54 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,a682faaa-562f-4486-bede-8095e848fbd8 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c4eb0065-9380-4140-a19a-9d7593d4cc9d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,80323891-4957-4a47-ad26-7eb7c894dc06 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,afe72c2a-59c5-4acc-8d33-2ce3213e7f46 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,72ef2076-552b-491a-a8e4-c1e49b3181fe -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c31d38cc-828a-444c-9f54-6e562cd87ecf -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,35212003-c3f8-4c77-9df9-460d670f3675 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,09781cae-aef8-4b8c-923f-23ecfe1e51cc -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,341069c3-11cf-47a1-bd52-6dba99bb4859 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a3a036a4-fc15-4f50-844d-58875fc77069 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3e9a7a1c-7706-457b-9d5a-8a81f2b8b6b6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ee26a58c-93dd-4e1c-b29d-891deb463cf3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,9ba70e37-e52e-4fc3-adfb-2bb266b11b47 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e640f0ce-4b6c-416b-86f5-63fd3aef09ea -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2101577e-d319-4b7d-b3fa-9a3dcf6f37e4 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1c545e22-2280-4412-b598-2d8b8da90199 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ac42a56d-f081-4a72-ac97-8c338f274ce3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0e7b8702-13b7-45f1-9a85-14cd5f4a599a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,6c6a12d2-cb1f-434e-9db4-572096e3332d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,06cd4473-0d67-4f82-80f8-581aeaa1e6b6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c1507411-013a-40b9-b0d3-8c38b8eb0788 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1c445a26-3451-4b4b-b205-fea415e874f3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a86cef59-05d8-4671-ad9d-e8c0eeed8ea9 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,d7bc5c80-debd-4226-84e4-96d89f462a66 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,bf5d3117-e6f6-4cbd-9144-89aa8ea092cc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,dfed88a4-345a-4866-9f8d-8436a98cf8f8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,7deeeb85-e902-4e9e-8605-70a3c9ac62cb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,6d2990e8-7246-478b-a709-a8550e459d09 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0cfc53fa-defe-470f-9239-a1b7edaf02fb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,60363951-fb8c-4972-be89-50ed1d677624 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,15bf268a-b9fc-4705-8980-1f2c8f7fd596 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ad12d6d6-2aa9-4c76-bbd6-7337fd21e5e4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,e89cdcdc-8382-440e-8f4b-59179dfdff4b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a018d3ca-ecb2-48f6-9ad8-c40ff76841b4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,4e0c3d20-4999-4c7d-b405-8721e27a84f7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,dfcd01d3-9172-4e52-aea1-c3774aeec3d2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,52647125-a2de-4448-a43b-e4a3b1d32f7c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ac249c6e-470f-4928-a7fd-308f4175bb21 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,c8b605ce-1b83-4749-b9b3-54dfe9feaac7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3b0b71a7-4f98-4ac2-be66-08f8f5e889f6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3cd30401-6f84-4f5c-ae85-b9ab5f9181d6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0232b915-2407-4b78-9bc7-63ae81d1e3c6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f2284e72-30fa-4828-9ce0-edeebc556035 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,d1db193f-0524-471e-ac58-db8943d678ae -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,a4950534-aa4a-422f-8dd2-f206ef2dd020 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,382df10a-02f3-4615-86a8-f08248dd3317 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,bf544637-0588-45b6-92d3-86914d24ae99 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,b260b9a1-a014-478d-b340-bee4d387ef40 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,a7a0f174-4471-47de-9057-a64ac7041f85 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e670812f-4433-4b0a-90fb-ffef41306c32 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8055e93a-35c5-414b-8298-4a6e58f17143 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,7738dcc0-8d08-4ed6-b94b-b0fe81fcdc45 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,4e7e012b-c35f-4d4a-8cf0-75f705a08165 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8d85adbb-e018-4a7e-a71d-3bf9b8b01909 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,c67f6229-b8a1-4aec-866f-21795dbfdd13 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,45e92b40-3c7c-4881-8689-7977bbb6229b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,ee611226-63d4-4f31-bc77-b9dff07a2db2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f7f4c40b-9c48-4973-911d-116af6aa6d29 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,2535bd68-836e-47ef-9217-083cac69c351 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,b8ea9e64-ced3-4936-8b53-abf4ca08430e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,a5ff64c2-78d6-4bc1-8021-75befc815a1a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,fe623d5e-eeed-40bb-94ad-2806e868ce08 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,c68cd3d4-d780-47a1-bcda-137ad2c4e366 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,39891d39-e531-4041-b8c3-966adce7fe85 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,228a7e29-2400-4fd2-8eba-42ff36c14692 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,35d24760-bc67-4185-8686-71013eee2fc6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,1c4748e8-b371-49b6-a1fa-f52cda0f2542 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,415832f7-0738-4a24-9aee-c8da117bbe86 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,c7c3ac11-4416-42ec-9873-d53b7c0a94ba -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,1eee5552-c9a0-4a62-afcb-fef6d9bb04d1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,6323410e-5f02-43a1-94b4-ff7a4d440cf6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,4f189d91-94de-4bdc-93b3-6026260f0c1f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,ddd893d0-60cf-4eee-b363-e94625c77a41 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,82da0fa6-718a-4c56-9cd7-b49bc910a4be -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,e758adf5-0fdc-4dc4-b577-6d3bdb9f7f41 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,6d2e1aa7-df53-40d9-a14d-fb76fa561040 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,74762454-efd9-4284-96d6-5dc1371d8f45 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,91035520-5684-4fb3-9603-d65805d51779 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8e731dd8-027e-46ca-bddb-3a336402478f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,e4e44017-ff9f-4700-bd36-bb25a0126072 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b17d2f97-d436-455b-8934-78022144ee1d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,d0817dde-e57a-4f63-b93d-86b28bc2ca3b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,ade95f6e-a0c4-4bdc-956a-4b22e90b709a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2690df1d-77f5-425d-b2e1-858cc8b36f88 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,e74fff81-dec2-4e6f-a0fd-b75e17e1781d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,476b560b-f577-4566-a7d0-52f9316ed1a4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ab98962-0ac4-4e53-a9a2-c1d153f7b1cf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a2b3c057-7a92-4240-981f-ab92b89ec51c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,939f1f32-ef43-4db0-8dc9-eb8d1159c709 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,d6b1ea17-4138-4327-9629-b0a1e28b9b1e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,62027f23-47ef-4e27-95f9-e6b5cb5b8064 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2b75cea3-44fa-4e3f-a9b8-61089d02d641 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a822685d-2e0c-4c87-a216-0151ac467e4f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b8343c88-d9e9-4d4b-bc1d-4018208a7003 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a8dd2d07-b12d-4dbf-8d71-7e802f0ad079 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a5d39915-7186-45f3-8d68-e7185cb0a290 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,d721e514-b49d-4603-b429-efae259b650b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c131bcaa-0bb3-4a5e-8f9b-a10db5b579ff -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,4de84979-262d-4c38-a467-f6411688de8b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f318d1d2-ae92-43ee-b904-372de325ece2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,22790ed2-bee6-4267-8c4d-03d1765f5378 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,ee8739ea-3605-44c0-bc6b-e6836e504db0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,d9ad197a-409d-47d6-8913-e12854266a73 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,bfdfc0e5-7f20-4e58-bc8e-dc5e33adaa87 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,5cebd852-5076-4997-ab87-f592d09dd505 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,28555053-9d26-4fae-b7ec-48ca9291aaa4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,0fddf496-5949-462b-8782-9e5233346cff -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,d585c66c-f3a1-41c4-a0e6-a88fa46f2dcb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c2962986-9444-4e83-9085-230bcbf9f367 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b6868ee4-ce37-498b-ac90-e4103c3d7447 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,5a6b513c-244a-4c2b-97ee-8e7a757132d1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,71b523fa-8452-4677-9a51-5ecb30d19312 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c0f0ea39-ca5e-4162-871c-2631a0b2c66d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,6131c41c-85e7-4e7c-9f81-8f1ee073d2cf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,e801e67f-f39e-4240-b0b6-fe220c5d53f7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ff941aa2-0e84-4897-bdd1-62115a66de52 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,88bdb8fb-232e-4b26-979b-ccb259b614e4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,4ba07dcb-6939-4fbc-9060-52d40b084acb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0e1902f1-ab0f-4f10-b347-2a4a58ec420a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2c17d8aa-fb5c-499a-bffb-b2f07981bcdc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,00d5c565-b308-4c82-a3a0-36651a93b24c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,36ce6dff-d92b-4c7d-bff4-ad6dcc8eccde -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,cf6267b3-6c3b-45cf-a99a-c4f3ca40498c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e2cc281d-c0dd-4e3b-bf32-fa01298079a3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,03ff7646-7a3a-4d66-9422-ff4f6d906523 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ca8097f1-d217-4c12-804e-0d4718497752 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,463165fb-094e-4186-81a0-ed7288496729 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2d048194-614c-4de2-8b9d-3072faa3042b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,425fb7ee-82ea-44e2-83c8-8fa3efed7e8c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0f1be629-9ba6-4777-ad51-a78608663c31 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ff399254-ee37-44c4-b150-b004a347797f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,219f6d2b-bfdd-49f6-b97c-77ecb5949ee1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,94.6,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ce2a8045-9eb0-4540-95d4-3708b0eef2b2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,5167c28b-0750-4b8c-b412-966c61c010f1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,00c9f730-4f69-4499-8a00-ee520a8cc26a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,dfdb96ac-934c-49af-bb72-8bc154970941 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,4cf88cc1-cf7a-4380-bf31-f89d283e0000 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,7aa60e96-4622-4ed2-873a-5b27fd51dd9d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,c11035a5-ffb9-4e41-becb-888ffc62c170 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,88173ebe-1802-4a58-81e2-dfac9d308a37 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,9acad0cb-3444-44fb-8aea-1bcd287d68ca -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,767cac97-c3c4-4e6f-a538-674ed640388f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,822bdf4b-a0d6-4646-8f89-8b9238c2fbc0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,eac6e0d5-cece-4fb7-a873-614f68bebb97 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,96fd4051-74fe-4f65-92c9-5d462b0f4ee6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,041f9729-0ffe-4ce6-83a4-0a719d8a2b3a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,1f675636-2fd7-4b32-9e7e-d9ba188cd27e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,658400fe-6a20-4e46-b590-d01b128b75aa -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,da1a0f64-eff3-433f-8baf-7f506173ee9b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,4ccf66da-0fca-4b88-a547-fa4eac9e11de -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3c370f73-432a-400b-8590-c621ff6a1420 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8060cbca-ebe6-4aee-8b52-2e8685b917d3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,4399a763-5548-4c7a-ac81-d64fbbcf3f4e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,c47429c7-6b42-435e-933a-9033c95ba46a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,20a1eed9-abf2-4792-ad58-96c57ca95a4b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,e849fe5c-b1ce-4b9f-bf29-9addbc60f1a7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,bc870dfa-93a9-40fb-9b83-c2251a8110dd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,d4703ce9-73d1-47d7-af91-39a3c0e3cbfa -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,c2a6c15e-40ae-4e27-8640-a058ba8a750d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,16513ce1-9b2d-4bba-b768-4935e1f6e84f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,c9526083-8703-41f4-b4bc-b3de53ebc729 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,9fe953a1-fe37-4420-b67d-deab545fbe65 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,9bf94129-d29f-4884-b6f0-f35f935c9d9f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,777d83d4-3cc8-4e62-acce-fa9af7d2b47e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,5abe00fa-cbfc-4251-8ea2-abede5a6b128 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,7bd0f1f9-e3da-4aba-9be4-2d48fc133cad -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,6d8dea36-feb8-4fff-ba7a-d445a1f2cc63 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,dce931a9-6fcb-4216-bef6-4f31206bd08f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,045118bd-ab91-449c-80fa-6950ad15ea7c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,9519604a-d9a7-4d43-9ce4-591411e15fe7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,5ce5ca60-f971-455a-b4aa-1c7b1e2b199c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,1cb8e5b9-baf3-46d1-a5b8-3510ff53d4ed -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f8890b8f-cf9d-4997-aab8-ce31cc77c873 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,fe4b2cd8-ca1d-4f1d-8450-0777b4d85c54 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,035c6a20-2db8-45e0-b61e-08f15c2495ea -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,349d828b-365f-4e00-b44a-f26cd6283e03 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,97c83cd7-44be-41e2-ad0c-31b5c8a49b68 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3a0bba3f-9627-46cb-b45d-b3b8b71c1e51 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,a50c1944-371f-4ae3-ab96-ca91c863389b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,4ef161cd-d5ff-4c63-b56d-e11e7c771771 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,7f0a0c08-4bc7-4876-b699-fc6312dedb47 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,81208411-61e1-41e7-b81c-d61eeae97457 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,74e26606-64b2-4b82-99ec-844ab61cd0c2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,72c2defb-01ff-4959-99b3-1cb4c0617009 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,c3dbb07f-48d4-448b-939f-f50e5b226fc8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,cb79c792-14c1-47e7-8208-33520ec77a87 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,19d4938d-7465-4044-b83e-87ac1b0d08fe -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3b555c4b-807e-47cc-82f1-c4d2a4ce2e4b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,0909fb7c-938d-4e12-917a-74e1c162fdc9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,7cd8a48a-3e2d-40a2-b992-1cacdf3b95e6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,415bc06b-d49c-492d-b9d2-5fe178a5b518 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,47611971-cab8-43f5-9913-3d804f98f3d2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,b9a3acd9-0ac4-4c35-83e4-be3a5563e29a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,0d3a85db-c104-4884-8fa8-ba4894c112d9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8f8fa6cd-2b15-49cb-a87b-5dd0848a371b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,b49c47c5-af16-48d6-97d9-dc82f460d9d5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,5cd1f8b8-1d7e-4677-a7d5-7ab354c03361 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,6e78f911-1dca-4cce-924c-fd4c25c4c769 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,e4701948-34d3-4c09-bde3-b324a098fb84 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,44e5c8fd-62c3-44dc-8596-14b4926f2c2d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,88f66bc1-769a-458a-9f6c-cac118f1941f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,0f0e2573-36c9-479c-92a0-90afeaad53cb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,af428f54-5348-4bc4-bd80-2a5a7674d757 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,0b9da084-356b-4a69-98d7-29368564762f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,ed2b3b7b-725b-4c47-9e58-28b9814631c1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,a5abddec-6264-41e2-b8b6-8f245a44fa82 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,36e254df-5119-49b1-9856-34f22229cef1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f8cfbc81-70d2-4d4d-be91-04afcf31ef96 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3519bb60-62ea-4732-afe6-b86028cdd88d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,42acabe0-9e0d-43eb-ba70-fa88774a4422 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,d72abe59-52ae-482a-9194-ebc0fffd2bf3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,e3ec8792-5a13-41e8-87a9-22cbd3b4c51d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,652c27b7-0d91-4b3c-a915-bf4b62ca7644 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,2e22e1e6-4bad-4402-ae18-35ae4383c2ba -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,0c38d42e-3544-42bf-bd5c-17a74dab6e78 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,66e23797-37a1-44f9-928a-c226964b30ca -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,53346cde-f711-4f2f-9ccb-2db9ab827c1d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3ef74fad-3a9a-4c92-8a7f-b72bf9f95759 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,7237f952-1555-48bc-a778-a65a569bf1b4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,4fe87761-16f6-4a4e-9c04-7ee45c770953 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,6c4cbe2c-abc8-4f7c-8e23-e078a588596a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,a8b4f024-07c8-47ad-acc7-dc9894d64069 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,101.2,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,d14eec69-4845-46a0-a585-bc518ae70b21 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,105.96666666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,a8f8db77-bf9e-42eb-976e-30ff893852ac -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,105.96666666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,dc2562af-128a-4481-af70-6b8cf82ec6d4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,105.96666666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,17281846-eb01-4714-a384-7f55e3312769 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,105.96666666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,87060d50-4f6b-4bb5-8e29-3799e0d926f0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,105.96666666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,b8b3e5c4-b21e-4335-aae4-ee0a6c0c45fe -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,105.96666666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,c93c6b95-3a05-47c5-a8be-1125a9c4a940 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,105.96666666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3df4b34c-006a-463f-adcd-8c19cc0277c8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,105.96666666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,63a09821-db97-477e-b30a-f7c86fad5172 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,105.96666666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,a0611719-f3e5-4ab1-a998-0e2eeb91a740 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,105.96666666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,22d0feba-03ab-46eb-bcd5-6c9b79bee02b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,105.96666666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,fd71f704-2fd9-4263-8735-35c01b164c96 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,105.96666666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,7b2af8bb-2eb9-4131-9695-608d70216145 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,105.96666666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,96739a9f-7e2d-4a9b-bebc-e071f5ad9f2b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,105.96666666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,03edbbae-7877-4d88-bc09-73b580bcd88d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,105.96666666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,56caca33-fb2d-447e-b0ff-50e6c797fc57 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,105.96666666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,77e6276e-6756-47cf-a53d-8d2f923fefaa -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,105.96666666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,7eaab809-20be-440d-9bdd-9ec0d7bb1645 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,105.96666666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,be4265af-3606-4d2a-8879-ba174568793b -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,204f3a75-e64d-4bfb-8136-3b67f2e35cde -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,bca43849-bc3e-4ea5-a166-7136a2d8dfb3 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,010f9354-b6cc-45bf-8e87-318efe29c0ea -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f525994f-7aaa-41d7-9fc0-de5a344218c1 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f64a6a63-be98-40cc-bea6-d1e5cb812543 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,36136b3c-a729-4967-94ca-c5bc32a14a0c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4ff959ac-620b-4249-bbe4-a07a88c2f2df -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,dea4d43b-b762-4452-bebf-ec7694a77707 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1905c5fc-3290-4617-b3a1-cefdacad77a7 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2b58fe78-14cf-4977-9410-3572e5a8966f -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,32266732-49de-4729-ad00-58073020e42e -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,75e160a9-289e-48e2-adec-b9b3555bc939 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,9caaece6-6712-49bb-8f71-c22ddfd8a505 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3ff5cbc3-f351-46d3-a380-854521c15a03 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,b0bb9a2f-9e5c-4100-81f7-e0ac90f5309e -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1157612d-304f-42b8-a2f8-0af44cc8b602 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,09f7dd69-4dfa-4e2e-979a-812ad7c75067 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ab8b2a1e-cbc6-4789-a38b-4574299836d7 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,945aca71-1853-4199-bc4b-c1854bfdce72 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,77bb1e37-095a-4f81-9025-c83615fa8104 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9e82f72a-375a-4144-8c8c-db08aeaa6a5d -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,39aa7e79-c165-472f-89cc-e77480a18278 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a54e84cc-1c96-43cd-ae4d-04bbaff04cc0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,b95ec404-fd56-49b6-aa11-bffdb293e4ba -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,25d98600-357c-4ed2-b585-db237a0662cb -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,96feb7a0-5f70-46c4-bf94-45515b0de757 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d64f8303-2d00-4f91-a47f-f6ef40648b1a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,c525be16-ba28-48e8-b816-c89aafcd9be0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,1e85458b-7215-4d18-9d76-fc8e3e8a5353 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,394a07e5-0445-4880-9816-1b36703d97a9 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,6a300ed0-6834-4b07-acde-998b58283c41 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,380c5cba-b8ab-486f-94b7-5c8a966fa7fc -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,508b7b5d-49ae-4529-915e-a58c29d22299 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,49d1df71-a939-426c-8ee1-b7a527a7fe99 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7a3137ff-00ed-45f3-80fa-9731c06e2098 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9ccfa0cc-5e29-40f0-9b62-510b0f60a972 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,9de13aaa-0b25-4399-80aa-7d7fdac5b009 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f8577eac-42c5-484d-8af0-6e8ac302602a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,a8b3542d-e659-407b-b928-94fd518d8af5 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,6e8dde95-8b2c-41d7-93b4-ad5c609479e2 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,4459c0ee-21c6-4e76-8de9-ff9b71d8078c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,78f54833-1cea-4804-a08c-44142fb59b1d -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f0b7bdab-b514-44b7-bc46-64affecaafab -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f475a938-6b28-4ede-8060-6ccf02a12aba -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,2d488ecd-ab68-4837-b594-7c27cfdf3f5d -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,74e1ba2a-7e3e-41f3-86db-d077284be750 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,e67ccb3f-81f6-4312-9341-a60b57c28ee3 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,4c74e959-72b5-4b8b-913b-7f399b6f0eed -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,94401f67-53a7-4d0e-8635-66a09ee1bceb -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,6c76242b-aff2-4dec-b835-1cf90d7b65ba -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,e669bf1d-9fb4-40f8-8a28-3babb8995cc0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,119bc8a9-9c48-4a2e-b0e2-c1cecd9f8e18 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f91494c3-46fc-4a7c-950f-78b265b9bda4 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,38d9ef6e-c862-4729-bb98-3544dc27f50e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ac2f79c3-9a9c-4be4-954e-242c4cdc40f4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6680c7c7-f26b-4c45-a959-c748fbe03afd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,dc06519f-c3c3-4702-bc1c-302af368569a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d2842a31-7a5f-4618-8657-354d1d4b3909 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,40b8b155-417c-430d-89fa-24d68a0677ce -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8c96f191-fa10-46e4-b2d8-245ec4531788 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,277d945b-75c3-4be1-a264-8161272cd92d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,427caebf-fb9f-4d68-980d-f58389ad6f3c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,903dcb0a-0f29-4934-a7ef-67f89e65cc68 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,edd9bd2d-550e-4b60-8e20-05e2615a8181 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4b71f264-70ec-4854-b479-84296af16d2a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,fa59078d-4fd3-4df6-93bd-a67c1dd72acb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,33fdf40e-e6b1-4922-a0f9-b9b1647f03c0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,5ac4d989-afeb-4ac3-9150-759ee12bc47a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,a31bb58c-e03a-487b-9f6b-b51193fcf909 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2dae3b87-48e6-46cd-9830-6944d89bf5de -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ec374c99-fe37-4d5d-9537-2dbc42f6ef1a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,61e4e561-381c-4dab-b93b-cbd8aeaf0058 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,92e6f071-d240-4852-9c52-d1a76bfe5d1f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,20008561-cf79-49f1-8289-86bd5ba29ac0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,e64b8d7f-6d23-4f07-a446-1691dfd1a49c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,893b2f0d-1691-4321-8347-9a4666845947 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,522659da-7b03-43f4-a365-3cd15cb99ac2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,250d5a1f-dd94-448d-94e7-7f7a8aa6ad33 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,55910638-a9f9-40e1-9f9a-e9713da407b3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,3f320e46-3d13-49f8-ab21-5ff7ceaf51e1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a51a02c3-920a-4d5e-bb9d-756b47cddd12 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,58af0eb5-5ea5-407c-b4ab-bf865c6eb0f4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9c5de581-8271-4043-b7b1-444f784665e3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,13425ccc-b44d-4f17-8879-a0ba66d18373 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,8ccf2000-f8b0-42f5-939e-6ad98df026fc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9dade058-6746-445e-a7d6-9c6b172847b8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,1fe08984-bf4b-42ee-ad20-6ae65a1af543 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,14cc322c-2d55-4c9f-bf4b-72a956d7d886 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,1c88767e-807e-4eca-b6cb-31ba04cf4365 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,040e66be-075a-4612-9939-77cba19ce687 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,84061562-2284-4b72-bf54-3eb57833a82e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,950c26eb-bc59-46fe-a823-3ee64e039474 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,7b1e1dfe-d84f-46f2-aeea-f5e1a40f8047 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,e2baf572-b8a9-4f72-b103-c78240dc3058 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,1af35e9b-5d2b-428b-9bbd-179d4efa45a3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,cddbec87-1051-4639-9941-533e4e7d308a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,dafd22a7-57be-43fc-99bb-547d729cf55a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,098916da-10f7-45da-a2c1-03291a2b8733 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,16563c45-4874-45f6-bae6-f494f4e3c863 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,ef15e0cc-6c4d-4fd8-891b-856b3519de4c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,054ea7a7-8a6f-4851-898a-479481cfc405 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,ba3f4938-8bbe-418c-9cd2-c37e6bd6a2ef -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,40eda9a0-7d26-4494-a35a-ecca9c4df02c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,b95adf74-e418-4ff0-ac89-143c78966c28 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,ce8d1128-2090-47f7-8299-805406d58eef -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,348a16dc-b540-4279-8234-f2a61cf6f8d3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,e0e0c1bf-cdec-4059-9745-7ae5610fee55 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.0,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,9c408c92-2a34-4112-ba42-128ec59067e4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,98f770e2-c38b-4a27-8266-7dce886ccbbc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4d91670c-9e3a-461f-a127-ab8dbcdb88a0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f0a84881-26fd-4516-9692-4095fb4b9cca -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2e3c6c86-00d3-4173-9234-c4133162384d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3bf3b0a4-b472-46b5-aaae-5fe3d728e1fb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2c1c49ce-c6ac-4756-b427-6725fe42db93 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d20e801d-b06a-4a21-8185-b7d87d38653e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,bf803085-83fb-4d32-9c35-9c00e3320c69 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3bc35eba-aa3a-422b-af0f-9734a166863b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,5addf892-7c4d-41d5-a928-1ed09de8f09f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,7f7298e5-7855-4c8d-8de6-87af7823e780 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,b8813077-9eab-41be-962f-a6148007dd1c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,9e1e5aa5-cd5a-4b87-bbed-adec6a54e172 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,98a62473-475c-4155-9590-ff7969247e84 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,a054f615-45e2-45ba-862e-0375a8af6dfd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,19bf7fee-6718-43a4-9bd1-d4f72d11420e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c69cb21e-dee0-45e5-b8f5-65301ccac4bb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,a8da387f-03d7-49ff-b360-07e48f257ad9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,daeb16af-d1fd-462e-9076-c25f01635389 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9292f2fa-cf96-460f-905e-d3a209d4b983 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,88624ab8-5e99-4340-9fda-c76eb4a222e3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,159482a8-62ca-4fea-9506-82bdbc5d0c95 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,85a5843f-f735-4b32-afa7-210ed9da2f62 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,0dac4b97-5397-48c1-9ff3-f20602c9a2b7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,af0850a7-6f4b-47d0-9541-0fcfafed36b6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,3b561fe8-0de8-4906-86b3-022c6d5ddcd4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,72702c42-e11a-48de-ae11-9355a641db28 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d8cee69e-1dca-4b71-9744-6c09e4989700 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d39fdd83-7c42-43de-a9a2-423bd9450db3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,e4054b56-484b-490a-8b93-5869607bcd0a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,f919f952-69f3-4a06-927e-6985fa0a0af5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,1cfd8e23-69b9-4ee2-b75b-68911082ace2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,0a786cb4-a8e5-4de3-a4ca-f0dcaa0123b7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,968680a4-ef7d-4fad-bf61-73bf28493fac -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7fc4d1ec-2b7e-4018-8097-16f33f6f1995 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,87e12be6-1018-4217-b2f5-296a4c22e2ea -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,4cb8253d-2a9f-4aa9-a5e1-f4e041522b53 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,254f6061-b050-4d6c-8141-82884b23fe8c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,6ec816fb-15bb-485a-8c07-52a8e0fd439e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,5d46814c-e080-438d-955e-088d575fcce0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,aa1c4c25-a182-4be4-90aa-04485f374d2c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,7d2afe05-6eb0-42a4-afe3-06df71b000a3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,44e613f5-a8e6-4ded-b2a3-2b78cf12ea69 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,89708b10-97ad-406f-b80a-ba00be595836 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8b2847e5-1324-44b8-9547-da2f3488ea60 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,48164aa9-2de9-47e9-a3eb-2d64820da8a0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,29c22612-ce1c-4c2e-bcf5-4d026bcf1df8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3426a2f9-372f-498d-99a7-69179477f63d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3c82f194-1264-4a6a-b5d4-85c3bcd51044 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,d967fcba-b61c-48c3-8c07-4cd7ec65e6d1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,105f58c9-23d2-4641-8bf3-c4994fd7ba21 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,2936bb51-771e-47df-bafc-6f9cc86f2f1b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,6733c98d-c454-42c6-ada9-47e012f680cc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,bbd175e4-e2b7-4033-b21d-fa425335c5f8 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,7f8d4962-9a20-4cdf-be00-c8455384b14b -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,96edfc7d-de61-4e1f-9808-742c8a86d039 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,9183fb05-30df-4b2b-98ad-d16465282c57 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c12f3f07-561a-408e-9547-50b6062b4966 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e19298c2-c3e3-48c4-a097-abd21d7131b2 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6855aef0-7f6e-41d8-b10b-d0c94c7c3f4a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8d8462a9-4ee2-4057-8610-e075d307bdae -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,89c791aa-5eeb-4334-ac1e-192476f2822f -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1be7b758-c666-4d59-a248-2dadd1df4f3a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f33cdf21-00ae-4f40-ab87-ab4f5f267c9c -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,96134cb7-5fc4-421e-9488-4a46dcfe021d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,290532a2-4f24-4bb4-9ffa-fcaef5254af5 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,93ad5697-0b8c-47fc-ad52-ea5d62d2dea5 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3daf8f4d-7903-4cd5-971f-fc74dc93482d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2c2035c7-4a97-417e-b447-14858f03e48a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2d56c44f-a298-4c04-b02a-a7a9106aa44e -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,9d865471-67c6-48a4-af38-ac71b7b42864 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,7957acf3-c282-4a00-9206-4ebb6085416a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a0dea33d-303c-4fb5-b100-83ed38630fba -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,67fab8e6-1b1e-49b1-a2db-632eef186891 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,c9f19d64-0c69-4e1b-8f53-2cf66b46675c -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,25b055eb-9706-47bb-8ca9-eacaeca893e7 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7ce7bca1-4b80-4d2b-82b1-a8c8cc3bc592 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d21332e3-f320-4d73-b09d-90491b07ac00 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,4f1cf220-ad81-4383-ae88-9cff4bfce15d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,508bbb11-dd97-472f-895e-5b83d19836db -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,4b82a815-972e-4748-9488-ea27e30f345d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,761507ce-5454-4cfb-981a-33dc250cd492 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,95347f69-a310-4180-b3b6-04753f37160a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,cdee7201-684d-41bb-a14a-47f74fcb3943 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,4bb3ecb2-c5d7-4ef8-a544-f9fa8e960997 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,5ee22867-c19f-4056-beb0-7f556d8558a9 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,6f314e98-efde-46e0-8d7c-fdf1f8dfd168 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,fa8f3255-392a-4645-8a48-1e66fb3da604 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d8501e12-47dd-4c17-a0a3-9e67a6b5bada -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,409049d6-cac4-4355-8047-4dd426c3fb85 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,0be65077-219b-4969-85a1-cd630432c87d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,14a08f56-14c7-487e-86f7-4c709bd02389 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,368d9085-4e97-4bfd-a82a-49645f6f4a2d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,abab3aae-363b-49dd-a490-765d0e8babd3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,378defd9-cd71-4b3e-926a-4d95db3a9cf2 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,5bc6a3e6-8ec1-42db-81a8-bf4df1559d87 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,cd23e3db-3aa6-4d06-812f-b39c78da0473 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,110a4d37-26e0-4d01-9648-5457ed127a15 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,082a78d8-72c8-4a37-b2c8-6e39ebed4b0c -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,a14a685e-786f-4e39-98ed-9a71cf8ae200 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,b1e5deb1-69a9-47e5-8ea1-430d2caca8d8 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,23842caa-0ce7-47f3-87a9-cf433ff985d1 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,c22614c0-2c3e-4f8e-96e5-4f4bb1914c85 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,2ad1fcb4-87e1-4b69-9863-0957e62ef0bb -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,1e39465b-2a57-46e3-be12-64bb2cba0286 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,293859a8-41fe-4583-b8b0-1558d4431bca -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,a24b3708-20d0-4be3-8969-577eab427652 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,2a2f9331-ab0e-470e-bd5f-f09b823a27d6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2a6f5d81-2004-4396-a9d4-322c1a4f9205 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,e819428b-5c2f-405a-956a-be8ed8303e0f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,4ce6afb8-c9e4-4fab-a564-91385dbfb322 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,439b3c35-d41d-446b-bc7d-aa997650c1e4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,78ab0521-2a51-4f0e-a876-406d03dc0ecb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,7ff3cfbf-a866-4878-90ec-8ca6cc3731cb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ecd320c-48c7-4d45-82ac-412d1ee50e10 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,4752fbb3-edce-4049-bdb2-738cfd5fecc5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,ee59fa4c-2ba5-4560-b959-1066a7e9f19d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2b52a354-7775-482a-ab24-765c008d433f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,0af96583-acee-4363-98e3-b2974cbc5c7d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,9779157b-8623-4aa5-9ac6-efee82877f9c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,891a8c39-24c7-40bb-906b-40d949e53107 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,d97a051f-6d29-4c89-8884-96508c2677eb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,a46e23b0-a33e-4653-80f3-46ef5dfc66a6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8edce348-b8ea-4a27-94ed-8226c236110f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,7986fa66-aa72-48d3-9fb2-3baa22329e72 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,11c694c8-80bb-424f-b8ca-7154ec694226 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,c23b94a2-aa93-4910-a21b-0cabeea72fc8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,1f71a0a7-0970-4440-827d-4addb772b875 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,0c0addde-eee6-48d4-bb38-2580c8e39cc4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,df4af0b5-9f7e-451a-b273-618c8e539926 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,1765a4f7-fc99-4af5-bbec-e16ba0e65af9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,0e68c997-44cf-4725-a1c1-883a4b76e5ad -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,59fbdd5b-900b-45dc-97f7-40e2682e2c3d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,909bae45-3fca-467a-9dc8-2fbedb8799ca -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,3eeea309-01c4-4c28-8412-f32111fb1c0e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,64bd7a70-3b2f-4163-836b-0b5c4d7c8b36 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,3fc35c1e-e9da-48eb-8317-baa524b1e6fc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,15fd0b3f-e330-4ca7-aa2a-eaeb922d3a0c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,9a3454f9-cb51-4f27-a262-745f802fb028 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,85f85b24-511d-42fe-a9b1-8295c8c17c16 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,7aa11d6d-6862-43f7-a145-0680ca46c390 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,097d4fd9-5661-4828-aabf-798e320f4149 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,e6fc222a-28cf-4576-8192-02f5782282c8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,5bfb72c2-744a-4bfe-a2d7-35f4b01aecd6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,dc2428e2-3f6a-4869-b3a6-be666ece5fc7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,7956620d-b33f-47dc-96f8-64241fe5703a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,2fce6b87-d592-4137-be09-a01a4c08c7d8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,a655161a-8b46-4d9b-a562-d7bbf40ab696 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,736a19a1-919a-4062-b8a5-03cab040c3ef -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,20c0261e-4067-4324-962f-19eb552cd1c9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,436f77e8-e49b-416f-8590-d0d0681fff39 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,cd5101ab-3b4f-49b1-99b7-9dbd76fe73f6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,7dfdd604-e6e8-4d28-9978-c955a42f9f9c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,4668ae40-ab91-4a08-b2bb-ad9ce2ca3ff9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,b19a8398-de29-43fc-81e9-d09b3bfd9da0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,77e7f108-d1c7-4eab-be3a-7c4d372664cd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,9a1c333f-8f5b-483c-b8b6-2f644b862089 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,a16fa231-4235-4071-9a10-8f83913c0141 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,71bd43c4-d4a8-43f4-8283-ea7e64f35404 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,630142e1-51a7-46ad-928e-f941af2de1bf -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,9b737db5-a38e-45cf-a162-175d53ac5900 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,455ecbfc-4207-4070-9d0c-1d0b6b0d30a3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,c27a7f0e-a475-407d-9c0f-d5220276bc75 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,846369f1-5490-4c4c-bd01-3e388248c170 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,90355760-c289-44f4-9f2f-2a5da688c89c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,4aa3866f-75bd-416e-b6f6-f580baabc577 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,e01b0785-661c-4ed6-a211-6a99d044f82e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,7721e58b-5df9-4114-8414-32dd38be2a41 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,377720c7-48d1-4dbf-bf3e-ee8bbaf60770 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,8f122220-be3c-4129-969f-30fc10992e18 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,8ea80b6f-edeb-4439-9057-8c959d997e4d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,fa3519d2-9037-4c7b-8096-37a9452ca90c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,aaf2cf1a-9610-427f-859b-fe32fe5c62f8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,42177b78-23a4-4057-8f94-0869d8ee5095 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,1496bf45-deba-4b64-96af-65345478ef63 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,5aabcbfb-5e4d-4e01-9952-19309bce418f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,38bbdc11-f275-4521-9b99-e371e2a7bdba -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d74428b9-bfd9-432f-8889-514ddce2a84c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,02a98131-fccd-4b59-92ce-cdcfb323c143 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d2443fbc-2d9f-48b2-bac9-2a7596c6fd1f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,1d53e7e2-ea5b-4e9b-8695-3b39322a2318 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,6045b471-92b8-4577-aeb1-b1dd1ecc2f7c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,6f17847e-6983-4736-953d-4e2bc8536013 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,4535b4dc-0252-40e7-8533-f17046009808 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,a4fcfd00-389a-41a6-952d-01f9816a6af1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,4d145b45-55da-4208-ae5d-d9764ed551b4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,797d087e-d3f3-4511-8edc-40863c923839 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,3f2911e1-ac34-4bad-b3db-672aa4802dd3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,557fd436-470e-445b-b4c9-4449bff07f88 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,2266e85c-c596-4ccb-925e-9eb9999309c1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,2db5c625-d6c1-48d4-b68e-f88832e94fd4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,ec910a47-2f59-47eb-a173-de04e69af1e1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,ea04e73a-762a-4455-ae81-7d8f1b0252c3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,9c69cc0d-83ba-4b19-be61-54f040ab4f26 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b1f0e84d-e61c-446a-a4e5-d38162913051 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,557f3b00-602a-4430-b58d-114f3face408 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,166a3e75-2701-4d02-91ca-0f40e52ca903 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,0b8abff7-8d42-44bb-838f-20c1ddf01bb7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,59265959-27b7-440d-a18f-f33995cd5cf3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,5826f5f8-5667-4baa-a6b7-4063d97f5e4f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,efb29349-5db1-4d4e-906b-73c7e983bd1e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,d8d2a2b2-fd8c-45de-acf0-fe0625ae44ab -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,5d14b746-7a7d-4c76-9f84-d62f66cfccf6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,e6e1849d-0143-4bdc-99f4-318ddf9a9f08 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,c7ef95a9-779b-4033-8a3a-a67d01406221 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,2ac7ba90-8503-498a-bfa5-d04f3a41f918 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,7caa3494-0997-42ed-9629-74ad957fc34d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,a23138bd-3f59-456b-bc15-630913aeb50e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,4407f705-5ef7-486b-9e86-98a3ab093fd7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,0fcfeba4-8103-40b3-9854-a348016f0572 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,88a53973-789e-4afd-a1f6-e87ac1a2a3f8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,9430e68f-7c38-48da-9e7a-8eeb74bcd559 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,80388f10-8285-4aa2-83b2-a9f1709210c9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,dafdb146-eb97-4cb2-83de-6999757b1a6d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,a84d9108-35e0-4b88-a573-88be51960959 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,6d556c56-ba01-4750-857a-9d08c643e882 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,c91374a6-f77c-4253-b9b0-19d69392edbe -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,98f615f2-c1cb-437f-8b22-ec230e2af817 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,db62cada-dfba-489c-8f09-a01a7b7d5bc8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,6d687de0-213a-4ae0-8dd8-f5632782afdf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,4ca0f181-f6ac-4d1b-a5a4-a67f38c1b4b3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,0966aecc-2e4a-4907-a204-eda9ff6c0be5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,c08f23d8-1360-4421-a4b1-ff2b2bf7ca04 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,c2c7a7fa-ff25-49d9-9e20-fcd3b3df3bba -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,5cf9ae90-c9c5-41dc-867e-92d80c172c5e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,7f6b7760-422a-4e9d-bd5a-074506763081 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,d291b1ea-7c45-437d-b042-7f5c364616d5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,fbe56eef-bfda-47e0-8b08-90d13a1d4ad3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,490ac60f-19b8-4434-98f2-f65ef68ad9f1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,d2fe2d97-5e34-43ee-93f7-0c745ac7cd60 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,0eb069be-d8c9-4e43-b02d-a73cddffebe2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8cc14f4b-fbaa-4e40-9bdd-7f807df9e311 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,05319436-8a4c-4a0e-a368-9b244bbe2df0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,025c8eb2-a5fc-44fa-b689-b8033223cbe1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,0ccae2a7-919b-403d-8ec4-be90286faad3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,b6b656cc-411a-4a84-9ae6-6276385963c9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,7025dc7a-9e9d-49f9-b5c8-5f264fae21ee -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,052321ed-a903-4713-9d95-1b568bf3b344 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,a018e319-4453-4c2f-8e9c-7a950adc808a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,f312799c-1dab-41a5-9810-9bcf3c2b1afc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,611f5641-ca8c-48d4-9b22-983db95e6bb7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,2dc21e57-af6a-45ca-a77e-f74ee741015e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,66d92747-8691-460e-b045-7d6dab3f73b0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,26386c4f-5ec5-4a6b-95ad-5141b858ab14 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,623c9ca1-8a4a-493a-9b77-15c478ec5249 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,22243fd4-5a51-4784-8b55-86bf6a518c4d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,861c1d17-b574-455f-9e25-762988e46ed2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,4b5ddca2-111d-44f9-97e6-1ab3c046129c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,5bf9aa85-ef23-48f1-af33-2a9440bfbe40 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,5d0ec518-3358-484f-816c-c22402cf0560 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,796792c5-19d3-40fe-b048-03542308d3a4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,a4c52bf9-a1e6-4303-8634-6415c74aed39 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,93be3506-f732-4f1a-9788-51cfa8d78232 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,27e41540-2560-4b4d-85ca-46e5104893cb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,6657a52d-8c71-47e0-96a0-5d08590cdaad -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,fc6d5a32-b485-467e-b8df-3e0f789b1bd9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,5c9ba9c6-56d4-4f20-b87f-5a6201dee8ab -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3b5eeb27-04b7-4e24-953a-45898f32664c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,9df90fea-c3c6-435a-be3b-2f33c17ba9d4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,797dda65-fcd3-417e-a4bb-f2cf7bf1e41c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,97083117-c5c0-49ff-94bf-f518143242a3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,02952ca5-c385-4189-abe1-50d3e9f2237c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,39eebfc5-2783-47c5-8f99-424e8197d118 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,5954487b-1c6b-4cf9-8d1c-a120079a3b6e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,c6430044-af4d-41a6-b39b-9319a976a374 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,579626e3-06a7-4fe2-a3cb-65856f33416d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,b1b4cdc5-273e-4f98-a120-df9b824b2cf6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,a255eafd-c611-4d3e-b6b9-a0c2fa9155e0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,b1ef453c-08b7-4ceb-8a64-13004edf93fa -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,dd2bfced-b521-4ab7-9716-3eb646c3c9a3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,dcfda74a-4361-4777-ab4b-b63f937ec9bb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6443c0b8-f298-4e07-b0e9-13d794088a90 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,67c93426-e735-4aa3-be56-2c8804d83e78 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6abd4752-4fbf-4484-951c-a8b91282ed59 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,4db994a7-768f-40b2-8412-5a25b80de636 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,09aabd23-2468-4143-ba18-2d22171a6238 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,89ad5f50-eb12-4681-a21c-e3254f8aaa1f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,19318b97-948d-4e6a-a848-71831c450b36 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,898b4793-deb3-46ac-a66a-0941061eb64f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,478ca518-632b-43c7-9aa8-711d74fa55f7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,963cfb4a-9d72-469d-a1fd-b68882a51918 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,062a57af-2c09-43f9-abaf-157ff1c0d904 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,72e0d021-57d7-4659-9f41-385475514358 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6464627a-e855-4026-8157-ef7ebf26e924 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,04e2c1fb-736f-46a3-b838-a6ee0a4821ef -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,991cf4f6-0a4e-4cad-ab39-fdffc4552bff -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,e16f1637-5dba-4218-840c-f349c090fe2c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,c02bdafe-f530-4651-95dc-dec483329e17 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,c987b22b-3f00-4a20-baed-3637faeba082 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e3506f85-c08e-48a8-93b4-b5fdf728661b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,af742a28-2d62-4aed-9687-4701dabe0615 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,8d07cd76-3446-4da2-bf96-9c6a521598ae -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,2c4462de-14b6-4e3b-9efd-ac3aa1505ce2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,f2839880-a4d1-4e67-8ef2-025ee0eaef57 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,2de727d7-5f24-4356-b9f5-d917f55736c5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,76a8109c-e0ba-4a9c-a6c9-8b959ad55af2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,0fb39069-b26b-4960-9949-05aa649c3fc4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,80c266de-a955-4659-a62d-cc6d476aabb6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,8129f814-3893-4389-a711-a47fb913d5dd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,7e3d70fe-be26-4b2f-ad35-f691cf23411d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,fef94da4-0fd7-4448-8f1b-1c4c34b72980 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,3986131c-1b01-48c2-a113-eaa5a16f6f0f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,c77e5dfe-0cc9-4c1c-9ce3-3588424f3f35 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e83132be-7e5d-4d00-9f2d-c0ec154e0342 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,13f63d1a-cd3c-4347-8369-1366a5411562 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,cc3589c1-55d2-4798-a795-8602fe3965af -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,656a1011-d77d-48dd-8ba7-9214713e06a3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,4e9011c4-623d-45e5-8723-193a440587af -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,266ad2f8-4fc2-4c0c-9aee-fb081e75a009 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,33cb2744-684b-45df-8b74-ec34e431c138 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,44937d01-c9f6-44bb-9e29-e22469b95880 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,19d002bf-c93a-44ce-93d3-acacc34d3952 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,6309a319-7bc0-484c-a945-99323a8b8b37 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,9dd58869-95c6-4624-8374-4a7f9404643f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,364db96a-5a65-4135-8f09-876d96b4b585 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,c1c261ec-397b-439a-841b-578633b61221 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,5b29091c-e2d9-4c31-bc08-0397df064fab -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,d3c49ecc-267d-48df-a777-d56ac7a401b3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,74fbe432-6891-40a5-b18d-b9bbccd15d06 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,6fab1c7d-e165-45d3-814e-178b9c1d9a13 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ae23d746-1fd8-4c67-af52-4f9cf6745cb1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,f8e9fa0d-bddb-4501-8199-a45351d00f9c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,1add0164-a4ee-4075-b03a-28e4535108a4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,69.3,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,42493e70-1d46-4a18-ae1d-f32c07894694 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,364bc009-4628-41ef-8633-da33389fbae9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3a4512d7-b248-496e-83da-30e315682fe7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,31938ce3-73cb-473e-8cb9-1ef969300036 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,faf21310-fd2d-4c18-b72a-ee976b2609ab -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f04e198a-4bfb-4005-9ccc-3aafd5047d4f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,42066c4f-5dea-4759-bda0-9dd92ea74472 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,69e869b8-1acb-4b36-bc18-b68852be2cde -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f221b36-df42-4af1-8548-d143bd3022df -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,de5c9cd0-fa8d-407c-98c2-dafed389a04d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,13996b8d-db05-4d4e-b6f0-fbd54186e6fd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,26292edc-ed29-429c-861c-ad32e0987209 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,90191f86-292d-4625-b7d1-505e03f846cf -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8aa01ebe-15e8-4c5a-81bf-4824c4d5decc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,d728587d-3034-4cf8-a922-0f25f59372eb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,e6434358-38f0-4e4d-83b8-6677abbd3c80 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,2b61e1a0-ef7e-41ce-8c22-945d4265da03 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,ec229935-727f-4023-959a-1095a2229c33 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,cd168228-c8e5-43b3-98f0-c7324e918f3d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,0eb4d31c-32b2-4d4d-ae91-f965c7539b3d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,2c4855ba-f8a9-4793-aa0f-82ecb1d9f39b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,b316b926-023c-428f-82ac-10331369f25d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,799268cb-b7ba-49cf-a638-7339a0295411 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,761878df-b627-4935-92e5-bb80668c67af -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,33c35f53-47fb-4533-9e4e-483117155500 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,cb097dbb-65cc-4010-8903-26950300c4d1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,7a1a9598-7180-40ad-983b-606a6ddf6546 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,b04cdffb-6e5f-41ef-984b-abbef9112bb3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,e46b1d79-6810-410c-9168-f71112afb19e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,8e0603c7-df7e-4ede-9ff5-cae711e2ff46 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,8b319129-25c1-413f-b385-7f67114e8f3a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,193a4ddf-2050-483b-9e24-9d75118bb5e0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,1607e96b-4cae-46cd-bbe1-35c559a14eb4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,0cc2717d-6cf0-4c16-b51b-7138282acc31 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,bba9f25c-5449-4ccb-9ea9-35404488fdfc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,bd516d05-e4eb-41cf-8e90-d9db1c0f01cc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,55ea1e13-b7a2-4352-825c-ee3659256b01 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,c369972c-e4bd-427d-9ab8-e2dac4f4b8a3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,47e56918-5b2d-4f7c-8d77-7fb05af8ab51 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8f603886-8c9f-41b4-a32e-ff2a0a57b168 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,4d03bf6d-4cf1-4b66-94ee-98277629cf38 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,6e5a56d6-b52a-4d28-9726-c7817a15c43f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ae3220d-1ff5-483d-9fa7-f4ac86f9c3e3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,7307f2dd-e048-4fc0-b46f-29725a6ea9b1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,9b30e532-6edb-4692-ad78-fe3b983c1f12 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,32ea6676-8f34-4040-963a-cecf70bda5b9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,a5dffe9e-daec-4795-bd41-924ec979dc0a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,94631d39-0812-411c-8b0a-4eef111dce94 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,be1ed42f-efa7-4451-ac43-2c543853f910 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,cc1ba6ab-5134-4b69-8d51-651f1528e1de -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,1f57f0c4-8b2c-4073-b1ad-082a2fd4a59c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,6872dfb8-7187-48dd-9ed9-b086af78b7cc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,cb375258-dd23-4199-914a-2b4dd744f643 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,eb18993c-06e3-4f3b-b1b0-80f7616ce0c1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,71.13333333333333,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,a6281b17-601f-47c3-bec7-8563ea607c44 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,322fea1d-6042-491a-8dd0-1876f73f9670 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,6654bd8e-c14e-4ce5-8648-e7d40b4c0f54 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,7dbe2366-38f1-40c0-a91a-3ad0d4d3f5fc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f4c84b2d-e987-4a6e-a6ea-3b143bdf20c8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,e9239718-fe64-40f8-8d79-419446f5ac47 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3e188f44-b3a3-44ad-abd9-58b139deab20 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,c0f1c19a-bd49-4cd1-b4b5-8bd3c53447e8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,d7c79124-eeb3-4aa1-9926-0b0af695bc3d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,94be0fe0-249f-4129-8e3f-269d29c90898 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,b3305b10-1159-4820-9861-2600452e84f7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,cfa7e9fb-d2de-4674-835b-1cf913a1f886 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,97293332-f1de-4c2b-8078-91439f8e41bd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ccb8a32-d3f6-4b55-ae83-4b8b333f293f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,1729aef0-49f8-40d8-9856-32222501631b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,e2b07389-0ff0-41cc-979b-c66eddbfa3a6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,e6c81a63-d698-40a2-bca7-bc608523cbda -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f7ca09af-734b-412a-8a4c-25726ca5bb14 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,236a98b0-245e-4573-a7cc-a325436dbd2e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,6166c46c-77aa-4558-864f-0b79caab2a8c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,e6c97454-4a1a-43e8-b264-5b2d7ab34857 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,93805941-ff5c-4d82-8862-558e7250f56d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,03f9e5aa-7b98-4cf7-8019-36c3ba1f6ed3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,d5dac994-d937-4372-a3a1-39ccb52070eb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,3f214d66-b886-4065-a5af-22aa27f13698 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,f4998665-64aa-45cd-a172-78fcba95618b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,f2b1829e-270e-43a9-8253-4cbe88dcda2b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,1514c234-f0de-4820-b779-01866253839a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,fdbfa024-c1fd-47a2-93c3-ded6e1d8585c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,406e7359-7ba9-43f3-ba91-99ac33543c92 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,e4a0ac97-ee16-4909-9952-fd110be20cd1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,0c5532ce-9314-4012-a7db-c35cdd3a2a1a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,7483c9be-dad2-44ee-87c3-5cbb797a6806 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,d62b5b37-cd1b-47b6-a4e4-4608b1f74bab -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,b25ee06c-cb04-4384-9b6d-6e9b6458c2bf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,31845dd3-6bd8-416c-adeb-fe96c55b9515 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,7a708b4e-e2e9-440f-9d29-3fa457775000 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,0e62156e-82fd-480a-b5c5-98f4f4118af0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f0c52b6e-b90c-47c6-8260-4fc86bc0a876 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,038fc5fd-844b-4551-8531-3a710979d46d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,9209c9da-34be-4990-a77f-da39b99dba8f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,51209af1-37cf-404d-8f5f-343259046731 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,6bb731c2-e699-446f-ab60-457a524e5ec8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f6a99749-ca97-4362-b3df-299e6d73e936 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,da5f4bf8-aa50-4fd7-bf8b-0865319be81c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,e8aab4eb-42a6-4d81-b508-59204963f634 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,25e2c103-5682-47c1-832e-9dc49b8f6075 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,a8a58e3f-1b93-4530-ba7b-c55950f1609c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,e47df8f9-c333-435a-b2d9-09043f67a5e1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,e64fc009-529c-4634-a08a-9e52ee6f41b3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,0a74bbbe-ac57-42a9-ad76-f1555755974e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,866038f9-d252-499f-aa44-fd1e0dfd70f5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,e1fd5f4c-eae5-49e3-a88c-6b3b38884316 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,39870945-c683-4515-88c5-0241602e719a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,71.5,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,fa9929c3-4815-4845-8f1a-4a5fe37b2a75 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8382a2e0-36a7-4f61-a531-f8ff4e0e09cd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,a76091a9-a759-4d48-a797-c282f8a2f33b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,53f88b65-8059-4c33-a7ee-26bffc897c14 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,4eaf1bfd-45a5-4142-b96c-939764f14425 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,7699279d-5bce-4983-9fc8-16adf0f930c3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,076c81e2-d6bd-4ebd-8204-3389607aca42 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,53ffd333-9ba6-42fa-aafd-3a663ce6161c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,4fefda52-41cc-4d1b-a887-e9d054a72dff -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,14fb1327-5e26-42a3-9592-541d80df3600 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,fc700cc9-896b-46e4-bf99-f6fa6392fc8b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,46098d8c-76f3-475f-b8b3-081ae15074b2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,e8f56c9d-f72c-4f7e-a220-b8489e871baa -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,799c4ee8-1b1b-41bf-807e-abd072bb64b9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,14b282e6-d203-417a-83fc-53f001ad38cc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1d47cc74-1321-4ac3-b15d-94d81804f345 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2fcc7673-12af-4770-ac96-055d878179cc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,066387a7-f070-4201-93d3-83107123bcfd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,e3a9e6f9-5559-4463-b5dc-c02e581ab5ff -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,591becd1-c157-491a-ab6f-b8507ebada9b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,a44b8f56-d54e-4f5c-b745-e8b98159df64 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,3bbd52ff-9632-4d64-90bf-9e36a65c56bd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,743b2730-fee6-497b-a013-3fb0a48f45f3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,957c608c-86b5-40ad-8c77-f0ac6b3d322f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,7ae5c5fb-9e98-41ff-9b39-f2017bffc287 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,f69d43e7-494e-4fc3-ba71-e75a736ef55b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,d0b22052-268e-46bf-a34a-1f25f9b0f678 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,e1a6500f-2e83-4217-9e99-b7f5cf6ab543 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,413a7acb-d1ff-47e5-b846-5334831a377c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,ca4d2ccd-5ba9-4deb-8db0-2102aedab342 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,c6f465e1-e015-4312-99a6-2a088e6f4cb9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,bf98283f-cf47-4db6-9801-37dc04952e3d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,afc59312-a926-403b-8b52-fcb166f62e4c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,ca820ba7-d867-4697-8bc7-cfca06fbe0e2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,3a583570-00d0-4cfd-95aa-c71b1373b942 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,3273afca-c941-499c-bdd0-07cd17090697 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,49984e45-a93c-431e-97b1-4f1511a39375 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f04c69d-cf03-435f-a1e1-df63d0bfd51e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,980d23ca-0441-422c-82b6-4fdd08a42f5d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,b271a50e-9bcd-4054-bfd2-f197e1ecc302 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,ab0669bb-1f26-4cf1-8744-fbcf0df7e8f1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,aae7f027-622e-45bf-a4a6-766633d4b5e6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,56a33ad9-8dcd-4b7a-88fa-1b942e5ddb31 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,83b21f5f-c4c7-41ef-a163-d4ae593aa60d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,fdf2d9f8-5610-4d36-9c90-7996294c425a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,973e7718-3e6d-4b53-9c4b-5b5307cea93c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,033d768d-88b0-4714-a90a-563707b12e96 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,b4f2376b-04ca-4e3d-8de4-7b1dc4f1d907 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,ad865359-7263-48e1-8700-4f4597c3704e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,d06258a6-8a19-48f0-8118-061cbe7fffc6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,fb2e5007-6fc4-4044-bdb2-e3464f0bdd4f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f2341794-e87d-4a7a-a8fa-00071375270d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,521366d1-0f12-40c1-b7e9-7f49fc2d58dc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,0bc7571f-e468-43fc-a8e9-4b7218b86aa1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,1141691c-a488-4fa4-ae7f-e645aa98b831 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3347f200-a169-4608-ae9c-fa76c2db7ce9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,59f6c741-8774-444f-a227-efa54c4d4f2b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5cdf867e-1d53-411b-9e83-fa06eb2fc9fc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1cadc6ef-be04-42f4-98d1-95b29169ae9d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,bf7963b0-5031-4a56-a8ba-0fdb2a0157b4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f385ca44-62ce-4ae8-b52b-e391faf302e4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,d4540aa6-782f-489f-a24b-d42940712135 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,0562b4ba-4ce5-4750-9cf1-3d76de57a875 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,300501a0-9870-4e08-96d1-e2deecec173f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,9e7249d7-a679-47ee-9400-cd125cc6c44b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,0d0e0a31-cedc-4309-8bdb-798930aea1e3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,02b929f5-e85e-48b1-9424-c866c60ca4b4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,83a7dab9-3836-49c0-b082-d82e6ec13b8c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f5f52ebc-3c90-4137-8236-47bbce47c050 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,fce9dde0-0cbe-47be-af2a-d07f83d54930 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5567c6b1-8ca4-4131-b0c9-4c520e8a65bf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5cb75b4b-e025-4c66-a93a-fda34b271753 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,6ebad083-8ec1-4ccd-8fe2-e39c30070e96 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,f5d5dbd1-3046-4a6d-a484-ebc21cb2a67e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,5eff637d-6116-4b3c-a60c-15f169571f83 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,e0cf9f95-898f-4d84-a1c0-7079a3fdbf39 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,e35ff7fa-7ff6-4f9b-b9da-eff40abbb940 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,addebce0-6281-4f47-a2ec-333d79c95117 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,ea053b59-0a2c-4e29-ae36-03cb588ba131 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,cfca827c-6787-471e-a7af-8efe741e5acd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,8699674a-59b5-4d4b-b9bc-8955f707e3e7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,1165ae36-3f0d-4ce7-bd07-67446bfc88c6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,2d5651e6-6a06-471a-8d44-566d98c28b4a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,ee7586e9-841e-4011-9174-5a7b3a654991 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,b8a8cd96-8d5e-438c-a1a4-8a03e9a5dd2a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,65ed86b8-c6d3-454a-b378-0324492f0854 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,935e1a02-798d-440d-aaf7-bdeedab8a3f6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,05523edc-f903-4233-a386-d67f09a125b9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,9cbad102-13aa-4c65-a961-ac926dd10126 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,00a2251a-737a-429d-a143-129390799b5f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,81ae8ae0-b1c9-4d26-9500-f76723228058 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f400479b-a2fb-441f-9480-4e8017056dc4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,d3a21abe-a831-406c-9fb7-83b32f45089a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f53c3e54-38d9-433a-8eb7-aa7a270e56da -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f6eb342e-a9e4-45d8-b29b-786703264cdd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,ade3bfca-b539-499e-b7f4-db4d53b054ca -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,b5f144f3-c2f4-4cfb-81b0-5d172bedf373 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,cd93304a-3e82-4f4c-ad28-e3a926ac4850 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,2a87908e-08e8-476c-8f3b-46efc5f7091b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,c5d4847f-d41b-41a5-8d1c-5959452d7a30 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,bc23ea85-2d94-41dc-a8ca-8dc4e7866211 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,e9db84d7-c1b5-4edd-8a93-d5970699f0d0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,797e7c73-9b0f-481a-b8f1-6c16f769453b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,6334b7f5-e978-4f9e-b5c6-d50510a0055c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,60229dd2-9da4-4bf3-922d-dd16fe2ec005 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,06d0be7b-decb-41ce-8cab-986455e78b7e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,b5b894d7-a14b-4a23-80bc-4ed75d9401e8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,ba6f2a20-5286-4d8c-9053-f518ac6e66d4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,d38e6126-cdf7-4dcc-a207-d586fd5f8d8d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,6b7907d4-8a2a-418c-8569-3617077968db -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,b30c07a1-9936-41c0-9027-1a6022a82783 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,ae469559-b26a-4038-89b3-1c2488a409fa -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,6b797418-316d-492d-ba82-9b49a93792d9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,b435f895-9044-49ed-9b4c-67a921c6b5c3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,85d59003-f4e8-4e46-81ae-1e43e98aea2a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2acfd66a-e56a-4c1e-8efa-845640cff629 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,c8a4d455-e414-493f-acac-5da29d440d7f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,c92ed2ab-f1d6-4602-85ad-a361c1f1922a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,daaf815c-b98b-4130-bd42-fa466037b81b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2f5dac69-6912-40c8-b971-95804a60862b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,40c79391-c0c7-486c-96dc-c29177ff6f37 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,82033af5-d2f9-4ce6-887a-2cb7ac4a9bbc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,0f32be47-3996-4d2d-9228-5d036dc416d4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,aa5bbf80-d8d4-4cb7-80e5-eef5e4f8aa1a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,cb3a7257-98f9-4e8d-b151-e398caaf5487 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,212ea73c-7645-4de8-8849-6e17bbe7885d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1a045bc2-5a8f-49e7-aee1-8c4231c0c72c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,807e5c8b-0a59-4c1f-899d-aa8592d86c86 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,b7c5a361-9416-4fb3-98ef-faa8a2c171c8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,df917b6a-638b-497e-bf63-f76ee25872de -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,27ac25de-e2f8-417f-9232-e117029e2ed7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,ca015f5b-2387-484b-b6fc-e40a7a64816f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,71362940-e5da-49cf-84ba-2bc69a5d9f35 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,f87f8b1f-3b8e-48aa-b309-430fe262d986 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,f7954c9d-e8cd-4722-a2b3-4faf75582dfc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,30206e56-7530-43c3-8aaa-cd39e2dd8e60 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,87521d13-0d3b-487d-97a3-57bcc20b1bb7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,806d90c5-43a0-4714-b2b8-338c3ac0327c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,2a40d459-4001-4406-9346-44ef03e0f50a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,45dc2ebc-6492-456c-a37f-645e82383b79 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,2d752bc7-ea4a-4989-8a3c-1b523752205a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,716e2179-8d92-47d7-93a3-4ed22b2b507e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,c52ec0ab-e240-40b6-9659-bef7df06b848 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,d7d7d680-d15f-44d7-af12-8fbc16669d31 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,240f27ad-db5a-4509-84f2-06a29dc37bf6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,9f48762e-883b-4cda-9f10-3e680c1e6f39 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3ebdb940-f0d9-4b3a-9c02-b3220c67dbd9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,e1b803e9-10ee-4cd9-9db7-ade4d9dcf6e1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,df1da6dc-9480-420f-a98d-8afbdeec7b5c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,211b8e43-cc9d-4afa-b3ea-1f3931510c29 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f83f6e0-3e4b-45fa-9722-b1c6f9a749e7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,04c951d0-0095-44b5-99c6-ac59007a3be7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,51733491-ea34-4f27-a02a-604d26f58209 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,b368d3f2-f14c-4465-b1a0-73223a54a4a0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,a7c1b457-5629-49fd-8103-98c8c57a8d31 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8de71cde-d5cd-45ce-a31c-f28b8aca36e2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,b3ddbee9-e81e-48b6-9ab4-12671cb8d8f5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,092ef174-f94a-4adf-9ac8-8026dc0624ee -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f789b24-93c2-4f60-8f5c-daa863b373ac -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,384110e1-36cc-4492-a69f-5565bb8d226b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,c87556ad-763b-4654-bf4d-578f14fc0fe4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,94f0125c-d338-40c9-8ec5-24936e94af57 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,cdeb956c-d352-4747-b774-1fe16ba1e822 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,96c2c194-a6c6-42ee-93db-ad076d711cc1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,68e50e38-a80a-422d-856a-5ec3218c74d7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,9fced048-ca67-4810-8c2c-d7af43d54447 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,b3f4c96e-4bfb-4617-8f42-1709700d7f89 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,4835871b-eaf4-4b11-a1ad-f2572eb3b35e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,0ba523b6-4b14-4f5d-82e9-f0025e24bce8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,05e4fc11-d7c6-42b0-a5cb-16b1b7769413 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,d2b9cf44-3d23-4cfc-be0e-a94b54f32401 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,ad83bd25-5342-4c3d-bf0a-237b5843f5bf -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,bd50d860-bb94-49b5-8ec1-8bd927a06075 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,5a70b976-da68-4e39-a494-9e1883dcec8c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,97585f53-ef94-40cc-ab47-157c40fa6591 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,e3ba1f44-036a-4aef-8a7c-ade33caadef0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,0f83063d-5146-4484-a2d1-13b6fa7ccabe -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,faab0c6c-f198-4087-976c-89f2d53d0b25 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,8c6082cd-4e4e-4c30-b042-b7a9dc511a2e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,10b96536-426f-4e70-87dc-d23f11103d1c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,3705aa64-7d5b-4761-ae3b-2b292e2026e3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,aa9f3840-5af1-4c4c-a657-76a7cdb5848b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,2d6e5242-c6b2-4964-be3a-7830cf96cc92 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,d836cc29-8693-441d-8296-f3b3774eab89 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,c2a4cde2-11c7-49ae-8052-b3d0e1aa3a13 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,09b5b734-0dac-4754-80e8-d74cbb7ec2fb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,154d2de6-8a69-4473-bdd6-cea2792ac88c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,542c180c-054c-4aca-ab1f-20bcbf98cada -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,c60af8c7-1da1-4e02-9b55-328fc4695b94 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,399b817e-fba4-46a7-8538-6030da286376 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,e85e2b1e-3cbf-4b15-b5cc-f51ebfe7d005 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,f126f119-a6de-49ad-8ad9-ae08fc754002 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,ab6f487f-87a6-4566-8598-4f01b3d3bf12 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,e0029a3f-1978-4e7e-bb7f-28636637f494 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,eca71a6e-3243-4eea-9e2a-b9a135ea9ca9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,07d75b8d-6ab1-4165-b631-8650b7d2df72 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,6c59db98-2883-48d6-a608-f11f47a21de6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,2f4c90b4-135e-49cb-9b75-ab1505a47ed3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,c9fc005e-ffa1-4932-bae1-0b06a5b3fa4a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,fb5d7772-858e-46d3-9cce-42fa09b8a7bd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,5def0e5a-75af-4c5c-bb39-a6976e34ac2c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,d51f470d-e465-4b1c-926c-2520b9ca72c5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,d8eee36f-8f8e-49be-b17f-8c1716121f52 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,a1d02fbd-878c-4aae-a4e0-853a92eba5aa -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,cb77a256-927a-4a4c-ae73-d502cf934226 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,ead00986-915c-4bda-bc4c-95cea84dbd26 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,532186ae-5f27-47aa-9550-8c134556894a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,5f11ca16-e98f-42af-9764-06c30156504e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,da4d5fe9-03da-4937-8b0a-cbd968d1d0cc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,3955e8eb-6c79-48a4-a1ec-bc6be1d975dc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,164fff5a-9bd3-4e7a-89e6-35c5adce331d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,6df2ad30-6efc-4d30-97d3-7a2a975199f4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,6e5d855e-7d36-403d-a933-6cb826be5175 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,1bf9c1b2-210a-42b8-a75e-49817c369c94 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,7f33425f-12ee-432f-9a4f-c9e478f110eb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,52729238-ec97-4068-9513-5030c7a4af2c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,72.96666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,09dcf878-c892-4ec7-8767-6d15e44b5b34 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,53bac2a5-4c31-44a5-b53e-e596beb6956c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,47dcf43f-f691-48b5-a97a-dc2d1ef7ad3a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5779f237-d954-4b9a-9a55-bc0c4bf356bc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,4a4148c0-a7a6-4f61-b6ec-bddc743a213f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3b31a86c-3e33-46fd-9109-91b2d6df4f18 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,a0ff03e2-7ac4-4967-a789-8bb81f55c406 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,c097f43e-5c0e-4ef1-bd51-d11bc8f24d62 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2ff5453e-a370-4123-a3f2-2a99ff6b83fd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,17297f03-249d-4d95-88f7-09ad8e7c16f4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,790b1c7b-d3d7-4869-8f80-51adcf284170 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,57ad72cf-9ca6-4639-bbff-7bf56b02b6be -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,cb155f71-2a75-400e-8c9a-ac7c88dd92f5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,188a3d32-98b3-4b4a-8d85-ff46b5dbe4ae -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,bc5de0db-e0ef-4d30-aef8-a3a8c543619d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8b245764-4eee-436d-bf1f-67948f3af56e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,550cead9-0d29-4f7f-8bdf-6c388e5994ab -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2d135f2e-043e-4f90-9247-1e77654b8b5a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3229a79c-cb0a-41a1-b6c4-9781fe2b5349 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,80f72abf-4654-4907-9edd-77e2dabfe695 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,8fea6bcd-2043-4637-b249-4b231366e00c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,f53a8095-165b-4b8d-91e4-9cdc0633bc69 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,082bcbb0-6ac2-49ce-aca3-fe9cf877f3f8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,086be268-ac7b-41bd-a558-949594db5c1b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,c6ea9b0c-d5f8-46cd-a67f-2dc25024beaa -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,fd06cdc9-1c18-456c-af6b-59fa2f073e31 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,cfd6229b-06bd-4edc-8896-07e48a6f4284 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,90365898-c7c1-43c8-bb3e-22df8bda91ee -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,c7f021db-81c0-4f61-bedd-cce090f7f5a3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,9c2712bd-aa97-4df9-9561-3e9a841e88fc -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,e86650a7-5c11-48d0-b9c2-56dd8b4efe37 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,178f8b99-60bf-45e2-ae68-b9b0b6aeb016 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,53d2ccde-65af-43d9-9b4b-4eb187ef6aea -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,cba429b3-4b3a-406e-a9e9-d973429b1aa3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,0a63bad8-805f-46ab-a788-ee522682a53c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,a5b99265-f88a-49bc-9664-24c27cd4ee46 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,fa804e93-e554-462a-95a0-d1028ca7fa88 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,779ce7ee-2d51-43cd-86d4-df7c435961b3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f4632743-bbf4-414d-81e8-bf0474ffa76e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,14ddf11c-ebe1-4795-8d4c-6f181dafef13 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,190514db-04dd-4b14-b8d5-f5d04c7640af -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,1544fdd6-2280-4691-8343-32bf3e0be5cb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,b64f6aff-5fa6-48fc-9ec3-53d077d36093 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8437be5a-3acd-4532-8b1a-b27b292bfb38 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,89046809-508a-40cf-8230-490c7076dcd8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,90aeb918-2e5c-453b-8c1d-a6a2365aba66 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,ec9ad41e-769d-4b40-8575-dba89134bdec -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,bd2592bf-726d-4529-9bff-c34a4457c49d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,faf9f4cd-1b6f-40ab-8bf2-7128968481f8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,d89f0459-9fb3-4093-b83e-07cd70af3fd6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,216d8455-3a0e-4045-845b-a02ae86d197f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,9b5563bf-7869-4efe-b3ab-87fc9b2a531b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,e614864f-31ba-4988-ab88-761f5912432e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,d54bceef-6ad4-4ff9-ba84-2f66f856c195 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,eaf516ae-54e1-4206-84dc-ca3af09ca62c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,564d97c1-b1c2-4bcf-b255-15ea9aaada29 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,a84959d6-221d-401d-9ed1-1064297d4c2f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,85404e1a-1654-42a3-9811-4f550fd9bebf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,871c1890-4b20-42b8-8b85-532871f51ee6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,20a4c50d-be2f-441c-908b-4d754142b384 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,2dc64697-9482-4b19-9c17-8eed4add5774 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,821615b8-80df-4a1d-88ec-dc9fb673a2ef -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,61970e6d-3cfd-42d3-8e70-eb49c6b83d93 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,b534e805-39a0-4ff7-a86b-8d444467b06c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,e9097c37-e0b6-483a-9734-14a64d6db6bb -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,38a30bed-dd95-43dd-806e-7598f04a447c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,455a4bf4-2069-4cb2-97e6-9aa054dbb9db -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,d07c68dd-1904-4a7b-8ac9-e12a971cab7b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,33e3891e-f0ce-4d16-924a-bd59cf569456 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,cc8d248a-24be-435c-9492-af305073a7d4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,a8b19dd3-c14b-4018-94f5-54fb6748f3f8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,92d9930e-41bc-48c7-897b-3ac98f919268 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,aa027dfb-a7b1-42ce-8d18-5ac525f87c59 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,109fa6fa-ae0c-4bd0-b6d9-ffae2cf74e1d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,b6975a84-e4cd-49e5-bef9-a6a0e3490c3c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,102d2ceb-fd6c-40e2-877e-e172c2d064c4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,76a20352-80b5-450c-b72f-3c002399fc99 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,718fa7ff-0d81-46b8-9001-e990bac8eb5b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,7a9b5631-fe00-4d7f-b43a-48966e057bf2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,5d16cc66-cfa7-4576-b686-fdb2a7a66a5d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,841e0bfe-10a5-4096-bc92-b0ca0bf62bd9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,4f91f4d9-849f-4d80-97c5-38db6fe77b70 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,3a59df94-8286-4790-a243-17696dea29e3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,ac47c283-0190-4df0-a182-6753dab37d51 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,f7b002a4-1bc2-44b2-ad2e-581538b27c73 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,e230985e-b571-4885-8452-bc6f636ea65a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,76e58496-5138-434d-916d-8cc853806db3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,05aba364-db4e-4527-ae0b-edeefa0c5e63 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,0252f6fb-64e2-4e46-ad09-1191762da6a4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,2e3e0e84-3f79-40ff-9a61-70cdfac9f2b9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,c619dca6-1148-46c1-8abd-153bed9983e8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,b52ea1ab-1667-4d28-bda6-fad412c99616 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,7325687b-7636-42e9-9b67-465b11b230d4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,4d80d0bb-8d0e-44e4-9b85-c005efbd6de9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,15897452-813f-4d55-9f2a-fca890cf06be -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,433a16d2-1e7b-4bd6-bfb8-30097bc238e1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,1a9c0522-e1c1-459d-8e62-abed20f9abd9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,80dffa97-dfe8-4476-8166-7c35dba4a346 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,7927c56a-03a4-4e93-b640-4720751dc31e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,2e3beb51-6549-4d06-965d-131b0166ead8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,aef758c8-3929-4f45-a11e-92ab1fab0e79 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,3a5da5cb-8deb-4fcb-8bd0-0893a68d667b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,3a3e84e9-9021-4af9-89b6-5481d13548bf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,1cb6c1ff-13dd-4594-a8b6-49ec631e5a8a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,a4020b80-1a47-4127-ae9b-afc3e3f4b6c4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,dc5610e4-b755-45f2-a1ce-5307307ad9d1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,a8eae9a7-40a6-4117-8d51-8b56aaacd00c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,160a5da3-6412-4a01-a745-16c1d9259a22 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,73.33333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,5bedbbbf-424d-45df-a0d5-221d41d3673e -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,edb23132-45d4-480b-b3d9-9af0908fb7ff -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,19fbf12b-5a5d-485f-b46f-c9c4c184878b -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,5dd24f30-8c1a-403e-abdb-d0fe15600900 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,d962ff9c-dc47-4690-9114-fc523f9827a4 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,2ac211a7-1dbc-4e97-8e43-c79b1439d149 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3efbc401-d3df-47bf-8e84-29432c1994c1 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,775cec53-f5ae-4a20-a1b5-ed0e3d9c6410 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,599e0158-18c8-4cb8-a996-c9917aa9bafc -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,201d5d69-3af5-4ef1-95c3-c830960c1f76 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,14a194f0-d8bc-43f1-910a-89799c43e028 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3125c349-50d7-46b1-9228-ded37d96de54 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e471ebc6-51bf-4bb5-a24d-259e459727a8 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,a16e524e-27af-4f2d-b06f-b83daac1c8c2 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,070f37ca-7305-4481-ac56-33c9c009c697 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,d6ca533b-cf65-4820-9eac-9d9f4d509806 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9a5afe07-c64c-4334-b820-691de071d366 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,1ab03ace-2992-4427-8cda-a08540dc6a8e -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,87b9f45a-4804-4cb2-9e1d-d389e5336b3a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,cd51c356-a4fc-4983-b8d3-47f202acf890 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,1f56f045-0e77-41c7-9791-9430aa0a49f1 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,ba1c3c10-6cf6-4a83-bda7-34a5d6d9090a -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,4aab2942-9420-4f11-b29f-12697b8364c7 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,73e0f8fb-4e2d-434b-95f1-646e075d965f -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,eb2c5c78-d833-46be-b24e-90ad5cf9f960 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,f46e3192-f1c1-4b1c-8f33-42fdec25849c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,eb2d027b-9c9a-4890-abe3-f7d4b3eebebe -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,7e2b8ef0-36e6-4412-81cd-b2615535f03b -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,a64a53eb-b87b-44fa-a994-d5485d0a6b16 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,4dc7d3eb-135c-4f14-a68d-06922ea5e7ea -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,997a12ee-707f-4a72-8c9c-f5246fc0e985 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,d4a96d47-73c4-4061-937a-b17e86038194 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,f5a86cae-8ebd-4ba4-a82d-d78d3828a155 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,b190aa0e-09ef-4496-bee9-45bab8e3d432 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,94c60da3-db65-4ce8-a119-15f15adaa6a0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,05b27ca4-35b2-42ae-aff5-a018b877e80f -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,173e183a-d84f-49d1-b722-509cf962cfb2 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,330a7c4f-77e1-4bc7-9d7f-8ea71a286c77 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,6df6af3e-0fc7-4649-a18d-fafa5f2581b6 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8430bf9d-c4df-467e-be1c-887201dc87a7 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,2fa3244c-7f56-4b08-bc28-731beac5f741 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,e6997a17-33c2-469d-bd46-7568002ad3c9 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,864dd50e-573d-4b30-b88b-110bb1cb9c48 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,67732720-4e4e-4dcc-90af-a6ff56bbc1ea -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,ac668d72-791e-477f-a6c9-1b0b9d1b6392 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,a8b32d28-46ce-45d9-a7ba-cdfe0c8753b6 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,765348a6-e027-4de9-b90a-d304fa3905d0 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,c10db718-168f-44d2-9474-6f810e5c9e9d -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,acedbac1-5921-4f19-b84d-41bffeda7b15 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,25359216-e455-44cc-a219-ea1d22802f29 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,82cb3b29-2fb3-4254-ac28-fc3a358158fe -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,149d7532-da0d-4218-9bc8-b724499aad86 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,13683e74-f080-43da-a421-b6664ab9289c -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,7a13ab2b-1d1d-4bde-aee0-acf62c94ccf1 -CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,55.73333333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,6a028a08-a98e-4d3c-a342-5e9cb76eb302 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,07fc8f0e-64d2-492d-8267-e1de2b0db96f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,30b51912-1982-49e0-9fe5-05c3862d0ee9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,84e07270-2ed4-4e9c-a1d8-76aa1a8f000a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,0a752b81-ac3c-4944-8d0f-ec3a1d8f6c4a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,5056f0ac-cf34-4e0a-b5aa-4f2af3dfe764 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,2364653e-9477-4683-9966-dce851ef3017 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,97b69dc5-803e-450a-8942-49abe1b52fa9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,53931d3a-f570-45e4-931b-6f7bcc509694 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8385fd48-9358-4cff-ad6d-1df889cda878 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,673ba1d5-b29c-466e-ae35-3f9c51a95fae -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,d4747c00-52c7-413b-a797-aca91ed1b5fa -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,a5e80adf-aaf9-4a92-8f37-a7b91487a979 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9d27541b-2abf-4bff-815f-680915611509 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,c99a5650-4f80-4072-a1ba-917047a7d161 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,2c6156d8-52b5-4913-b2fb-7de008b45232 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,5a78e094-07b5-43a5-9b94-4155b22cfa3e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,819723ef-3b51-412d-b2ea-516b5fb01111 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,fad1e67f-c0ff-4b24-b36a-7773910e2919 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,8d26cc3f-94ce-41af-9910-4d56319a272a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,25e593ca-7f0d-47df-8aba-5f943539fc5d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,3e1a7af2-fd82-4497-845f-97f1db9b1da9 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,a5549752-baf8-4f6f-b385-72dca8d0cf99 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,336ab25d-5467-401a-b399-301266c4884d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,afcc8703-295f-4556-bdc1-fc243dfd01a5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,9eb3a4a5-3415-4819-bf7b-9f28aa548887 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,be276595-5efb-4728-ac04-0a18890112ea -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,a1f3e4a7-d92f-4c9c-81b1-24c7ed92169e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,aae8bc86-e6fd-4916-b57b-4c6c406cabbb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,4d6b87f5-918b-4197-bf8d-6353308dbd62 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,5aafab0d-27b8-4904-8fa4-35745a6de63c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,3cfbdf5c-04ae-4616-a8fd-b0d713ecbcf2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,4c36dc0d-15bf-4951-8a17-7fd75e160a8b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,53d4f1b8-5974-4038-9f33-931e3be73b56 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,3587675a-72c0-4c59-875f-15df9d032e52 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,1856ee25-2159-4411-8ed3-b0e730554164 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,fab32a83-3cb9-46bb-8283-ac878f8f3e9a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,23426aa9-7a22-4c71-a229-9f3bb91976ef -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,02dbd6a4-e2bd-450a-986e-52ef8fcfccd6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,d8278d2d-3b9f-414b-b6e5-2164ae25d54f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,4b860e5a-856e-4f03-8ffe-b77381d249b6 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f23d087a-4133-4774-be20-97204b70b296 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,e0373943-8cb5-410c-a45b-442ee140eb4f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,7b8ad0da-4329-4bd1-abe5-2512b0cd3c43 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,5ee2c92a-e54c-4d65-aa26-ae0794590ff8 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,03eaa68b-1f28-4c2b-b728-9a47d02e4660 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,61259614-232b-4953-8ccd-235691c358d3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,35bb303c-be54-4960-9eda-3861a4e252a2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8021b09e-7d08-4fc6-a144-0f6d5a600b07 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,2f69fca1-3e8e-4a71-af94-055361e0d108 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,779b22e8-6108-47fb-8ecf-420f19208b3c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,e6894eef-0a1f-4458-85c9-d371e94b8d16 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,73b56d99-44e4-4309-9fd1-ce1567e32bc7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,a913b2cc-1a3d-47cf-a8cc-9ec937a223b3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,16e951b8-020a-4aad-80c2-cff70c592634 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,cdd7dfff-c661-49a1-bd15-8d2a88c31e45 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e4e80a19-0858-4cbd-88df-341132cfdad7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e8a32374-c8a8-4006-982b-8c5a780d1b29 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f8d334e1-d3ea-4138-b1f3-6ce7df3253b7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,b469e485-9445-438c-85f3-b5e9fabd8bdd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,c51e3030-8f38-401e-b7d0-5289210a883b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,c7232c13-04be-439b-8b5f-ef481f67556c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9e46aa19-637e-4715-94da-7923d44d5b76 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,1a636cc9-f70a-43b1-94ce-df54e6177677 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,4e16da8a-f4a3-433f-85cc-219a3859ac8e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f170e504-77e3-43fa-9eac-3b471c49e524 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9add52aa-d3df-4b6a-8f6d-fbaa920c9368 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e80c2bba-7bf1-42c9-9c79-6477c0f21c68 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,c1647f70-8828-4d8e-a7f4-619c40842462 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,6f571932-b9c4-41a4-b349-0762cc86030a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9d4c0826-3880-4e8f-b362-d211e620b9f3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,546d1cb4-8eca-4f4a-80c3-6007c2b42b7b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,bacd6195-6e4c-4291-a0e0-7939d5d5cfae -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,a4c0725f-c419-425d-b2a3-286f89acf45b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,40d27823-eea9-4455-b576-b53b54785eb8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,765cfe9e-dea3-44f4-b6f4-c47c0dcabece -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,4a40ce74-ceed-4185-8686-dfac6697b10b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,6898e8cf-3397-4356-8ed2-80626bb50c8e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,51edaed6-995f-49ce-8604-8e9e4215e24c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,be4af607-b887-4186-a5e3-cb4c39c5a778 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,7f4ccc30-83fc-4e66-ba04-158a1d61f325 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,be3939cb-a6f0-45cb-b77d-fe241975173f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,4c983000-da73-4762-9b06-d0ab400efc15 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,470dc1fe-b57f-404f-92fa-eeb10731b6bf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,0b115936-0152-4756-b168-1e4d2f451cf9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,9d777509-a8e5-4275-a160-70e9ab355461 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,b8ea741e-810a-477d-a2bc-76a1a7d6f584 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,abbdd7a9-1333-4c47-80c6-1ac8b7f82458 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,fd63151e-4a23-4672-8178-282722057211 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,354d6586-6c2e-4205-9030-6e16f237faa5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,00980a23-6dbb-4ea1-9f8f-4e30552225a9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,d5f5a360-1dfd-4d5d-a83d-2220427703a3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,13ae6c92-d027-4968-937a-966d90427352 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,79bd5386-6c73-4a9c-babf-bd59c99c2406 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,b5af11a2-93b4-426e-bf78-b929293df988 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,00d17c0b-6ad2-4c08-b5d6-42c83c42925e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,904388fd-f74c-4f0d-921e-2d5aaa00f962 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,95233b17-b08e-4238-a1c0-5e593215e9a9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,fa3303fd-821b-407a-afed-ea98b14392c3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,1557b4ff-112f-4ff4-b7d3-f74f982b3b88 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,7bb9daf5-a0fd-47c0-9187-8a65f427f663 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,29804667-0265-4a5b-8943-23ed2b826de6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,5d860265-d83f-47dc-a080-ed2eda48140b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8eefae1d-a7a4-4252-baae-3e0d33df3358 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ad62d06-dfe3-4440-bcc7-43e96eaf169a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,43f10864-e55b-44e2-9c81-0a38fc13f53c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,b5caaeac-80c4-47e1-9782-65fb77797aa3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3893f20a-6dba-4962-90c0-7375440ea27a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,77.36666666666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,cb6a489e-4b2b-4d98-b1ff-f64dbaf1d94e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ca9bdb56-7112-44f2-a854-360942fc8666 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e9efca2a-9b96-4d7b-acb4-22e1ef15668c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1dc141d0-78b6-4918-b3ee-8abbcd916203 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,033f0f3a-440c-442c-b4e5-47261366aceb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c86fbd17-f6d7-4c5f-b9ba-f08713e55bb3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b0b970a5-87d7-4544-8f99-4aa72689a97d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d4ac7e53-5c7c-40c9-b363-d6b084ba676f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3cc49e61-81e1-47ea-9d7a-f8aa82f0600e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0b21f940-8f5c-44ed-9b9c-248b0e36e9a3 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ed15643c-9d90-42b7-8e7e-34f139dd586b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8a5bd9df-2ccb-4542-a055-083ec6e4b5fc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a461db5d-4725-490b-b9d9-0ed587b1100c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,81175a43-d859-42d1-b2d8-67ff34d915f5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cbc8e30e-0757-4745-98ab-98cc3de67336 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,60f8a0b9-90be-4cb9-8559-1394e2051c16 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,633a8749-bfeb-4bb7-a7cf-348ad4cdc8bd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e285ea25-b0fc-41d7-8cb1-41815fcf76d2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,12a2cb10-15bd-4811-b596-9320378145cf -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,46fa720a-e0d1-4145-8fd6-34a5b6e0fae0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ca32676c-b9cd-4784-b358-ea753181cbc1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ce291bd9-ac34-4016-8ced-0e2cc9fd5bbe -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,53409997-0dfc-4c25-a900-9820314a3643 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7c07e6c7-b0fd-40e5-9d55-fd8b442e52b5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,eb334768-7255-49c4-ac35-5a2797454298 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,13d630f9-fe17-4617-85ae-7c5403a3c435 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d0963b69-00f2-4e7e-a1a3-3b1e36870134 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,34da2cfd-8645-4089-adbe-d38996620f87 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bc39e9b3-c040-4c05-abac-695d5897fa43 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,94043416-1b37-4bca-a6df-984f4bf58544 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f1ba2d0f-739e-4c51-949a-037905ec6463 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5c4983d7-d8ac-4c0b-aac6-4d9062b0bb73 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,86bf016f-2606-435d-8010-6bc8e2281789 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1cc6362c-6698-4c15-83b5-7c0bd16328f5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4b1bf796-b51d-41c1-bf6c-05f0247a4be7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c86e3a69-699a-4dda-b4cf-4333490ea858 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,11e985c8-8819-4507-9155-d328f219f1ab -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8a88a6a9-36f2-40cd-927c-87c34c2d3251 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,529489cf-318e-4f43-9f88-2b3992ef36f4 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,a7bb27b6-b440-4597-b09b-5615d8ee19e0 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,a60e70c4-b297-49e8-b0f9-09a559d4cc30 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,9c96ce9c-25cb-432f-804b-0cc2bcf8488a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,055da114-039f-4973-b3ed-3d9365259120 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f970b914-ca4b-4736-9488-090dcd207832 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,bd5fdb45-275a-4ce4-8195-fe053dfe4f5a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2490a8d8-bf97-4b0b-941e-f95435af09dd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,36937094-6873-45dd-aaa8-c7cccf242e9e -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,4c1255aa-befb-41d8-a324-af7037632bd5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2527a7bc-8d51-4ff3-8f9a-5b7fd3742109 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b64150ee-3249-43b1-9738-767df9552132 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,07a7a864-ed10-4555-a72e-d4c90e6262f1 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c092d25f-8a71-4b75-af7d-08d89cd41d1c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,219eac5f-f0da-401e-9b6d-91cca587ba3b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,baf2bafb-00f6-44db-ba85-1f73d2825158 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c60d7955-a030-4fa7-8db5-3a9620ac4c2b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8a3ea336-0d2c-41c8-89c5-932a81d53153 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,13f2c382-ebad-47aa-bbbb-69f76b65484b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c503737b-5525-4cd0-a622-67c7b8b6aac7 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0d8343c7-b7f0-4cc1-95d1-ddaf22cd67ae -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7aeb58b8-9e45-4347-9a2d-8f50dbdeac9d -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,41c2042a-1983-4d1b-845c-d27ddfd8468c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ce2179cf-f878-4cc2-a4e7-38be5b95e555 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,48096a5b-727f-4c08-9bfc-cf15d7170f6a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,58b93675-a734-4eef-9ff2-2812a9ae634c -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,700d428f-4e7f-462b-8996-0c97e11268bd -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,91e04932-7268-49c6-b467-413733b9a9b2 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fd0cf8b0-ec1b-4c2b-b45a-8e287c9348dc -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1c8bca67-e1ee-4870-8552-6bc96137a363 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0cafd6ac-9eef-4d6b-a6f5-6b8a2b41adaf -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e13fce53-cbf9-4701-b494-80953427cf59 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,24994097-3359-4d5a-81a6-3d4fb815d712 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cf1271f7-dbb6-4992-8a8c-4e725458188a -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a41c5449-8f97-4453-9a24-2496c11b7b67 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,fca83b97-f344-47db-89e4-09baf8a7e6ab -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,75b63f3f-9096-43e6-9f54-fff62c38c026 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,42532755-588d-4b36-8762-29446e2e2f5b -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f6688792-3c34-4fee-bd20-3b64ef281dca -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,45055c5a-91d9-4748-8f8d-25ae48b866d5 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,1f1194d8-dda5-4869-8a17-2c22f91a255f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,b671f46c-3952-46eb-9fa1-2325ccfb8163 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,18c86725-9439-4e01-8f52-91d87817d3bb -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,1073d581-26f8-47fc-99c6-995263e77a73 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,38340d29-d4db-48e7-bec8-bb5d201e3a75 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,383bd6ed-1003-4354-b99a-228e9a368892 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f8b6a316-b2c5-4be4-9b89-9339850c3e76 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,9a26faab-ac1c-40c6-a2d5-519ce8b4e603 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,94bd8ed4-e90a-4195-a2fd-d7633b4db851 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6d2429be-0f95-435f-91ea-721ac0c7a540 -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ac6791f6-10fb-472f-81bd-716329a0360f -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,04ae11c9-6e84-4c5b-a11b-6506ad1a3cde -CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,9f8f246b-0014-403f-9b65-d7733b0e98b9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3dc6ccd4-5eff-4cba-b8ff-03f427fcc4e1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b6593407-cc46-45e3-b6c6-00df4792d96a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5d3e8084-82a8-4e60-9608-027af7c0f00b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c2efaef0-b525-4b2c-90cb-85cf23031aee -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,15b961ba-9510-474e-9f16-c796330a7a32 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0412e3f9-8d61-4582-be7a-331284abf8ce -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,27d0a0b3-94d6-4b0f-bcab-11477f440091 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1bb6d16f-350f-4fb4-8dee-a7f3b981ef6e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2504f6e4-3987-418d-8045-172a5761e571 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e4f15af4-f7b7-4f1f-9d9a-2293a07a9881 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,355406bb-3f4c-4785-9d74-22cf9dafbff6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a64542f5-d123-4a7c-a471-b92503ace29b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9f2226be-b725-4375-a3e2-d22c44c4e1e9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0f3adc0f-0436-46f2-b4bd-a4dc8a15f2e6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b99feab4-c36e-42c9-a42c-4dba16be4157 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1258e3c6-818f-4d37-a574-a41f44aa1b5d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b97abd42-e9cc-42f1-8bb0-5fba71cdd332 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,871ec3ce-7757-479c-8f66-6a91ce0d8f33 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,42382e4d-4076-4b41-839f-c5dc2f153fdd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ff41a0a9-aedc-4c7d-b63c-2345ebf0dd2d -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,90edc051-722d-407c-9843-0a4211ae842a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,51a36f28-58de-42c9-baaa-86e239946243 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,87f8a621-037c-4f0d-8bb6-d02d0dd66b1a -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d13b5879-0668-4cef-8b75-f1ca752d6e35 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c25b5554-4da1-4753-bb90-69ca14ed0c14 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cfdca711-43cc-4c6c-bd7a-0d4a39425eb2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5b664cdd-4317-4965-ab6e-c30aa251ef6f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ca327048-4c07-46f5-a349-c399a7c47752 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d21a940c-875c-4499-9303-2362d75051e5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,74f82adf-a18c-462b-aa58-09b5258a7e4c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,167939d8-70b9-439c-a188-95f2a22e8dda -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2c76ba72-44d1-48fc-93f4-c6d7dc3f0692 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cda77590-2c0a-4d35-aaef-81381f3a9050 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ed5cfa90-5e37-48f3-ac6a-aac719b222b7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,933d0fbb-3bf3-4a4f-9b6d-7a5b2949640e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,235a904c-42ca-42b8-bac0-08c336e18a47 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,5dc5dd93-c82b-4231-a366-c20f437d3caa -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,4e765dc4-f57b-4b15-8b5e-cea4f4dc1ca3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,bec851f2-8d86-4104-a537-e849035942bd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b34395c8-76ad-4105-a7b0-6f993e9f5fd1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b31b0ecb-f88a-4c67-a097-256e2e556238 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,7799adb0-e8bd-4c97-9e5b-cccb6f8337b7 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2f6af810-0bd9-419d-ad75-2e98feae0b9f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3d0aac41-1aeb-4fb3-9e26-a7a13d17c2c6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,15d72e60-402b-497c-ba69-80560dda1ced -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,97bc0345-d90b-4b11-b728-dec1ff9cf61f -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,99d644cf-d659-45ab-af4a-e093098b5caa -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,09772179-932c-4114-a7e4-d49c84689b59 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,065001e3-02fb-4dd4-9077-3c5d678d30db -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,d44dcc1f-626a-4805-8a92-ab0024748d25 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1d737351-d7cd-4335-ba7c-c10aa794e50c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,9f8f8e46-6bc4-4dbe-bc8e-a763a1bbdab5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8710708d-6005-456c-8bc6-0f78e3a185aa -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,ce93b455-a38e-4522-b64e-71c635ddf7f0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f87df20e-2a29-4a8a-8f42-2b0c765d57cf -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,06e97981-da21-4492-9c9b-b0ebf58dc052 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5882b342-39fc-4da2-87db-949a9a5a26a1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6a8aa02f-afe9-4bdb-afe6-82c34a001c00 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ad5f26e9-b3da-42a4-a9a1-a432035d2d6e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1507c178-907c-4856-9f5b-2d35fb393a31 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e2cba49a-1bd4-42a4-bd16-e57446fa7cd9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d48bd093-f434-42c0-9175-038ba444ae67 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a3f5f943-5f43-4828-aacc-72fae4a33261 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,85a510d2-10e8-4912-b588-bcb03031ebe5 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7c5568c5-219b-4d3a-8073-a2ed6787e78b -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,3597379f-8522-42cf-9d7b-c6d29c4cd1b1 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,91276230-e632-42bc-86d9-4a9f5cbf39d4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,27b2efa6-8607-4607-8d70-4b4514156d71 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1591ad25-3e85-4f95-ba5a-1b3150b9327e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a8b5056b-5e8d-4926-8fc5-835340488f40 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,10bf8578-98ae-4f6c-81bd-efe5f26d3f15 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a6e8e5e4-9f26-48d6-af8e-b2a0b6e2b5e9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e0d9fbae-f98f-45c6-96f4-de82967f55e9 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ac723e72-60ab-42d7-8768-ae11641d9be2 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,cb717d83-2884-45ec-a012-981986a170d6 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,51b380df-8bb4-4fd2-aec2-fec584f67378 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,1cd1b2cc-2059-4fc2-b52f-f9b9564e9b8c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6e92eb23-40f4-4c35-87cd-81e594507c9e -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6a71a85d-b16c-4ed1-983c-941bdd5b17b3 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,df42d325-9b11-44e5-975b-1d4cb23810bd -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f9577d74-280c-4bb7-80d0-c48a4da9599c -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,7f2597fb-789a-40ae-93fd-dba2a37e4844 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ebda70da-0700-482d-8e1f-7ca530139606 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6b17ae83-b2b9-4d76-9211-6b52911e9bf4 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6980d5c1-53ea-4ae4-b7e6-f5bc63b15946 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,77468e5f-a534-4e7e-bff5-2b88ce68a2e0 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,db8a7fb2-92b2-43a4-86f0-e6b9c4e60c18 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,2252a01f-783d-4063-8f21-ff57fd20d3e8 -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3098585c-74b6-4121-a366-86b5548ec2af -CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,17fed60a-d595-444e-bc04-47de2ead783d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,de3a0f91-40a9-4fa2-83da-9fc1d77ad75c -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5998741f-ec62-4383-b850-9506e171a0e7 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,075a1759-6040-45e6-9543-569f88d449b5 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4dbd602e-04cc-45cf-8f83-8dd8894a7996 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,532cf565-1bb6-40b6-9e1b-3e8ebcad67a4 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,78824a79-9612-4e7d-9f0b-8535d83804ac -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,341b13ea-2bf1-4d8f-a26e-a46cf7530871 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c3919ba5-5d6b-407e-be1e-45ac62b44900 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8db0ff2d-4167-4dc1-b9ad-e6ca79ea6ad4 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d26e80d5-fe53-4af6-8b0c-366bbb06cb98 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c4fda172-87fb-4a44-ad2c-91d5cad3159c -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bdce22a6-3f7f-4893-8e98-a45918ee1e09 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,982dc024-2f1f-4ae1-9363-ee3a92ac2e47 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8df9da10-2761-481e-ab1e-836aec771fb8 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7fd3bfe7-28b3-4f6d-9c57-87492a6f7627 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4425cbeb-a99c-4773-859e-baa2dbf82dfa -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,da340610-cd07-4798-9287-81199b9ef062 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,41e24ed7-4ca5-47c5-bc8d-202f2b15d0ad -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b8df9a27-e088-476a-ae78-3703b2999b31 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0668818f-2cd4-41bc-b5db-334bc3a12718 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b9981f55-d751-4a92-8013-e37b04a72f95 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b3ad639c-a635-424d-ad8a-a4c23bf2c45a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5ad56968-1996-41c0-90b7-0884390da612 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b46e00a1-6401-4311-b837-22431a3f46a6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,63e47db4-93fd-4d4d-bf28-adf38c0ecf20 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,16dee155-ed98-4617-9854-030fd25b5984 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,fcddcf7d-5a3d-4a02-b546-55ac77b4c74d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d63e294c-fca8-4d1e-a52b-cb0f07dd658d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,23ed21b2-d70b-4b90-b396-58dbc3dc3e01 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7f05ec72-cc9c-4372-a62b-c5670bef57c6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,87595275-b63e-40a8-8116-8cec671e0c78 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6050410a-e2c6-4417-be5f-0c2b70bda45b -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1a412fec-384d-4c7d-a609-dfc078a9c141 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,26183447-951f-4aad-8ed7-bd5bd06fb79f -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,60968f01-6680-4922-9a48-46ffa1bf0d12 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7811c1c7-d223-472d-8ea2-4ae1609bd9fd -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,fa9a7cf6-92ee-4f1e-b3bc-6604eac8be5a -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,d2fee1bd-26b5-4096-90c3-75b5659e27d1 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,69425e1a-757f-40a5-bde4-f377781b3c7b -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,dcec3270-d9fc-4ba1-a535-fd32c2c9e074 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2dd358bf-40d0-437f-922d-8c91f488357e -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,67110adf-1aa3-46ce-8187-40335d4d7618 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f29b1cc6-e455-4a44-a5b3-949690dcd94c -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,15f7a9df-ff5f-412c-9307-9f34c110606d -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3d36b6e3-84b0-4fa5-b2d2-62ca219982a8 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,06b48b19-a19c-4777-9dc9-ac3ea4b30162 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,9caea00d-5690-49c1-9f35-8f9320b4d7d6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,59e7ba23-2495-406a-a4a5-238fbd000a78 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e8a258f7-125c-43bb-a842-a19d376587a5 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8b22665a-12cd-4b36-be83-956c3348f268 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1e2d5521-5209-4e2d-b4e0-972aa98891b3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6f48ac15-ca9e-4002-8ca0-7d87ac77e04e -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,5afd4252-e28a-4961-b012-326144bd5275 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ce823f4-b527-4897-a4dd-f4f60d8797be -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,894a7e81-7cf3-4206-a85b-8de551d85bcf -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,03bee2bc-90b9-451f-98f1-ee7763f103df -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,06b1e697-d0c5-4f03-87b3-9f66fe8a8565 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e795d391-2129-48c7-8f42-8ef02d680293 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ae4522cb-74c0-4eb1-90f6-520c3c27aa6f -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,56f4fca7-1cf7-43ef-942f-e6170dc3c692 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ec5b8858-2acb-4a2b-8647-f5842f748c78 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c7efb5a1-90ab-49f0-a04b-4b2ba8f56492 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a2d03ae2-dd75-47bf-ad23-b1250df15ff2 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fd12d46c-27e3-43a3-8700-437b70a17159 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a8890931-e0a1-46d1-a0e2-9528c59650a7 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4d87d537-0a58-4a5a-9919-b74308575ae1 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6dd1799b-058b-48f7-8f38-7f271e91fd29 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1f5825d9-78ff-46fa-ae0c-f7c00184c5c8 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,06ec8bc0-af99-4d16-bc61-cfb1ae372ec7 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8bc1d464-da37-4a0e-9e13-f19928149010 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,03b1e9a2-799f-452a-a881-ea6385ee2976 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9a506230-7c4f-433e-ab77-e0719b464482 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,762f6a09-dc29-4dc2-a401-07897b582b65 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6722e6fd-cab8-4c3b-9455-dd77fce8f0c6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,17fe3aae-c1ec-4d0f-a1f5-1a67cafbfaef -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,206603ae-bb8f-4b17-a028-3ff2961846a1 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d6457615-492e-4b60-a935-696fbe1d6ff3 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,099c84ad-cca1-4ea9-92e8-6caf491f0564 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,1ff0aa15-54f1-4770-b680-643e796b34d9 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,21538348-4a4d-47a7-ad60-dac2643870d7 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,a584fdb9-e175-434e-a2cd-12628b1d3891 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,be080039-f463-4ab4-991a-0917d1f88066 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,48a43ad1-c359-4df3-a59b-b59f3c44ac69 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,585bec60-1b6d-429c-928b-38023d6f2b02 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,7aafe2bc-58df-401c-af3c-e9550a9f93f6 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,761fed93-9cec-48c7-b605-f0b63bf26d27 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,9b18d9a3-4d9c-4f28-977a-3379d3cc42b7 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8b02420a-a285-43eb-9484-47f9827e255b -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,b66216cc-347e-4767-aba9-586c8e93ac31 -CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,56.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,95d59eef-ad13-49e3-acc1-bfed28de583e -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,30.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,65f62cf1-f1d5-43d5-880c-b67d464efd6a -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,30.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,b2708733-cc21-47df-9039-df03e6e7b897 -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,30.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,e950992d-9339-470f-9302-83b5858b6083 -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,30.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,423a3060-edbd-4c14-adf7-d26bf6ed377c -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,30.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,d507652b-5ab4-4623-afed-ccaebb2d5956 -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,30.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,c8fd1158-4b81-4053-801c-0f901890b37b -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,300.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,a03afddc-069b-4b4e-84e6-cfbe0eefed0c -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,300.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,9f92bda9-4b19-407a-b83d-3ce963302c0a -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,300.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,cbe1c92e-4d76-4f7a-a6d4-ea41503ad95d -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,300.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,d1a3c66f-85fb-4574-880e-3e24ce9c76ba -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,300.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,693bdbf6-c4f1-406d-92fd-3994160ced7f -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,300.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,a98d7c1e-d0da-401c-808a-da677fe65e7e -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,300.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f7ef97ca-c883-402c-a0da-eeb2ec2225e6 -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,300.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,75e4a1b4-8a8c-43a0-bfd5-c075e6eb0e54 -CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,300.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f1f703ba-0391-439e-9150-3820a58f8a47 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,0.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,5b5915fa-89ad-4838-aa61-2a63b300747e -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,0.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,dd962f5f-a7a1-4875-948e-978d21127ced -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,0.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,deadebe2-278c-46e2-96cc-a509c3fdc74a -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,0.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8473110e-0935-4cef-a41a-0ad6eba44aad -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,0.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,698cc5b1-141f-45e2-bbe2-4eb6dfa9699b -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,0.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,85187603-420b-45cf-9c5a-aeba8d6dcdb5 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,0.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,6b9e9ea0-6473-4b53-abb0-3dbf7c3844f1 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,0.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,135306bb-d7b1-4a62-bcb0-e34334610dfa -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,0.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,4b3f16d3-c314-4a25-bb0e-8adecaf55e8c -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,0.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,00a63e1a-fce0-48b7-80a6-fe91d9f3277c -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,0.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,ab84447e-6950-4e88-a8b7-f16ac82441ea -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,0.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f87d5417-d7cc-47af-b240-e2a17906efd7 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,0.1,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,44d804f1-a180-43f5-a350-da2aca3d7ff3 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,0.1,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,cf4493dc-81f0-498b-938a-16ce4c0226bd -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,0.1,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8299fcfb-3d15-42ab-96b7-8ea60a1c56c9 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,0776f2c7-bb95-42cc-b0f7-7666b881a8bc -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,d3af41c4-d924-40ce-90c5-b745792e31fd -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,6aa3c765-072e-4dac-8a3c-33a4d3cad308 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,2b0c15f6-7e88-4402-9057-bdd08b256e3d -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,08c698c4-149f-493e-bad4-7dd9ec2df9ac -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,943d2520-e65c-48f9-941a-a8db76265091 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,4.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,143ec670-2c06-4b81-90f9-bed5543e9a4a -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,4.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,058d96d4-0768-460c-8c39-0bac21460679 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,4.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8458bf11-fdef-4e80-87e7-ab61cd8c30e2 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,4.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,a04ed513-0e99-4039-a677-25c13606ca28 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,4.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,5b958d65-a824-4ad4-adc0-5a4baa7fca8c -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,4.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,1536389e-9ec3-491c-a5a4-ac1efec9846e -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,4.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,da970aa2-cae6-433b-8bbf-9bca53d92393 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,4.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,e547a95a-1464-4538-9173-4a7ddb1490e2 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,4.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,e6210822-426e-4231-8ad6-122e5bb3d8a3 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,fuel_combustion_consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f7f8641-d17e-4adc-930b-55c5f23aadc1 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,sampling_scaled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3345bba6-fe6e-44a5-bed9-c7e102fc7660 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,modeled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,e18dfc89-7a8f-49d4-8719-c09a99f020cc -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,fuel_combustion_consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,934b5f98-fb68-44ad-9688-abd54790fba3 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,sampling_scaled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,016ad13c-19c3-48f6-812c-4819626dab47 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,modeled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,476d98e8-6d3b-461e-968b-ea0a17a8b94d -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,1.0,fuel_combustion_consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,bfb5fbb0-44b2-4ba2-a06a-f56eb0f0f15c -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,1.0,sampling_scaled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,5511fa0c-df6b-4132-b0cd-e5255bc9c875 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,1.0,modeled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,12e55d06-2688-4f44-b4ec-e770156e0b3e -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,1.0,fuel_combustion_consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,9ed99afa-c6ad-4d08-ba43-5c1fd3b72a3f -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,1.0,sampling_scaled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,c16dfaa9-73c9-4dd5-8351-aeb590650b1b -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,1.0,modeled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f19a315b-0efe-41f5-babf-3c9b7de4f47b -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,1.0,fuel_combustion_consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,c793a802-6095-4079-9502-b5a4f24aef4b -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,1.0,sampling_scaled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,0b558564-0706-4678-8b3d-3ee7d77bec8b -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,1.0,modeled_data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,dec2206b-9f32-4f16-9fd6-dd91716d6945 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,dbe28011-2f7f-41e8-968f-b857a0304131 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f8ee28fd-087d-4a32-9be5-cc67c70a41ed -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,,4.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,fb7d8e38-6239-4e08-a178-f169e74d2486 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,5761fe91-f9d9-4f21-9f29-8e5d1fb6ffac -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,d69ef1f6-1a8a-4a52-845e-b9e4902570d9 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,,4.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,ffe92b26-c714-4be0-bd5b-f66d0d36045f -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,4.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,20f2205d-7069-47d2-979d-3629a083fb15 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,4.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,bd31ee42-ac6c-4296-bc06-eeddffb32bce -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,,4.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,2bbb9dab-115e-4de4-b31a-b6dee945d57a -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,4.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,85596676-1eae-4133-88d0-9f46d922ee99 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,4.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,697c5de3-caa4-427a-a92c-f1ec8ccded7e -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,,4.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,5a9748c0-6aa5-4e4b-9c91-50ab4818c2c9 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,4.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,30711923-dbef-43a1-aa29-77a0f5916624 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,4.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,64e9fd58-596c-4b81-951a-3300f84b8969 -N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,,4.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,be148c64-075f-43fe-8a2e-fa0ff09fa5c4 -CH4,world,kg/TJ,,I.1.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,bfd77f59-033a-4e32-a45b-80cca333c401 -CH4,world,kg/TJ,,I.1.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,55dcfb00-d3c3-4244-85ab-e59bd82b068b -CH4,world,kg/TJ,,I.1.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,6c557c9c-7750-493b-9d8a-55c08a539d07 -CH4,world,kg/TJ,,I.2.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,33644260-c576-4a84-9015-0759e1540fbe -CH4,world,kg/TJ,,I.2.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,78f2341a-b7dc-4aaf-a458-67fbe6232d38 -CH4,world,kg/TJ,,I.2.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,81047dc3-2a22-4a5d-9d5a-fa1ff317b0bf -CH4,world,kg/TJ,,I.3.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,c07229fd-2afe-417d-a4ae-70674075074e -CH4,world,kg/TJ,,I.3.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,4b21c323-9eb3-443d-937f-3e2f41ff88ad -CH4,world,kg/TJ,,I.3.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,293cd938-4c7f-4f80-9710-51a7399ad398 -CH4,world,kg/TJ,,I.4.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,a9793d52-f984-40e7-9941-6f28184be7e2 -CH4,world,kg/TJ,,I.4.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,91f8ca6e-9c45-4256-8ca0-07db8d677e62 -CH4,world,kg/TJ,,I.4.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,cc2c2c0d-0896-4f68-b1ee-5fb61dc4f54c -CH4,world,kg/TJ,,I.5.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,619ed7b9-a0e7-4158-8885-7be89fa04263 -CH4,world,kg/TJ,,I.5.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,30cab6d5-0bf2-4d7d-ae6e-778e9fabd7c3 -CH4,world,kg/TJ,,I.5.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,91c83657-a1fd-4aa6-b818-3b290f736819 -CH4,world,kg/TJ,,I.6.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,28d63a9b-feff-436c-b98f-e0d3be680e4a -CH4,world,kg/TJ,,I.6.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8df62b35-9269-449e-9d55-61b4fe25efa1 -CH4,world,kg/TJ,,I.6.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,ef1bcf77-14bc-48ec-b0ee-c71ad50699a2 -CH4,world,kg/TJ,,I.1.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,7048fd88-1d5c-4fc0-8467-6d8362529754 -CH4,world,kg/TJ,,I.1.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,acfeef60-5dfe-4165-999c-4f51e52f2e76 -CH4,world,kg/TJ,,I.1.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,716c9ced-508e-4f3d-bc33-2ed4aefebb58 -CH4,world,kg/TJ,,I.2.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,a899de46-e705-4099-bf55-db19a9e19579 -CH4,world,kg/TJ,,I.2.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,78f73294-8bea-4075-a70b-9b85945a88f3 -CH4,world,kg/TJ,,I.2.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,1c7790ba-2811-4e69-bc23-cc5a8cd045e2 -CH4,world,kg/TJ,,I.3.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,d7c9a962-422e-4765-a5a3-f79fdd9085ff -CH4,world,kg/TJ,,I.3.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,c6224bea-74a5-4fb0-8feb-9e5391564302 -CH4,world,kg/TJ,,I.3.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,ce46d8aa-8be4-493b-81ce-ba4bdf0d5bbc -CH4,world,kg/TJ,,I.4.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,e8c47e35-1eae-4b1d-b28a-a6b37930b7b7 -CH4,world,kg/TJ,,I.4.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,1cf778ba-0155-486a-8c6a-0079ba9eda3b -CH4,world,kg/TJ,,I.4.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3abd3d0b-6663-4a9e-9b79-f69d9e90a97f -CH4,world,kg/TJ,,I.5.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,6ab16d17-476d-48f4-946e-294ae0e894fb -CH4,world,kg/TJ,,I.5.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,5b466a13-56ec-48b1-9ae3-f15b73c35166 -CH4,world,kg/TJ,,I.5.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,a367228d-2b26-4bfe-b4b3-61cf49946964 -CH4,world,kg/TJ,,I.6.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,d4de3ead-8270-4cf1-8d8c-dc058c654c10 -CH4,world,kg/TJ,,I.6.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,9bf9dc7c-afa7-4f39-a92a-cf1ff156b0b0 -CH4,world,kg/TJ,,I.6.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3bba40d2-35ad-4183-8e6d-5730ed52cba0 -CH4,world,kg/TJ,,I.1.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,d5f6fc0b-cd9c-4671-88d2-9856288cf40a -CH4,world,kg/TJ,,I.1.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,ce688604-2ed3-4b55-9992-9031f53b87c9 -CH4,world,kg/TJ,,I.1.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f0d737d2-8a8f-4d33-afdf-c4da7e9ea140 -CH4,world,kg/TJ,,I.2.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,2c0654c0-f03f-4146-a30d-ff40e1a0bc0a -CH4,world,kg/TJ,,I.2.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,e83093f3-32b7-489c-b85b-5f2daceff375 -CH4,world,kg/TJ,,I.2.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,a27a0583-ad2b-480d-90e2-653cfac0955d -CH4,world,kg/TJ,,I.3.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,d908b340-b690-4427-9db1-bd49223366a6 -CH4,world,kg/TJ,,I.3.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,394bcca8-f536-4df4-91c8-047ece7fdf73 -CH4,world,kg/TJ,,I.3.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,816cb386-3270-4d9c-a8f0-de9c690475d6 -CH4,world,kg/TJ,,I.4.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,ea185e4e-4c3a-42ee-af56-009f1f5fe430 -CH4,world,kg/TJ,,I.4.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,192798b1-3c32-4bfd-8a55-b7f4d8db8769 -CH4,world,kg/TJ,,I.4.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,981da196-3b42-4018-9318-b7fa60503eea -CH4,world,kg/TJ,,I.5.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,46498e83-f990-4b76-adcc-59bda39605bb -CH4,world,kg/TJ,,I.5.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,956c5001-155d-4474-9ca3-ba6c55f1fbf8 -CH4,world,kg/TJ,,I.5.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,930623cb-abbf-4da7-9ad1-21ee6bb81c78 -CH4,world,kg/TJ,,I.6.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8bcc4229-3802-444e-a4c8-aeefec5e512f -CH4,world,kg/TJ,,I.6.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,e61cb3c6-28f0-4e64-b427-f7b7568513da -CH4,world,kg/TJ,,I.6.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,78cf8f8b-ed2d-4ccc-9d77-634ee0bba3d7 -CH4,world,kg/TJ,,I.1.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,81f7022e-4ed5-4e57-ba67-b76746d57902 -CH4,world,kg/TJ,,I.1.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,1484d8f1-a666-4dfb-9f95-c44adacd327d -CH4,world,kg/TJ,,I.1.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,58f7d3bf-0322-4582-aeef-39bd900c800c -CH4,world,kg/TJ,,I.2.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,7af104a9-a0d1-4566-9edf-bd88f56a4ffd -CH4,world,kg/TJ,,I.2.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,358860d4-0129-4efa-b70f-a655a8cfa823 -CH4,world,kg/TJ,,I.2.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,316153f9-0aca-498f-8637-47532a3d5570 -CH4,world,kg/TJ,,I.3.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,4dd8f7c9-ae89-4b51-9628-9d9b562635d2 -CH4,world,kg/TJ,,I.3.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,b970a7cf-b7c6-47b9-a8a8-29945aef5dfe -CH4,world,kg/TJ,,I.3.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,ab2abec9-5e05-4151-ab39-e00421f5ec2b -CH4,world,kg/TJ,,I.4.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,ff1b68a3-ac1a-4cef-96d0-4b1232132f85 -CH4,world,kg/TJ,,I.4.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,afdef328-0317-43f4-886f-e6c95927d808 -CH4,world,kg/TJ,,I.4.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,9199488c-2eca-4664-9cae-580ee53925e9 -CH4,world,kg/TJ,,I.5.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8d7cc35e-ddad-487c-bf79-03eb82fedb72 -CH4,world,kg/TJ,,I.5.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,a00cec26-cbfb-4c2c-9100-ad52e762f43a -CH4,world,kg/TJ,,I.5.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,68ffea35-ac25-42a3-b343-0a54070ab60c -CH4,world,kg/TJ,,I.6.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,37164809-086c-4371-af09-5fcc1fa2276e -CH4,world,kg/TJ,,I.6.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,fe2d19ac-56cc-4fda-a566-c40b239260bc -CH4,world,kg/TJ,,I.6.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f32f965e-f599-4466-8bbe-3c36ab5096d3 -CH4,world,kg/TJ,,I.1.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,2eb40370-b323-4232-a557-f750549c887f -CH4,world,kg/TJ,,I.1.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,9f252d46-bc9a-4f12-b641-cf0f658148f4 -CH4,world,kg/TJ,,I.1.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f23edaee-c2c1-44ba-9843-90302e1946f7 -CH4,world,kg/TJ,,I.2.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,75bdba36-57f0-4fad-b5d3-ce36a922e656 -CH4,world,kg/TJ,,I.2.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,bc9e40ab-0c4c-4a46-9238-1d23f4f9e753 -CH4,world,kg/TJ,,I.2.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8767ed3a-cbcb-44b6-a92b-76b369f0c47e -CH4,world,kg/TJ,,I.3.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,5e03eda6-1267-4555-b182-d55481a43480 -CH4,world,kg/TJ,,I.3.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,183f699d-d249-4091-8c73-a0afaa21fd45 -CH4,world,kg/TJ,,I.3.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,6d21c3ef-8154-4bf6-a251-3c6a37d9fcc3 -CH4,world,kg/TJ,,I.4.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,ee5b009f-4b83-45b6-b859-fb61a9c8b33a -CH4,world,kg/TJ,,I.4.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,75708993-b151-4a21-94e0-700affdc3e98 -CH4,world,kg/TJ,,I.4.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,4c2d2e53-cbda-4431-a668-fbf8566d7410 -CH4,world,kg/TJ,,I.5.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,493d185d-a2b7-4017-bc9b-c9a46a8601bb -CH4,world,kg/TJ,,I.5.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,493a66b3-aeac-4499-9cf9-b38f94b1b8a5 -CH4,world,kg/TJ,,I.5.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,b940780a-af92-4033-81ff-e6e0338f43e2 -CH4,world,kg/TJ,,I.6.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,2eb5b891-eaf7-4626-98b2-e27782c66a63 -CH4,world,kg/TJ,,I.6.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,186f6f73-da34-4629-80da-8c2b451b9b1f -CH4,world,kg/TJ,,I.6.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,a1b1d5e2-494f-4525-a9f9-01d396dc75ae -CH4,world,kg/TJ,,I.1.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f957fbce-5871-400c-bdea-64dbe550c9e1 -CH4,world,kg/TJ,,I.1.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,ddc773cf-b27f-4f88-bde3-5740ed99cd2f -CH4,world,kg/TJ,,I.1.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,c666f947-89e6-4f72-b29f-9f93758b1dab -CH4,world,kg/TJ,,I.2.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,e1b7609d-0e28-46ed-ac74-3e0d4a3efaaf -CH4,world,kg/TJ,,I.2.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,01f02609-b399-465e-a642-5c792aedf667 -CH4,world,kg/TJ,,I.2.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,fa4fbb2e-6ecf-4e77-a623-5b25fc78d309 -CH4,world,kg/TJ,,I.3.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,b1dec62d-8a3c-4091-a687-5d0141c6ae06 -CH4,world,kg/TJ,,I.3.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,98b4ee13-bba2-42c3-9a4a-972d1252c031 -CH4,world,kg/TJ,,I.3.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,00f04734-d40e-467a-9edf-4b30d1d029ad -CH4,world,kg/TJ,,I.4.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f8a541bd-bd6a-4398-aa58-84c48d9719e1 -CH4,world,kg/TJ,,I.4.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,c0664430-e3c3-4163-a8b0-8ba75d77fbbf -CH4,world,kg/TJ,,I.4.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,73a35a79-017e-4c29-8a73-9533d2d91089 -CH4,world,kg/TJ,,I.5.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,cc9b3a88-2eb9-49cc-adfa-32792445887b -CH4,world,kg/TJ,,I.5.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,b3bb4501-8f5f-45d8-b9a9-f4dcce66f90f -CH4,world,kg/TJ,,I.5.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,83781049-b90f-4edc-9cc2-248834b53c16 -CH4,world,kg/TJ,,I.6.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,549b9a93-0ccc-4ffb-8a26-f8d5ae111a16 -CH4,world,kg/TJ,,I.6.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8469ef8e-f546-4fcd-a0e8-76773a132fa3 -CH4,world,kg/TJ,,I.6.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,88c066ff-e02a-4a04-bcd3-411b9e4896d9 -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,1.4,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8b21732d-7b5e-4067-bf4a-e85fe625faab -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,1.4,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3de4af27-9987-4d66-856f-2c383663c730 -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,1.4,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,b31f7777-e3a4-423f-88fc-0acf3bdedfa1 -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,1.4,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,1cad79be-1427-4f1e-8a3d-2939154df009 -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,1.4,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,4a2db9f9-b905-458f-8785-c7005a4594cd -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,1.4,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,78d7f7e8-b9a2-4105-985e-0caefb3e89d5 -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,0.7,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,1f806d63-8b60-4a17-b697-3d27de773800 -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,0.7,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,1c2fef31-3b64-4355-8cf8-77c21eeb31d3 -N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,,0.7,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,968a331b-05b1-4253-bd1a-2005a82a8233 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.264,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,1dce4322-c7b5-4c64-9da5-5a93b2164921 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.264,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,301ba9d0-8afb-4d36-8a1f-06a495c6921e -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.264,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,cb883a77-42ea-4f33-a0b1-2788d9cbf8bd -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.022,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,01fc1af7-838e-4906-921b-a760526cd913 -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.022,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,02dd61b7-740e-481c-8320-fed79bcbbe7d -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.022,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,5d0b0e7d-1173-47d6-9baf-6822bb9683f2 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.204,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,bb064cb9-eaec-4579-893e-2d19dc159ee2 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.204,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,76387ca7-405f-4cf7-9ad9-3034ceacc8a0 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.204,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,75d1d1dc-5800-4316-91fa-8401a65beed6 -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,19.807,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,4e06803f-37e9-4c30-a819-94ed8ed253b0 -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,19.807,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,27949aba-10f2-4460-8604-33f78dfaea8e -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,19.807,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,263fd034-f536-4864-91b4-f65f7d079436 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.217,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,76aae0d0-43c3-4508-a77f-1a97ed64afa7 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.217,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,0019cfad-0ff6-4d08-8737-3273721603fa -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.217,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,1860fcb6-9d61-4c29-bd7d-74b477842415 -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.018,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,084e36fd-08dd-4f49-af52-0d42c851c2ec -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.018,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,454b246b-d8bb-4b4f-bc59-85370c2183ae -CH4,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.018,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,7481b220-f962-43a4-ba49-076ce4a8cd7f -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.572,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,1a59065a-a54c-4cd3-85d4-7361ebcda609 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.572,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,2151cc60-dc50-4436-9fdc-faa7e476a097 -N2O,Republic of Korea,kg/TJ,"Byung Moo Min and et al., Development of Country Specified Greenhouse Gases emission Factor(IV) (2011), KEMCO-20100338633, pp 47-94",I.1.1,KR,0.572,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,51e665d4-f37b-4fa7-bc6c-0854be838f44 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,81516d98-3449-4368-8651-a2a5f6d674f9 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ba116549-ab49-44cc-825e-697ec6eb0fd5 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,82996262-743f-4a33-86ad-e781ed38ad1e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d66a6c8d-5bdb-4a99-8b70-8ff4294b672a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,04a96088-fcbc-4131-9b0e-a9ee5edb8e81 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,9fb7215f-7928-4cea-b248-d0cfcebb2123 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3eb2ced4-1fb0-447d-ae6e-026bd0fe8426 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,b78b3af2-101b-4e4f-80ef-6ae74233ec28 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,792bbf6c-5570-47bc-aed6-6891292d44f2 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5288607a-842b-4da8-a4d0-7f89dec2693f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,50d45ee0-322e-4932-856a-efcb3ffab761 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,51ae512a-4195-4710-a387-1df379232939 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,993fd9bc-f99c-484e-a17c-473d7d720075 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,112591f9-436b-4871-93bf-d2fe6a10be37 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,fe8ba93c-cf8f-402c-a44a-eb6e251aa9ec -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5b8b753a-deb3-4aa9-abb0-33963b564929 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,a9ca76d3-d02f-43cd-8add-a1b8dc0eac1f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,260a0169-a8f2-4484-8719-2beb794b3797 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,e9ca4e90-37e7-433b-aa68-8c26083cf179 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7a36a1bb-1678-4e05-869f-466ec2f9770d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4a180590-4326-4095-8b20-c040d6c94e85 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d15c8dd0-c01f-42b5-a784-fa2fa1f5ddd4 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7a47205e-d009-417e-9a0a-f26895b6d9ed -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,777fd324-2198-46b0-ac83-66950c52cb01 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2aa5062e-d900-4d45-95ee-499bb57d77ec -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2a4aa8a6-4ca9-4d8b-92a3-4bbcf5763f21 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,588459fb-9fac-4216-97e2-0479d58cacf4 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ed89e6de-1403-4b2a-91e7-c40a1bf409cc -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,fb11bbcc-fc26-4c5f-bec4-47d5715b078c -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,77ed9aa4-4fd5-430f-906c-012b3c259216 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f4afba6a-c1ad-4c91-8c59-e0b897da37ad -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4d3c40f7-1583-4aa1-9b76-d29324aa31c8 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,65777228-e622-4007-81ff-c777959c89c0 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f5c9eb0f-431a-4b92-aae1-d8de02d6e36f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2af4397c-c356-4ccb-88fe-23f823f51278 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d43ab203-6d9b-4bc7-851a-b911b750ea0e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,bd53abac-1ca6-4735-8d74-2f5f14ef2745 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ffe275cd-ee81-4999-8677-9cd16c11ab75 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4331b7cd-3063-4956-bdf5-95b23b8b10e3 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,30659b24-8780-4958-b7ad-39eb53b84c6e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ab9b811a-3504-4255-96b5-cd7c84c3ca85 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ef99cf8c-4866-4c7c-aec5-ce04734ae732 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,25cab412-6d63-4621-85bd-a1938ca7138d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1a9a4a19-ba6c-4f4a-ae01-fa6c3bae9efd -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3893a354-c18b-40de-9d0f-5a7d04bbe04d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,60a75bde-85e2-448d-a461-4b097ceaf099 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,969e2834-971c-489b-af80-d72a38e9753d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1e1ad558-bec7-4391-8451-817790601ecb -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c68738dc-6886-4046-abb1-f70ac341c4b9 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,69447e65-41c7-4472-89f2-c28ce6014446 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ddf6c508-975c-4f53-9998-5d05f0493401 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,fe01e014-7948-4eb8-bf79-609f8b70cf30 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c48c800c-6f6a-466b-be73-31dceaf6523f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,64a9d284-815c-4000-a296-bb2d11905a46 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,79b78e2d-585d-4fe0-b0f7-66b636570230 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,6d982878-ad38-4035-af36-45968b375cbe -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,0c6e10e6-0366-4d47-96ba-351fdeb7737d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,996fe593-077f-46fa-adec-2be53a870691 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f25ba670-c4d1-468f-9f09-aacdd5b780d9 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,581f11a3-51a4-402a-a6fc-8ba91cda65d7 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d2f8b7b6-1c86-4c37-977e-28f8009b495c -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2ad9bf79-83c0-4caf-8c93-6926fe7c64fd -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d017f966-cb93-4db1-aea7-9cc01438a303 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,59ab47a1-b601-4bd5-adb2-3d446e075f54 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1c786758-a086-4c4d-84be-dd5e78f5c611 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5659dd7f-c421-47a6-a8ec-82f6607f67a5 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,b29e9733-fc0d-455a-98a7-7482625f56cd -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2615cd76-06a9-401b-8bd8-071e300fb079 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c0cb1607-bce5-497d-b2ea-086ba73c3eb9 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f391f2e3-48bd-4931-91c9-bbb5a48aa5a7 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1756e18a-a819-4ad6-a698-92684a630456 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4443ef77-6270-4ade-8858-abdaa5356df8 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7b19363d-c8ac-441a-b304-52fcabc347bc -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,85a3ae23-0b8e-44aa-b27b-74a0854e024b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d6ef2317-7bb1-4446-96bb-2133fb30792b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,bda5789b-7f3a-462f-90c9-18d9ce67a0b3 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d43f694e-0b95-4688-97e2-1d3b4fcfdc71 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,36ad09a6-e79a-4960-9e73-aa57b441ac3e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,acd5d61e-167a-46cf-8f17-e5ce67aeb26d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,a54ad3a5-45b9-4fa8-8470-694443b45d11 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7a7b60a4-1885-4752-bd21-0bbfbb558685 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8147f54d-d136-4f71-b4a5-b598f37a9ba4 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4ee4d8f4-a672-4207-8219-06b6e9588bab -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ef181851-902a-4525-83b9-1331c93e6d1c -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,07b7d10f-a417-44f9-8892-864523d3b694 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f0ee5e0a-44a9-4a39-a6b2-8c5a01bda54b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,fa6dc84a-75fd-47ec-a095-6c8a4d74b42f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,9d62eadf-3d1a-4ea8-977c-8459e48c790a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,e1d03e59-05ec-4d59-9360-0b242333eeab -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7d293375-3ef0-418a-835b-90904b1913ab -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,4f8711e7-4723-43d2-8c55-8bbc487edb72 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9f5a3af4-ca92-40ab-979e-d4e3501c3c06 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,28169ebd-8212-49b0-a12c-8726ef0c85cd -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,22d1b9fa-9d2e-4116-98d7-ba0801fa4814 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8c015280-0e0e-4f70-a027-6693add72ee6 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,cf4a7966-9e50-4e24-b5b8-5f4b5741c86a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,7ac24fa3-7800-48e7-aa02-03de2e44eb42 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,448b7f18-cb62-4a6d-9260-694d46df8136 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,e469151a-a2cd-4c03-b09e-67531e984dec -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3c19e667-d0e2-41d5-be57-f4c75ffc3878 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,2f6acff5-91fc-462e-a2c1-271b70b25e90 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,d2f0475b-431c-4252-8020-b75e36d4e473 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,7a2c3e41-bae8-498d-8b67-b7f1a0737485 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f2df2d8-33b6-4640-88ab-8126396fc9c0 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,6653295d-3579-4564-ba46-2fd3aaecb91e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,48329ea6-fff0-421f-9433-e5e628934c66 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,7d2b1b15-80e9-48ba-8173-d84409bf7c98 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,dd5a7ae9-e36d-45e9-a4b1-60da0f4fbc26 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f3854a4e-4ee9-4f6a-bdeb-ddd1dc3625dc -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,b0f5e23b-7e8a-4152-8ba0-ab124c1cb55b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,b1658aa5-62ca-47ba-8aea-e1e1d674028f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,b3d94ca2-c3c2-40c8-95b7-f2a0e95efb1d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,537bd68c-7d75-4239-bcf2-251b7b38f768 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,720ca301-ed53-427e-8b88-2c9ec01aa0a1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,349806c9-4476-4378-9234-d727099865e1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9c141f48-d1e9-424a-81c2-911eab7e6f86 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,18e3f300-47e0-4091-b590-3992b368294f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,7c925ffe-c28d-4961-a766-f1677d3c79c1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,e6012052-0662-4603-87ff-35a9038362e7 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f8da379f-6f7a-41b5-97eb-d914f8c0ee07 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3396414b-0b15-4e59-b925-e1adfc03b122 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,aaee7415-1bc1-4ec8-b9f8-78d5fb252a63 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,37b46ab7-e31f-48ec-8843-9131e139d55f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,39409e30-91c3-4037-83ee-898f5494d2e9 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,1d683849-cfb9-401e-b897-93daa138f689 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,64e03cac-234d-4808-8519-7f85f2df4bf8 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,fd4f3180-de38-483b-9103-714fed6a7b52 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,e9b096bb-655e-4dee-9e31-4b1f806288ee -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f9862849-3d62-40e7-9dcd-25da748f79de -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,4cde3148-c5ef-46c3-9450-33ee4c6db57d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,6c4343fa-fc44-4c2a-b847-e43f90a99f24 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,c2fb611a-d91b-4144-85d3-9528dd320acd -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,932a483c-8180-475a-acf9-3f786ae54bda -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,2eeaf2c8-fb41-4f45-8783-4f0284b30e91 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,ef9b1efb-ac44-4800-b688-e4326b2cd061 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f9a651e2-efbe-40ac-b21d-2c1be6ab0ddc -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,096b5cad-b705-4514-9ce1-1b73fe30084c -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,53d16003-b407-4778-9752-1323b44aef37 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,20767467-7e1c-4296-8ed5-8072fbe6db72 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,ba024298-5e0d-4907-982f-679675e67986 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,010de659-a54a-4b9a-a753-51be1d437ee2 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9f819f81-0ea8-4e74-939c-0333385d0514 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,4a7ed304-886d-4db7-9aa3-4682efa635de -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,93e3889a-ac18-46ca-ad80-9ef87f9506b5 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,24df22e1-f62b-411b-8796-d86e67ad9a91 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,596daf4d-20f0-4737-acaf-976e3d270c0e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7491a3b6-b17f-4534-904c-b5b872f5f162 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,06c05bce-7ebb-4adc-9746-b9373ff5b3b9 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e2f1e748-8593-461a-99f6-3e48ba6ff689 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,72de90a1-46fa-4498-890b-6fc7aee079e0 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,830119c9-a00f-4aba-ae2f-46e94d8b9994 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,cda774f0-9338-4392-8dc1-e97319ae60e8 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ac6bec7d-e2b7-40d0-bcc1-c837747c430c -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,29a163e5-3cdf-4f42-938e-d8c47162f445 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6ddf6d06-ea89-4ecb-b585-d98c15b85a13 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8d047960-4eb4-4b72-aac4-5bfd54f91c2d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ff830ee2-ba05-454f-94a0-4b78a74b6758 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8e649577-e0ce-4df3-842f-21d59654568a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d64083b5-670a-4f0e-91a6-106257065902 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5d62a4d1-0841-4ed8-b761-3851f4fdb683 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1c101ca7-ef86-4bea-a228-f5e1209fb5fd -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,de580d98-46e3-4be1-b35a-d8f5f9d2b911 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,252da0ee-6ed7-4ba3-9e3c-afe4172d7890 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6278d93e-c46a-4acd-9e46-5a752a34b7b2 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e1a4043f-8d26-47e5-93fd-50bd80d4cc18 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,dd26c89a-6372-4556-9306-0ec0e02911f6 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,72ee1918-46a0-4f84-8901-222cd08bced0 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,19ea75ad-5ca5-467c-9da2-13d3dce5126b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1674b2a2-650f-4f67-999b-e843ad53b3a8 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b1d8114d-1662-445b-8432-a0fd181e3621 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6c9e225e-e403-4d04-b275-9d908a8fbda8 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,58498e8c-8666-4ad3-8abc-4708173d4311 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,a86eea2c-df43-498d-a2a8-41b036dd2c9e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,885760a0-a993-46a0-b9a8-5116540785a1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ea1c62d0-5a97-448e-b12b-6f203947a8b1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,0474d438-4b62-4c58-b108-bad42200ff72 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ea7ed360-3b9b-4944-987c-795a4fec5318 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,bb746437-b77b-4d73-8a71-d690ba390c44 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1a207f9a-902e-4402-86d8-be308da2e27f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1a5c60c2-97d5-4912-b0bc-26efc922bfba -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7d9908d6-02e6-4213-8a68-fa1f052c6b06 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d4c99e3f-6c7f-4d5f-9c48-96bbf4ce870f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6e19e51f-a3c4-4e08-9696-fac036d7cebf -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,acaeaff9-eb84-47ec-bc7c-4a76d01c9df1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,4fe2dc4a-b110-4217-a2b8-503cc7486073 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5c548c9e-3a05-4ec6-86cc-d2f15c68ae62 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,110e9bbc-a7a6-4d3f-a257-d5d0093d94e2 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3128bb11-906e-4c64-ad80-aab2419a64a6 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1d4a535c-2a58-4681-b046-6b5d3f03d551 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,93628767-e0e3-42b0-a105-3298ed6732e5 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,0bc0df37-6227-4d12-971d-2fddd282fe28 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,44867ca1-dca8-45b8-9611-fe85b7fa9d85 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,749b1bd7-aa9b-4b51-b570-eb1168e51c24 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2c156660-0d8a-4086-a1fe-b0bf46798a73 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1318ed0d-a4e6-4b47-b378-a0c92cebe96a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,4a18cee3-4a79-483a-b7da-50bbf6030c47 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e9f39377-1d58-43b0-8227-31ce85f45d81 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d9285952-21b9-4cc1-b16d-25a873bb2e57 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,759c5edb-fec6-4160-a808-c0693dc03093 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,77b75985-fb5b-419b-84c0-177d70352098 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6402a56b-509b-47b5-a1f7-9da66847a9df -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,328706ec-7979-49b3-bef0-a9de97a2492b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7babfa9c-585b-4840-a4f6-50d1f12ddeeb -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1b7d78ef-4ece-4487-a6ae-b6d0841c485d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6e0c0cf2-8c1c-4087-8023-d9892bd50160 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,39052999-61d1-4dd3-b2a8-f115278355ad -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,40af4062-5f80-4f8c-ade0-ef5576852555 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,caa895a1-190e-4580-91fb-de322c0e64c8 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1771a917-bf0f-4c44-8923-d78cc97a477d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,48e234b7-3a7c-45af-ad54-0ec34b85116b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,86edfd3f-dad2-4719-b49e-1c6938074fa3 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,0e914996-b05e-4669-887b-770af9d8f976 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,441102df-1901-4d96-9a4f-584abd355a19 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,fd852eed-49b4-428b-901b-451a8a2b5915 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,774cad69-c60d-46d7-9f7d-804b8fd0ac6d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f4f19bf4-b561-44e6-a027-b96d032aad03 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b1f3e497-7da1-482c-8842-239ad89aa1b5 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,066021f2-52aa-4167-808e-7e8ea5249cea -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2b9bc097-8cb9-4751-9c85-cf92f226be17 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,97757df4-e400-4880-875d-dae2676daaa4 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7392f6dd-508a-4168-8290-a04544b70eb1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,58d08c65-1292-44c6-8ad0-a9864c883246 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,73f5f1fb-3afe-49a6-9462-09fed3ad9f7f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,26367ae4-6cb0-4036-a9e8-70cea5d553ed -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,92022e37-e31a-454b-a541-5f6efaecd961 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,32d68674-bedf-4e4b-80b1-6b4e963c6d89 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,9928165b-bc96-45f1-bcf5-8fdf0d2d96dd -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,664fb8eb-31cb-46b1-bdec-779740dd6995 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7261bd74-4d3c-4625-8f8b-a2b9c43976f7 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,83e6ca6a-824d-47c1-ba9b-f6d63f42d755 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d00bc6be-a591-4987-8219-d1978d50d326 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,09b2a796-e53d-4328-a63f-e25d7f25da16 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1c3a1bb3-36e9-46ff-a616-c93a9f1bb5f1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,33351a44-cdae-4c9b-be08-d4aa5187d501 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,015f9abe-bee3-464e-86d2-0cf10985d8e1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,46a65c73-1952-4ffd-a781-570a0afe8d15 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,31e2bc41-abbf-4f27-9644-88469c49aa69 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,dbf85c35-2318-45b1-b565-6224daabc37e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,288e9240-6007-42a3-8f90-9ca993480a63 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,145f6bd1-25f0-43ee-a4af-b3ccec2f3841 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,eabff09c-182a-4760-8010-26f7cc1ad956 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,75217e40-fc11-4dee-b41a-ea1cfbab8c4a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,91ec6fcb-8ce9-42d0-8cbd-62e1baff7e6a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,fc755467-ea64-4265-be45-f7790eb0efaa -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8d01d56e-52d9-49bb-8cd2-cdda14900341 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5e64d69a-6989-45b3-b87f-5893d3957f43 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b49ed3ef-7168-4f66-82b6-17a8ca25fc44 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b3881757-b7a7-463f-a030-a819076b3a42 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,a0c21298-f88e-40b6-80b9-666f01bcdd98 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,cde1bbd5-ac05-419e-8836-28ddbe3bc7d4 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8f9a96a2-faa2-4e44-acf4-5f29b20b278f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c8e2b21f-1d8d-43bb-a677-be72ab3a7bc2 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5d8476d4-53b5-44c1-a230-809bd48bc409 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5832c459-6ff7-4c22-a35e-cd2b7c207de5 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,bc5d46f7-3016-451d-a3d3-c203032abcca -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f35ed955-5eba-48e2-85a1-4946d7dd66b5 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,fdf15c98-25e3-46c7-ba81-4485d1c2d528 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,972de304-c794-48f4-ae10-b41d67828a10 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,63d98812-2776-463c-9450-84a2f57cece0 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4cf4afbc-1e53-49ab-a0bc-ef266102c92a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,6344a0e5-956b-4607-883c-a5a6dad214a7 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,59343df2-58cf-4f97-9aae-831a196dca66 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,11a5be27-30d2-494a-9c20-33a65ca72a9a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9fb9550d-9cfd-4c69-8068-226f52df19e1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,ab5119d9-7f13-4a58-85fb-a59ca241f600 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a764a013-4f78-4996-95f4-8582b0a5c190 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,18cfa2fd-1045-4ce0-a98b-06d649cd0288 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e90fe010-6583-4587-9020-7cf07edc9c5f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ff1173b-d547-4f83-b2e7-d1757346a05f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e49e30bb-4145-4ccb-8d72-149fc51388ea -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,36e3d4cd-e135-40bf-bc36-c799e1d69575 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,40242f03-fa5d-434b-8a6a-ff9f7eea6450 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,16f255a1-2da3-4e75-a7a1-a0a2d60d6655 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c2bbc087-fec1-46ff-b485-9604b6a9b8b6 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4823d54d-cc16-4b06-80c8-97bb26230dc7 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e01991a1-f75c-4b32-8551-6d97f724e7c4 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,93c24cf0-e95d-4d29-bc9d-a5e97dc44ab6 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,813293e0-8f91-4a43-9f74-a28b378b5bdf -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,2f7167e7-7156-4129-995a-9ba8d44137f2 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0685d0d3-cde2-4b07-b6fe-3945c13a2d12 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a742046d-6d4b-463b-9df7-bcd6f0fb30fc -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9d8e9a28-8e47-4eec-947f-d976942029de -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,b65404b1-0497-484d-9673-c3b309667735 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,fc27e995-4420-47fb-ac12-8285600cd721 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4df94b7d-5e0c-45ef-859d-49bb41b504dc -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,65e288b3-02d3-4da7-9d67-0def6cdfa591 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,62fc6304-97b2-4ec3-9e03-458fc7430d37 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a31f3d69-43df-4399-a1f4-539f4dcad004 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9b72bb3c-43c0-4ef1-8e99-5edc7895831d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a55ba5e3-2ab9-462a-8de3-40feae3d74c1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3a1553be-97fa-41f0-ac90-d11ce242fb70 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f9490f51-eae1-421d-bfde-33601776509f -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c6c5f498-9bec-499a-a248-2558ab3c3789 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e1172add-34e8-4ff1-b00a-30b6c39f66c2 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,83d1f4b3-c815-4a73-b408-12bd0bd900e1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e7ff3fa5-158e-4a45-8102-9ca0053a738d -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,18f9dc66-c8ad-4b60-a8dd-c1c17bd400a7 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,88afba50-6045-4652-bd31-b5490a7497cd -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,d7ac68df-9a55-44d9-bfb3-9699a693562b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,d70a44f9-4ff7-46fc-bce6-993533f68eb6 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,994d051c-347a-4346-b448-daafcac33b14 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5db8ffe7-1bd8-49d3-9054-5b14de360601 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,03fc0110-bd72-4596-a46b-e7f74e86b871 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5ca2c439-b9a9-401d-bac9-abb73f599a69 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,614f2dc1-8360-4cde-80b3-65c5a2c374b6 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c3212069-894a-4b71-93a5-4c26b310404e -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f52405c5-2273-4cf5-ac8e-94a0f76c0473 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,add5a4f9-cff5-4135-9e13-71c69de963e6 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5802632c-363e-47db-a141-b5f6d47620b1 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0afb32ad-1ff8-4684-8e7f-5ec91314c301 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a29fa1a7-2b51-4ff9-bf2c-af29f58d3ba9 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a80d2bcd-eedd-4707-b694-405b8c375d15 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f6ad80bc-a657-4416-a6fb-5295ea70a4d3 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7e6c6f83-7a92-4fb7-a204-15de56fc0f3c -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,928a888a-243c-4d92-9f37-e1f3b4846534 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,469b6aa1-5877-4a34-9bd3-c2385a5fa8ec -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,188a1ec3-c909-4e9b-8def-d0c80bc2f38c -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,25bd0f3f-1423-41bb-820b-77fafd79c226 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a6c2275c-093e-412b-8cd6-625350cacd76 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a309af8b-9499-47b8-ab30-7f99773f93da -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,246a3e74-55bb-496f-a470-8455f2517109 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5d2e3b0b-5b8b-4b8f-9cef-e1abeeea9218 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,2e6c0800-c16c-46c9-8e84-eab6de752e54 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,dc7d90c0-d850-4bb8-a795-e1b7bcbe1506 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7080b13d-1840-4a1c-948d-0bd6cd4695fb -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,21a61e82-91dc-47a4-8229-a730007af16a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,98b2c88a-7347-45b1-b3e5-c361e679a79b -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9d94a45b-620f-4d70-99c4-e3a698118583 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9301420f-57fe-472e-b7f4-ff06bff75fbc -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a99a540a-f9fb-4730-aed9-51c9d3fd2242 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,ebf0ec83-a9fa-43bc-bbdd-5b2455c85762 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f3350b38-2f38-4f59-80ba-6224f086002a -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0d372226-66f1-4924-b4ee-b5c6fdfbc016 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,b920a877-af8d-4b5f-9fce-54d2400b8483 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c90e0ad8-cbeb-4c16-a9b1-9ec68bd45ca9 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,54af0c11-a352-4285-b6ff-0770df3ebf51 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,933b7812-36e2-4e5b-9e59-063c88d153cc -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,15247dd3-cd82-4f52-b44b-ee12c6444fe7 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,973779da-5a03-458e-b306-93c9a79fd37c -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0b0f7838-0348-4a56-946e-1bb5644db5c8 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,1fa713e4-d087-4cad-9bfe-b3e5dc28ae42 -CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7a486222-4499-4420-bce0-a9febb14a271 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,19b1e5a2-2e35-4d30-a07a-67afbe706781 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ed4ac465-638b-497d-aef5-2c240000832f -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,950684ee-92fc-4fdf-ad2b-eea6efd1e7f9 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c7fe2bf5-c591-45d2-87bc-97e3bda22e77 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,e84b9d0f-1be8-456c-b156-f6dcfdb4082f -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3111ff48-34f4-46c6-857d-bdd118ba61d6 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a603a070-99a8-4851-8369-ad44a84f74e2 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,efc95db6-a6c4-436a-9b27-1413e6b2854f -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8639eaba-b05e-4fe3-82c1-238d24568b23 -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ae788f6a-79fe-4d4a-80b5-4940f1f9b96e -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,1fa58ca7-d56b-420c-8763-250df35fa41d -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f5f6ef1c-32e4-4024-8d10-21989a05054e -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,7c392ec2-aad3-4b58-9ba0-5383df5ff827 -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2104226d-36ef-4abb-adfc-b29c08c2b923 -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fe7fc5d3-a1f1-4fb2-8d66-0b517e46f2f9 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,553f28da-499d-454e-8940-1bf70fcf7ab6 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,87493f66-3690-4a96-a63a-d400c11beff8 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,0c9c5612-025c-4260-9d07-ae58f4caf8a2 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,af89e882-bc2f-4eab-ba28-347485ddd5bb -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,9a65eb69-3166-4b6e-a57e-7303212783f6 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3c0684c5-c561-4cd4-8226-d1d5247c0286 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,93943228-4197-4ee5-9b34-5b8546c86a17 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fb5b1f76-e627-40a0-abbb-c8254a9c2a4e -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,5268ce46-4b0d-4021-891e-518bb296ce48 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d5c6c572-6719-43de-a18f-8dc612f118cd -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,e3b0a95e-8e16-4655-a4b1-54bee31b82e7 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ff058cc8-f361-403b-8b1a-f61d0a0ddc51 -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,771a04c9-c4c9-40aa-ab43-bbe97163aafd -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,bd04b4b9-cd9e-47a2-b6b9-a217e6a78a3c -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,04d6b047-6de2-4434-a044-d09a0c857cad -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a418ca6b-80b0-479e-96be-bb24fa0a9a0b -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a82866f4-7265-4984-8bed-6d84d68c3d4f -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,170178fb-2bde-45df-ab95-a4e0d0806688 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,e0db5ced-d6ed-4a4a-a381-c60dd5c81187 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,301c0828-c66e-4f8e-991c-defcbc701279 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ff2326a0-afa3-40a7-8202-d4307e76a3cd -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2f2e5e07-88a7-496a-a650-f33541b20446 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,b1841125-b360-4bfe-b5d5-f7a353c020f4 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2a9c5cc7-be0c-458e-b1d1-f317e2f7ab39 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8f26a8bf-6169-4067-b382-15123f18114b -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,42e28fa5-d9b9-4984-8f38-b8775f03488b -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,51314877-23ae-4fb8-ac40-d7d18ca70c8e -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,37cd10b0-87b5-4b25-bce9-e0fc4d6ab7a9 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2dbeac22-cc24-444f-8b13-6a75c998e5ec -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c00fc53c-7285-43da-ad6b-faa5e76e0a25 -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c5693cc3-606a-4551-812f-6d7a040cc5b9 -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2e804c78-d310-4566-a5d0-ec4817642a4c -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,46cb4873-4285-4ace-b8b8-bd4e814f4073 -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d5eeb13b-760d-4e88-a794-b56b53abc560 -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,95f3c2d6-45b3-4b9a-a3e0-4280be1b0cd9 -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,399e253c-d3e2-499e-a492-1cd813923d00 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,80ce455d-28b5-4354-9429-9d9231732a41 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3f40246e-cf91-4f8f-b36b-cd3959b0eb8a -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,296112e2-b164-43e4-bd32-18c2eb0dac31 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,45faac2f-2cbe-480d-a2bd-aa1e620a2195 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c741d507-1c2f-4282-9d58-0b66b0078e16 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,9ec4cd66-be07-4fa0-a7b5-f49ec440bbf8 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,bec643a5-46dd-4b44-a687-cb2bf6c56b3d -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,e0782840-b2bb-410e-804b-fb026ec0bf97 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,af3409bd-5f5c-4639-b9b1-a3eda9bd55c5 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2e20104f-9c3b-4260-b8b7-f34c93e90d7d -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,caa4b323-3237-4e43-bce4-24c491ec4ef1 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,593b7d5b-5755-46c4-b0bb-b89665bef3c8 -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,192c5e6e-46f0-455a-b442-eeedddc4ab87 -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,805acba6-8ca5-4ecf-a2ab-fe4e90dfc4ae -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,9ac3e6bc-b0b1-4ecb-963b-ad5f25a4452a -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,4a76a261-698f-430d-9405-572230da3c90 -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a8a582af-958e-470e-a2da-1c86024123bb -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,e376db45-256d-4283-adc6-9a290526eb2e -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3d0845b4-be5e-4c1a-85a2-f36bdbbc335a -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,cd843eb8-a9d5-48ab-84f1-1c236bbf2f5e -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3fb386ff-3bb0-4607-a425-6e0f7ef7e170 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,0862ed93-6ac2-4657-aab4-8a34493d1eb3 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c777c184-2b39-4a7a-8de9-73deb6d306b7 -CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,34d3e7ef-2311-4ceb-bd7c-5946a5118bc9 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,cb05be2e-80eb-4e0c-947c-7424aefb17d8 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,71dcc4c5-af4b-4fcc-ba4d-b3d2e288bc60 -CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fc715ab8-f5a2-471d-b950-9bf3f207c9a7 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,054f566f-f92d-4040-b13c-d8489111a3fd -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2483aa39-bf2c-4f47-8b89-6eef53935ed9 -CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c18f15e6-dcd6-4e0e-9f39-5d14466cd90d -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,6ff40b52-3faf-4601-bc84-2fc349b99fb7 -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,50577f90-9cbe-4877-8cc4-8241f4d63a08 -CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3922ae6d-f8f5-4cfa-a62a-82ed95d44fc6 -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,55a736c0-3d5b-42ea-ae0d-5ae2b3d7ec86 -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f6794b30-88cb-4386-a530-432e28b04f1e -CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,06732a9b-8e2a-4fb6-b601-004b6d6982bd -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,32db62f4-647a-4f6e-bd1c-a8dba4cf236a -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f83120e2-8a0f-49d6-8284-a97df61eb435 -CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,6ac4902e-20d9-4d57-a3e6-48aa1a473635 -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,4ca77d5b-a0a0-48f3-a091-54a32a9c10ad -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,5a261328-f783-4c50-8652-dfdbb1541e8c -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,353f9782-1e4a-416e-b4bf-b5de10ef26bd -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9ed8701a-d710-4431-940e-52f653dbe0aa -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,f3909c8b-ca82-447a-91f8-d0e592ec4b78 -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,21a5a01b-01a9-486f-a43f-75b5e4dbcd68 -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,21e8ad69-aa07-4c65-b43f-f4cfd552ce71 -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,3f51a66b-02e3-44a2-afe5-bbaab4246f79 -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,4b4995bb-c818-47b5-8881-fd450da166c7 -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,abda7acf-506b-4435-8fb5-6e254c32b158 -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,55e1cff4-e1be-4e3f-a906-2150c14c356c -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,61f78b12-19e6-4558-9b34-6cc833645d1e -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,43b61416-9fdd-49d7-a22f-b7c9a6a27bed -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,ceee4a6b-ffa2-432a-9f77-593ddbc8238d -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,495f6cb5-288f-41bf-ae26-4f288a5135a1 -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,bd518661-d112-4845-8a5e-c48ed89cb922 -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9b4b482d-94b9-4850-90f8-8c71c421c05c -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,20c28ae6-6736-4a93-a859-c39c61280eec -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,dfdde3b0-0f4f-4d5e-aa77-1f1604dd3ef9 -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,8aa9aff1-2ee4-42e3-8112-9f752670be0f -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,a083dad6-6f2b-4a5c-bc40-8cc88384425d -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,77229491-8853-4fb8-b659-dc1c191e70b4 -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,854bda5f-a21f-4a83-b5b3-c58aa93e9785 -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,8e884db5-361a-4645-ac44-59f03bf074c0 -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,45f519d5-4431-4d7f-927e-35407b211f95 -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,f8686058-7a29-4f99-accb-ad0914f464a4 -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,939f5f36-7c3c-4101-bd88-56203f1f7c70 -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,c35ef5de-0a4a-41d4-9f88-a87717e27b5b -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,3054f077-d1ff-4bbc-bcd4-3278f905d708 -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,f3d7019e-ec8b-4027-82ad-82a28a85f6f7 -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,8b064516-bc8d-4a40-9241-e2022c5002a1 -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,eb2e155e-0d3c-4b70-b577-f9df7b726399 -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,6aceedbe-4f53-404e-9bb6-59693b57ec1e -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,1c60429f-51df-4842-b7b0-6df679eda773 -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,e03cbc2d-65df-4038-a12f-d9f01e8bae2a -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,ca609c83-f79e-4a51-b2ba-a867b1e3fe5f -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,80a31818-ac21-4ab5-879f-fc6bac8ad13d -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,f6b2c22b-c231-4410-88df-51e91ea459d9 -CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,4b732894-00c3-427e-b3a3-4b0d114b85cb -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,ee10e070-d2e4-4771-bdec-a081fad45d4a -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,3f930fd5-ea07-4ba1-a104-0f90885502e1 -CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,eb253b0d-eb01-4733-b1c4-d6c7abe5935c -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9da841e2-2840-4dc0-b1ed-0affe959ff17 -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,3d1019ec-f5ff-4360-80cd-ddab65472eb3 -CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,312162e9-e71a-4b1c-94c5-e90425c56f7b -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,978bb37b-d7c5-41a4-ac43-4aed80cf1b7c -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,97a9d828-2d46-480c-9cee-f87e72ac71ed -CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,61c2ee7c-716b-4ab9-aa5a-8132061276be -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,6ac9ed7c-3d8b-4c03-bfbc-5103de7a580f -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,cd4462e9-1c64-4f29-858b-165a2e1bc8e2 -CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,47964195-feb8-4158-a3c4-16867a41e372 -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,74c3d062-ff08-4074-af88-d86763258bca -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,3e25c539-7e80-4ba9-8a17-fb50d601ef16 -CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,34a0f730-3ab2-46d4-8414-481ebdbd6f12 -CO2,Mexico,kg/TJ,,I.1.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,c5878616-cc4e-4bae-b9d2-392ca511a5b8 -CO2,Mexico,kg/TJ,,I.1.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,02009790-328e-44f7-99ce-7aad1501ad19 -CO2,Mexico,kg/TJ,,I.1.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,1e11d78e-3410-4aa7-90b5-f50034160c68 -CO2,Mexico,kg/TJ,,I.2.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,35a1159f-abd5-4f11-97ec-7d3722fe0de8 -CO2,Mexico,kg/TJ,,I.2.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,eaaf79e2-1fd0-4f91-a65a-8b19174df400 -CO2,Mexico,kg/TJ,,I.2.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,209f3887-0439-4e97-b6f2-af61e823065e -CO2,Mexico,kg/TJ,,I.3.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,7791509c-d9ea-4ab8-842e-1c86b65a9236 -CO2,Mexico,kg/TJ,,I.3.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,025dd80d-b06c-44b9-830a-99c853f2b4ae -CO2,Mexico,kg/TJ,,I.3.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,663a2006-7ef1-4c05-8b41-d2d24289aed5 -CO2,Mexico,kg/TJ,,I.4.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,488d99be-db0e-4724-922f-73640b6c1885 -CO2,Mexico,kg/TJ,,I.4.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,80342ef8-8c84-4491-bf1b-2e9a0c69600d -CO2,Mexico,kg/TJ,,I.4.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,af9a5db5-95d4-450d-9e0d-d9337ca09aae -CO2,Mexico,kg/TJ,,I.5.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,98aade0b-fcd4-4a22-8144-4660ec360d5d -CO2,Mexico,kg/TJ,,I.5.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,7c3054c4-3434-4093-a1be-5b30aac70365 -CO2,Mexico,kg/TJ,,I.5.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,6531fb0f-55bd-4f17-b4a2-c3b916bf3115 -CO2,Mexico,kg/TJ,,I.6.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,42524eca-718b-451c-81ef-acc947d8dcb2 -CO2,Mexico,kg/TJ,,I.6.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,1b3f8b4f-4376-4fc3-9c03-8789f2460775 -CO2,Mexico,kg/TJ,,I.6.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,900d183e-eee6-4ddd-9f93-d5453d5c4978 -CO2,Mexico,kg/TJ,,I.1.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,d82d54a7-93c6-453c-93b8-0332192aa655 -CO2,Mexico,kg/TJ,,I.1.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,d871b968-9429-4c9e-8cbd-7ffc7b08ce29 -CO2,Mexico,kg/TJ,,I.1.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,369a61a9-aa7e-459a-8894-4d811824235d -CO2,Mexico,kg/TJ,,I.2.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,a89ab419-4efc-4882-8405-9356b326ecb4 -CO2,Mexico,kg/TJ,,I.2.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,feef9d20-128f-4896-9a1b-5cbe7e99e2f4 -CO2,Mexico,kg/TJ,,I.2.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,32a834e8-53d0-4772-ab6e-e043bd6a75a5 -CO2,Mexico,kg/TJ,,I.3.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,ea366b47-4690-4452-b28b-a8f8d65e6b21 -CO2,Mexico,kg/TJ,,I.3.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,e3696c52-a455-4b47-ac47-0fdca30fcc14 -CO2,Mexico,kg/TJ,,I.3.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,26d21042-300c-4e32-8d93-92c0917d7aba -CO2,Mexico,kg/TJ,,I.4.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,d0bed7e9-2f5a-4dbd-b858-f4f8bfbd4b23 -CO2,Mexico,kg/TJ,,I.4.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,71f66902-806c-494a-8525-ff43b115bd39 -CO2,Mexico,kg/TJ,,I.4.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,010db586-5a4b-4fd0-82c0-0f4cfebdde21 -CO2,Mexico,kg/TJ,,I.5.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,66ceadac-6ca2-4791-816a-c685b4e38a52 -CO2,Mexico,kg/TJ,,I.5.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,bd95babf-bff7-4c2e-bc99-0ebee9fc0f1c -CO2,Mexico,kg/TJ,,I.5.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,74076026-d14f-4dda-828f-e129bf038067 -CO2,Mexico,kg/TJ,,I.6.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,3781a1d8-18ed-4bca-9ec4-9d92525669ea -CO2,Mexico,kg/TJ,,I.6.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,a485a3dc-fe33-48c9-8da5-47826b7a1ff9 -CO2,Mexico,kg/TJ,,I.6.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,d51ceb7e-e362-42f2-831a-87e4050ff368 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,20bc54f7-fd6b-421c-90c2-5c40d6fece37 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,fea33666-9927-437b-b9c7-3c9fd2113f76 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a22dd5cf-a545-4bc7-9774-14da34ebe75e -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,947ae7e4-1ff5-428a-af51-6ea5038251b0 -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,3c225057-d32e-4ab0-bb57-f96bf9123b4f -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,185137ef-046b-4a22-9ea1-534016db36d6 -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,fa282308-b3aa-4aa1-987f-efc791ee314d -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,781273bc-25e0-42b6-b518-aba8532a042d -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,3f0f10f1-dae3-4521-995c-5c30c2350479 -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,f4fbb867-42ae-45c7-bf00-9ba8faa12b53 -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ca501eb6-dbd0-4ec2-aaf8-2ba27f8a47ae -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a5d610af-9ca5-4875-9e30-5931edd77451 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,7bdabdfb-5222-4cbe-b964-376d48790ef3 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,94f8fac6-57ff-42d6-be00-fb8768dce8d0 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ef428f0e-2b9c-4fdb-b766-677c4b4fc34f -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,bf5033d5-7f2a-4576-bf87-389773832a75 -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,3c6ef9a3-261d-47b8-92fa-dbfb0c8ed0ce -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,bdcb2781-fd40-4dfd-b204-385744fe4968 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a9122ede-e9e0-4c02-ade8-81a81628bd25 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,2eff2fbd-30dc-4128-b7db-93dcb0b7b8a9 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,dfc42099-16dd-4db9-b0b6-172833e31d95 -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,f49cc7f4-4715-443e-b036-979c61c3fdf0 -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,43b67cd9-c4fb-448b-8fd1-16b8d084a228 -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,90747c46-00ce-4c99-9229-5fdeaec9fb2f -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,570ad537-fe69-4004-9a0c-ff6bf5752256 -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,14515cb0-df9e-4ffb-bcee-5fa5ddb484de -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,357e04b1-9986-47ac-8e1b-f32c8f911b8e -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,1e69a0bb-6db8-4868-beb6-2393322ce14a -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,90c4b8f6-8f15-4649-99f6-202abef0d3ce -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,91b64778-ca6b-4e86-876c-68fcd4be6a23 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a5086bd7-a759-4dea-a6b1-c95ab27d8e68 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ae05063a-8f5e-4fc0-ac03-4e34e6b112e8 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,417dac49-f2a7-4a51-afe0-4699bbb94227 -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,43de42f0-895e-497c-91dc-98d964586bab -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ed0bd8ad-6dd6-485b-98db-d5788a25c85e -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,614f0014-f3af-4390-9a42-a59f81e79521 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,1b45fdb9-90b6-4319-844f-cb5a251e2305 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,b9c7c184-74a2-45a4-b00b-b6b22f56e3e2 -CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,8708276f-851f-4db0-b050-27b8e4c5d885 -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,5164e5f7-06b0-4652-aad7-008bac93cd0f -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,d2b40718-d945-45b4-b410-fbe3edfe4097 -CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a5b2d8c2-04dd-4977-a067-3faf86987363 -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,80e1243f-0b3c-498e-bb5f-e59487d0ef3b -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ed1a2d4a-72e6-4be1-aa4e-0b99476d90b2 -CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,48ad0307-7d97-42eb-82ff-d79cbbbe3d92 -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,2b7c3890-7fdd-46c6-8989-225b76252d5b -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,fd9d8fa4-c412-4269-a2f2-fe010af71076 -CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,8414feb7-1afd-4f00-8d21-488540d07b93 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,2d31ba38-ec55-4fd6-81e0-69a0d50e93a1 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,31343dc5-56e9-4ca9-a94a-7b10f7f04aa4 -CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,b05d0cce-89ba-4606-b60d-8a5f1a72362c -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,38779cd6-2690-4745-af08-fde027189b44 -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,bff13348-2faa-4ba0-9530-9c598d124175 -CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ebd2c817-7416-4bf0-aa09-1b7184f106ec -CO2,Mexico,kg/TJ,,I.1.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,d634b8f4-2b2c-4524-bb19-84f207ac2d42 -CO2,Mexico,kg/TJ,,I.1.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,88e94493-e3ef-4283-9d33-5406f06af7b7 -CO2,Mexico,kg/TJ,,I.1.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,b0bb9043-0a7a-4f25-8848-ed2ca4e03ff7 -CO2,Mexico,kg/TJ,,I.2.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,5cef7217-a9b8-4268-934e-d5e0856f9c93 -CO2,Mexico,kg/TJ,,I.2.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,2677da60-ea3b-47c2-9059-97c1b016d71a -CO2,Mexico,kg/TJ,,I.2.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,13858948-4a9a-43f9-bcf9-c04247920490 -CO2,Mexico,kg/TJ,,I.3.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,591e7d55-4001-4b6e-8b68-413af1c87cba -CO2,Mexico,kg/TJ,,I.3.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,cb24949a-d877-4b95-b7f6-165cc40a3e44 -CO2,Mexico,kg/TJ,,I.3.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,a4885831-582c-46fa-b146-413e615467d1 -CO2,Mexico,kg/TJ,,I.4.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,1afb3e00-2497-4306-bdb4-b35744733b43 -CO2,Mexico,kg/TJ,,I.4.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,06a7840f-5c71-4c53-8c78-d83a4f4d94d3 -CO2,Mexico,kg/TJ,,I.4.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,9432e83b-4d22-4cf5-b89f-3f4e65635fd6 -CO2,Mexico,kg/TJ,,I.5.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,d99bb64f-38e1-4591-9f82-3e21d6a4db0b -CO2,Mexico,kg/TJ,,I.5.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,ea51c573-54eb-4388-b602-ac279da58ddb -CO2,Mexico,kg/TJ,,I.5.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,98b600a7-585d-46a2-8a2d-5ba96e764051 -CO2,Mexico,kg/TJ,,I.6.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,17d89030-8397-413e-9db7-32e1b8de69b9 -CO2,Mexico,kg/TJ,,I.6.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,0040eb6a-14de-4671-8fc5-a67c1f37580e -CO2,Mexico,kg/TJ,,I.6.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,8e1ed489-0161-4976-b64b-65ec4a97e2dd -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4f80fd35-57d8-4fbe-9d37-0acac11a9bd0 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,6d57b815-4b81-4d47-8a1f-bf7c547406b1 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,729ce022-a55f-4a50-af28-977ec36fb2ff -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e644c24a-f97b-4e98-8634-162021105c72 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,efb786ea-289b-472b-9fbf-55d889c6dd93 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,528c3c08-d3ce-43ec-bd8e-8ebd212f070c -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,443df079-49a3-4606-84c1-8bdb5554dcac -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5df4213a-ecf0-4aa9-a6f0-7ae866574ee0 -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ff000609-1ca6-4dca-a71e-9da38a8243e4 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,0b911cfd-0e02-4fe6-8962-b3861b8f8847 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,53ebdb0a-0b03-41db-9902-f02a7e76e7ad -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,efaeed04-2bc2-47f5-96c0-385296e2941e -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7f1b29f4-bcee-43f9-a79c-24e7f3f22f8e -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,27c69fea-fde6-41d3-bb39-1b6fd0c909bd -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,fb0ebb8d-3da5-4dce-aba4-36f7185042df -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c7fc34de-b42f-4f72-af4c-5570aedd6b04 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ac5677c2-7e94-4b91-8fc0-97e5b1118483 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,8c4a7108-db7e-4802-b0cf-baa3b8658f01 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,44f45a2f-9c89-4c38-a238-295c009104ec -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,779d5ca4-1c65-4b57-8021-fa26d94a2ac1 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f3152116-f0a1-488e-bc45-73a483432ab7 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,22fe646c-d84a-4fbe-85fd-0321c0131d8e -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3cfa1121-619f-4123-a8af-9d86afed3be4 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,1b94a954-f1a6-49f8-8cf9-4b0b6ba90d4b -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4d5bf215-7312-4b41-9721-6d0e31b3c19b -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,71747a74-2513-4d32-9ea4-2593b563217e -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,860473ca-bc74-4475-8ea0-e6a5211f6933 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,76ba2803-443f-4342-8fdb-96a45dd3f0ba -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,a3a6fb47-5c6c-4b86-9b7d-29a978059316 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7a8f76be-cd7c-44f7-9b02-d05c4022a50f -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,a524ddf3-5a34-4193-82d8-dc1923cda70c -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,536e2eb9-5780-4e69-9498-e44c18702cce -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,26861635-f327-4e5f-b9c2-c2211841bf6f -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,76e7c79b-3136-4dc3-a317-b5e26cd784d9 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,2783acc2-d4fe-4da6-8a6a-6b19e4e417d3 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,fd9c3f05-4661-45ea-a5d3-7a6c023702c3 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9e41a6d0-031c-4401-809c-c92ebcc74b51 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,a4d46829-cade-481e-b03d-23c350cfd2a3 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c88727a6-c6e7-4903-bec8-01e338db39d6 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c5f048bb-0a7d-40ea-9bfb-5e7b401a8ac5 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5c3d76dd-e67f-4157-81d9-a6e06f788b3f -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,17e4cbb9-f574-4e7f-9ea8-4ce98269063f -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,1fa24445-9cca-4879-a97a-8ee143b3f7a9 -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f5677b15-36f1-4a9d-aa17-f7d15518490d -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d9b50aad-6bd2-4365-b481-2e8481db38b8 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ae4dec1e-0889-4b19-80fa-510b70bd674d -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5f182075-1030-4b07-8e88-4127cafd6dfd -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4ee4c298-1871-4b4a-a554-8cd1ae0a1ea0 -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,07f36690-655a-42da-8f1f-b8faea4e1c4c -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,eb66d0e8-238b-42cc-a51e-6e6b8bef1f79 -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ba06b748-084a-47a0-ab62-66743e7b6a68 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,dfc0e422-e6b3-4d77-900a-5c59bbc8df1c -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,653f1c61-5b11-4d8e-aebf-d5265c712375 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f6f698aa-a9d6-49e6-94d0-7344e446c154 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,dab5f88e-ea99-4095-8e3f-71fc149caa64 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,eeac2928-6cbf-4dd1-b82d-fcd5903548cc -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9feb94c3-81b1-4ba6-a9aa-bb9187045477 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,fa0df964-605e-4305-958e-2e18d4d1e284 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,73f968d0-8bf5-4ece-9450-b822b0175450 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,128f5fbd-090a-4467-993e-5c3d0e204464 -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,808deb62-75bb-42e5-b04c-4b9e299a3a93 -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4c137fd7-b98d-4680-87fe-57bd8b32e9dd -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9983d83b-8eeb-4fb9-88a1-a94216de1228 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4150f69a-69cb-41ab-a53e-c157927789e6 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d06d5f88-a6f1-493b-aab4-f93797719e8c -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,a070063e-be11-4513-9af3-93244a4f7fe7 -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c8aabaaf-1539-4648-97df-257ec71c13be -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,bdf5d971-46fc-44f5-b220-365923b59167 -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,8853b951-ee28-4aa2-a8c1-8cbe12a16f98 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,66645b76-efa1-4f05-9c30-9e591674013f -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,1e1a73f2-eae2-4c67-a206-dd71dc3556f9 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,6f828cc1-d98f-4ac5-b81c-4ce3770a8dd9 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e543763c-6298-40ab-9ba5-b6a215e5a577 -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,aee83c90-8cc2-45a3-876d-0d0f41d5da0f -CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,23f15a1b-8a4b-44ba-bed3-1978b808fc09 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,2fe582d4-f5fd-4347-92fc-145016c8a5de -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,68c35459-a9ab-4c56-92da-4d596356d837 -CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,17157633-8692-47d5-ba76-be1a458dca61 -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,2c4b797c-4f6c-40c7-9a3a-1877a20ab93a -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,b17c70a4-64f3-4c07-a13f-f96b9f4889fa -CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,85c87ab3-d954-4eb7-baa3-ffbd7be12bc1 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,b0074b74-a02a-461c-8f52-56e918aed675 -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,03e76511-04ae-4a75-9a34-dd50b00ebc8c -CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f1b1132f-3da4-4e7e-8517-efb8afc5c5ed -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,a8735e72-a9ca-45b3-8349-5dbcaa2c97e1 -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,1fec5ece-6404-4fc8-ab2b-b04ea1678fd8 -CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5e90c4f3-2535-4bbb-8c9b-6045afe9a425 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,bbbeb331-70dd-4570-ba8b-9ec7df7c1d88 -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,db339b4a-f1b0-4c61-a5f9-290af7fe7aca -CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,6b7a1760-f355-4235-9ba4-ede30925a925 -CO2,Mexico,kg/TJ,,I.7.1,MX,58170.98,fuel_combustion_consumption,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,13903bbd-7e89-4bc1-99ac-41492c31f38e -CO2,Mexico,kg/TJ,,I.7.1,MX,58170.98,sampling_scaled_data,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,4a8762dc-7724-4237-92ea-d50d9928f877 -CO2,Mexico,kg/TJ,,I.7.1,MX,58170.98,modeled_data,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,fef38de1-f84a-4820-a01b-54b159a9b4c8 -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,490e3cbc-d980-41cc-88c2-1540d6349eb0 -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,acabf258-deb6-4820-aa49-b9a0a2db87bd -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,6e0d1676-810d-48e0-853d-be12ab70ebda -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,32d829ad-43a4-49e8-9a3c-80287946274e -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,554bbe39-14d0-4253-a500-2a5cdc2f3717 -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,26d770fa-2198-49c9-968f-291f5ba051b9 -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,79c6728c-ed8f-43c7-bbe8-c1eff3744659 -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,57f4c191-b3d4-4de5-ae88-565c785e08e8 -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,9f7ddc63-08b6-4654-bef4-0373a861db1e -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,bba84fa3-17a7-41e0-839a-732965c7dce4 -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,4a6ad64e-2930-4a37-899e-f36aa187b571 -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,e2278c96-a799-4e3a-8e7c-034edb94efa3 -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,df0ab44d-c174-4bd1-a0ac-a59a7f1d603b -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,c49d6c96-2cbd-4f4d-9fcc-8f0e63686119 -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,c8bff9cd-05ed-4516-bb40-e0fe67f678b2 -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,0de72209-7ed8-415e-814f-9b8e540661ae -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,dd5b9eef-64a3-4c9d-99fe-41728425ca4f -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,950f79e9-3b25-43e0-8fa4-19dc848a4ace -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,8c3b2d76-edb1-4e9f-a43c-8b3fae3c972a -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,e25ff6ee-ec8d-4603-bb83-f6912f03fff5 -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,303dc24d-5622-4732-a413-11c0b8c007d1 -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,1cd36e8a-68bc-49c2-8078-c95b74040ec8 -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,ab591e57-e702-42ba-a812-98b5fecc7d1f -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,3c14dea7-6c56-4b80-9472-510c9f5bf61d -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,32e8f249-20a3-4baa-aa61-7d0f4166c54a -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,98166a7f-1f4f-4337-8318-357b90f50f11 -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,f8ad43b8-4b68-442b-80d2-b74ab871b531 -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,b2a21b6a-adc0-480a-9625-c8cafc2ccf3e -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,8128d0e4-3811-4f2d-9203-b9412f2f2909 -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,702a30ef-72dd-4883-80de-9452d67f3998 -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,5c771e2a-5c51-4ec6-8d9b-db56d7739dca -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,59dc4565-eb82-4876-abf8-724fa071407e -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,8dcf5176-0ddc-4c2c-a05c-551f53075414 -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,47bbc8ee-324d-4dbf-9e1d-5e8ab3e2fd85 -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,78d72f99-ad1e-4535-8592-1d5e337e6c63 -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,0514d8eb-add5-4dc2-9ebf-ac4eb083f595 -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,b0d9aaa0-e4ac-4ea0-85e7-84e508e2e366 -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,6313b6dc-c566-4ed2-a9f5-1951771e8244 -CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,d7002b14-87bd-4051-aa7a-5da92ee73c9a -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,c7254bce-db58-4a41-a218-9956f8bdb365 -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,0608eed8-f4f6-4ed9-833e-4bf39c38f389 -CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,df411ae0-f588-4ff1-9ddf-933285f2ca5c -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,bfd249cd-4427-4f8b-b7b9-bc8b1fc67a99 -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,9fadf53a-9724-4f21-b8e6-7ba72890faca -CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,fccd2430-1e66-48a0-b2da-2a6ebdc3125c -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,f8a08231-f62b-4003-b468-0072636660b7 -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,084323e2-643c-42ba-b6ef-9fd94d7d19a7 -CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,3796cb22-6b5f-42e2-9e7f-6c958544ddb3 -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,c48b8eec-d40a-4fb3-80e2-9f33e30a41f5 -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a6adf1ce-0cd5-4bf7-9b3d-7ae973ddff11 -CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,fcb8051d-dec7-4f3b-852a-8b9a70d0c5e9 -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,c4a7f576-9178-4dc0-8601-b9b9431fe952 -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,bd330fab-434a-4ff4-9696-2625b0a871ce -CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,e648b4b6-b9ed-4ac5-8267-2a411e5376a0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,7339943a-6c85-40ee-a038-79bc7287dc57 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,faf91edb-8092-4e43-8de8-b5aa19eddb5e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,b724d925-4505-4847-86fb-805be053711e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f0576ac7-5ee4-445b-b9ea-ac42a83ebc96 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,dd777ff4-28d0-4575-ae27-ebdd0f8189c1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,93c05fa8-8031-4b75-9e99-cf5604ee8f3e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,c7d11b80-9165-4a21-a0b3-e50050c9ac1a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6c5fb87a-3115-4e13-83f1-32f15274694e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,ee2e7144-5d29-4402-9b4b-0a6aa17da55c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,b25d5abe-2786-427f-9061-b998110fd11c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,a2e0c4e5-6e60-4b1d-87f8-1bb4e0de02bd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,2712ebca-d4b7-44da-a3e0-04c2bc774089 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6f3954e6-7ddc-4713-a1eb-8d90daa10ff1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,61d03751-574a-4e45-95e6-aac4cb1baa59 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6ca95c6a-ec94-46e6-b28b-4d31b8f9d6c9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3fc6a0c8-0a69-4c2e-b25c-3cac28867a25 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,922e2466-fd36-481f-9c4f-fbb2b03e0511 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,095a98ab-bb82-4cef-afc3-9765c56ea447 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f5a0a636-4c31-4930-80a5-143bca23bc3a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,272a5375-f5bf-4a67-a251-752562873419 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,139e3832-ec09-451f-bfd0-b85639218f45 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,6b0431f3-7f7a-463f-99b3-b837e7673820 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,9707ebcc-6540-48e4-a313-af7814373fec -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,4a8978bb-275b-44b3-8181-b249a819d404 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,c9986020-0a3d-41e1-9cb8-b4f66facfd3f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,43da80f8-6585-464b-815d-5437ffc7d20a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,2689bb9c-0772-48ba-8066-c2a22181bb38 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,ffb61e48-72c4-434b-bc36-e8cb139eca50 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,9894d4b2-a60f-40d1-9e06-3cc243e40c9a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,e4df3f47-07d6-4306-97de-cd9c62cf14d7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,2e8484ac-7323-49a3-81f9-839b980182a5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,d58bfaf5-f71d-42ef-9cea-a6f830d50362 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,dceaf15e-fb71-4ce8-b3a2-7654d53ac538 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,2d03ecb1-9c3a-4e58-9351-978421684d89 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3415a06a-ef6e-439d-bbee-7bd6e8e65f15 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,68ca4928-ea1a-442f-b0d4-6edae4ba82a9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,6d0bd8b5-434f-4a45-aa74-e69e7f83058d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,80f41782-7352-4866-901f-617b7263fa99 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,ba4345f1-a1dc-4097-a573-7c3fe02c18ed -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,82c74b92-d290-41a6-b1eb-05fedad0d4bf -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,6e27589c-5866-4db0-b60b-5ac47cc93c2b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,99dac883-f0fc-4821-8554-39692daaf37c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,93af0ad0-f8a4-41bf-8185-e8f8df683159 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,0820798f-ff29-4a81-8b37-c125b9f93143 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,bca22d39-a8c7-4fb0-b063-757bfa3dba0f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,557b22f8-b645-4e41-b657-adbdaeddb616 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,c31eee1b-954d-4745-afd1-6c0853c39788 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,243ef989-6f67-4bd9-805c-fabae43ff1f6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,4a569d14-2923-4b72-bc10-fef7462689e3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f2c68f08-f9a6-4ebb-ba1e-341f7656793c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,48e53ca5-705e-4df0-9e3a-7be340610673 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,c51bcc45-28e3-4d60-821a-881b830d1d1e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,c25181e7-aa18-458c-a39d-83f56e1e2142 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,b784e40c-0650-45c7-82a0-a0aa31c4a33a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f98c9ca6-9b0f-4553-a15a-91954cf9e6dd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,a79e0ac2-eadb-4d48-b710-75a735eb16f8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b9da3d66-641a-44f2-98aa-19bfdfdc16ed -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,4e7fe5b2-edc6-4c7a-9614-ffc52c00f26c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8d8ba513-797b-422a-af2b-3c7381fee439 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,869bb648-2b3a-47cf-abd4-ddaa3f767427 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b4a1057d-27f3-4247-a261-cdd74529939f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,cef92590-4f21-4076-8dbd-0442e87dd806 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b8fdb176-974e-49c0-9db1-7c558e7a311f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,20cb0688-fce9-4a9f-a957-e5f4eef78e21 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f70d32d2-ca69-4876-bd10-9ea4893531e6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8d6371df-986f-4908-a5a3-ff451c5a3793 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,a85a99f6-620a-4498-ad47-e9c6d378f823 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,aed9cb9d-ead2-4037-9943-e945b6b704fc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,dec90bd1-2315-478d-a634-87610936fa87 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b92cb71c-1155-4e9d-8754-2bfdbd630d7d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,6bec794a-beb8-476b-b141-6e3fe5565800 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,6ad41585-7086-408c-88a4-24626a2e2364 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,0ea0a31e-0a2f-4f55-8012-b71c07ea9484 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,c6d64f13-8266-417d-9690-7e3c17c63154 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,952e53cc-8628-44e6-8d52-5499a9260010 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,c407b1fc-38e9-452f-b2f4-5e827f756e82 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,77f0b020-8976-47ad-8006-4865dcf0a6ec -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,af2500e1-d293-41da-aa25-1c0080e95d5f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,259f2b35-b8d0-48f8-8193-1ab3fa94a914 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,6eff5c39-8c97-4a12-a763-038a0d037f4d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,03a0e2f2-676f-455b-8977-68ebae39649c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,965331d2-51a2-4898-b942-7878478d8797 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,d2721b48-d971-400e-89af-97811a4b3cd1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f74c6f1b-9597-42a1-b378-03e554be6df2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,29874ef3-65e8-4040-9914-6aa305be0257 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8eec5797-18e8-4e90-b157-cb19a7987f92 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,420745b1-32a7-4beb-b4bc-ddedd5b359cd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,27535997-c5e7-4b8a-9c0f-abaf6ed55e25 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,97d6235f-5043-493a-aea0-e2ddbbc40ea1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.68666666666667,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,73c2248c-e334-4309-b92e-2dc72cc1390f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,a02004a3-3a12-42c6-ab47-14453b75ca53 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,78675790-834e-4748-a271-e5bce97ca295 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,b760e4c9-b148-4829-ab0a-2c6927575c4d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f1c79cb9-427c-4596-b400-d0366b8329d4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,1b97b42c-119a-474a-9178-c3c87e11beba -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,1ba61140-53f9-46bd-96ac-1cf90b617383 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,64bb74ed-a4cf-497f-a612-4cac7680381f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,748cbcca-7a65-4acf-8328-6f6c806d0f2e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,c23aeacc-700f-4ce0-b9f3-005b8f6bcbaa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,a14a7531-fe71-4a4b-bb07-b6effc0bbc8a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3426a511-4579-4aee-a3f4-7fc96600323a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,e8f89f41-1266-4ae6-bab9-f9ff170e0a72 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,46c3f0c4-1884-4e71-992b-9205d42d0fd2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6f61276b-d222-4f24-a33a-d117f40e3aaf -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,b9c51a1d-5780-4b95-8934-eb9587f559be -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,18c4e796-2e6e-4257-bcfb-bac4024783f1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,a922be82-d20e-4f06-81bf-3ace259b4f70 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,1a03f256-42da-4604-99d3-8e84eccad401 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,6043e123-2c47-4d2c-80bf-222566564e8b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3512ce45-9b0d-41cf-bc61-19d3b6befdc2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,37108ae4-7ba2-4292-b820-016eea3e4823 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,bb196a85-edcf-4c1b-a0db-f4ab236ed13f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,32fac5ce-de26-43c6-9390-a2ae1fe99b16 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f6a1063a-7aab-473c-a66c-9fc8ac2fd5ff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,4130b82b-d633-43a6-80e8-4ebe86db2427 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,a84c108e-f16c-4dfb-a66d-1f5ec9c274f7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,e3d389b6-0a0e-481c-a3c5-b686b40f84cb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,a08bbb51-f949-4ff6-a61a-c800c1495db3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,a8947452-4ad2-4c06-8fdd-67d3a3c36d1b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,9975119a-f598-44fa-adce-99b4947c4e7c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3e8e1e1b-d2cf-447c-ac4d-188f3865aca0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,231874f3-f713-4ce0-b2a2-bd9d73774d45 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,d752a08d-b198-4c09-9215-0b02021953c9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,ddf0167b-2043-47e6-b645-c93d9acf2c8f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,c5d4a4d3-09c2-4d12-911a-3ab17dc69d7c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,bc340361-1b14-4fbe-ac24-6402340640ac -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,562fa848-f506-47af-9f53-99149086054b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,7cb2575c-84a6-4d6c-ac9e-b8900de01689 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,5a4603fc-426b-40ea-a3a9-363685bfe452 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,e9367a40-1b9e-4879-8b04-776bd96a2f23 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,6a554246-f79c-47df-97d9-b98f7c8c3752 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8b2b821e-c607-4d7d-9ad4-f98ade8c131c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,cf9a0e87-207c-44f0-8100-5675bd187028 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,62dfd0f8-c2d5-4529-98fd-f24d8ccc5b4f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,4cc0917f-e04b-4b78-85a4-ea33d7194dcb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,ca1153d7-8d6f-48c0-b358-a6c5bf9ec8f6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,6b70211d-3a25-48d9-b459-12d115f3e8fa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,9e9641b7-e061-4f55-9867-c94b483d1040 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,6b99faed-ce6a-4117-898c-ed96bb24e72f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,ba1da50b-d7c2-4c61-8810-1b53d3cb94c7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,2c154b51-45fb-49dc-8cbb-c4fc6c804a40 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,eddd0680-105e-4c46-8923-78f9809b8561 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3cf85e0f-4709-438a-9112-a41c75c877e9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,80a4030d-50a9-4b82-900f-16c8cde200d8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,d05a80f8-f13e-4350-a916-4f773575ed4a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,caa3d701-171c-4e45-88e3-e2662c368537 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,cf1dd2fe-c769-41ae-bf3e-5a9e87f73d1d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3e63fb67-544e-43f4-9f22-d0470579617e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,4f28d5ea-98ba-43de-bde8-d532ba71df44 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,e7c95b9d-a57a-42ec-bcd7-875de5e7d2d7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,76be34e2-6359-4679-9358-558eb4140a3f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,cb1e7a32-16e2-4203-af15-f141b422b844 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,430759bd-6cac-4d5b-83df-b3382faf5bd1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b71a5501-2692-46c1-b89b-d26c0d248e3d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,d048fcb1-38f4-4667-ac03-a945ed4cf87c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f212b7be-443d-44df-aaac-b597abe958f8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b24255b1-87c1-45e9-9dd7-4bccd3e805c4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,87f5ca49-594b-4738-8ae3-27fbe3142099 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,92b65178-c9f4-413d-a010-ae3127d2b25e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,30f4e6c1-6304-465c-9e8e-be8268e50623 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,edaef023-d260-443f-9fdf-06f2ab940616 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,34095a76-503b-49ce-a7be-7e66457e00ff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,78d7320a-6a2b-4317-bdd2-4584ec8ec406 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f499a11d-ebb4-46d1-85e9-0e54d75e8730 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,6aa30790-1c78-4226-9356-c3c3c257ff70 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,b1bc148e-336d-46bc-9a4b-e8e0190a4fc1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f4354822-1cd2-4212-92ab-87ed2fd7209b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,ee200a80-bd60-48ff-ba04-67c0df961a1e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,563495a7-0208-4e1c-9b3a-0c94d9f65095 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,250c160c-c796-430e-8a74-0ed9fce493ed -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,89011ed3-7eed-4789-900c-96fd57d567af -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,4685d360-5dfa-418c-a6a7-a090059a5b3f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,9e8254af-39f2-4dd7-be2b-e10390d8ece3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,318e8a5b-aff1-4a80-be91-c8b535a36815 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,4f3eec78-88a3-4c3d-a1e9-14892f0464ce -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,93423b3c-8569-4afb-8ebd-3e99e9c39ccc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,dded9c37-788a-4786-8f8b-9830b476a48b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,57591437-59d5-4b9d-82f0-64c3026ae0eb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,35f074fb-7938-443d-ada6-37976021e2aa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,91.99666666666666,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,d68bacbd-2a18-4e93-b301-3e148f7a0044 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,b7fb05ce-2565-40fd-891c-65863592116d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,05eac17b-cb4f-4bbb-a6dd-bc8902335102 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,250197f8-a21d-4074-ab6e-8e93825cd748 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,cadfc4fe-9255-40c4-99ad-1ab1161e4c6d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a85b7019-b9a5-4a92-95e8-ac5f854fcf85 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8f6be1b1-8d32-4c50-a8eb-eaba713b832e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,e42e3658-1b4f-4018-b540-34f29d662f08 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,e0ec793f-5fd0-4865-9787-f504b774b1c5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ef47c7df-9370-4b73-8d1d-96e84daacc0b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ecb9ed8d-f98f-4cba-b911-56c98e1b0d52 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2218b9c1-1fae-40d3-bbb9-2ed1c983bdc4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,48c44156-61ee-4270-b153-1d6397200b6c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a46a17dc-d241-49f8-9288-5abbba971f3e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,57cdeb06-bff8-4769-9f40-cf59a4cbc14b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,1f249fea-1aaa-4801-9632-3bf8c81e1724 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,94b370d5-beaf-47b8-836a-80566e5dfce9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,9b35db6f-801c-4a08-9073-301985c4ea05 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,13d87779-b36f-46b5-8d47-b135fb16f009 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,a3b475e1-6bd4-4cdf-9853-f40e786061ec -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,5d7b13f7-290c-4238-b34a-a1b68096dcc0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,00116683-a2f6-4b98-95fd-b51e716307ab -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,c2ecf674-541e-43ba-8d28-a9bd30026c6f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,c4e900af-a0ab-47ed-aa70-80dc042607a9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,d117d599-6e54-4626-8dfd-3e4268030b47 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e57d27da-ffc2-4c8f-b72b-cf300d7ef8e9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,5c8f4f78-e650-4f61-8b02-7e90f351efd0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,fc2206d5-721b-49ee-8003-6fc8a941954e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e9197661-69d1-4d78-a403-5d4a3c45da0e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,78a0bc3e-1c4a-4b9e-911b-89b1c22ab64e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,6397e2e9-8d49-42d1-b3f8-546724e7d277 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e8dcc110-5cdd-4fd2-ae1e-3c6349fce214 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,86d4d2f3-d089-411a-bc7c-f13ac8c99c86 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8b4ce312-a2ec-4b40-89a7-dc4363c1280f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,968d9b15-dbd4-4d82-8bda-bdaa9470e9cc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,b11003da-351b-4cc3-b651-f7c42cdad9e9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,d67cfdaf-14b5-47c6-b1fb-41feff9f8fbd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,9786dc5e-edb3-40fa-8003-87806adf00f1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,b87ce3f6-e304-4457-be32-f63d478f0f79 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f7607d33-6fd2-462d-a1c5-82311b68b08f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,e3ac4b19-90d3-469f-92d9-33f0d7e3e098 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3a440d3f-af09-4431-b004-09029deeddec -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,aaa91817-c074-40ef-803e-6b3726b1c9a5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,1612ce02-4309-49d3-a801-c7a325a2e6d8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,58c7772f-6a39-4774-ac71-1bbb4732c508 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,99def8cd-2c81-4990-a94f-8719d80d2934 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,a9cac34c-a0d5-4174-af37-4d7e8b9a25a8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,2bbee8cb-5151-43ca-ab66-9059d99da2d4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,851db968-8c65-4412-afba-598300996c74 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,2805048f-e31f-4294-b922-dbd5870ab777 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,a2ae6cba-1b9d-4672-8d48-110b3f4d8096 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,30f3ae5c-b6e8-4101-81c4-fabb1f1e7739 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,eba7a0bd-75b0-4fe5-9b57-5d4394de151b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,29969148-b03a-4545-b276-c1c4aab2ffe1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,0824e5e0-dbe2-4569-ae16-151eeeb1137a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,bc2b4aee-c052-445c-98b4-d9a34f41124d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,13af1131-716e-479f-8794-32cd69d1a723 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,db71fcef-082f-4e99-a3a2-37f4fbc259b6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a4530032-1884-40fb-9c22-64d4c0bab9b2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,552b1ef2-f1fb-4bdc-8324-7b41ee4df991 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f24538e7-828f-477f-bdc0-98287a1304d8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,4e9ecb4b-236f-4d12-84f7-b57179441578 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,eacfce8a-dfa3-4bb8-8114-95221f6dc911 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,dd20f9d1-1df4-438e-bba9-9ad705625c70 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,83056db8-fd47-48e3-ab6a-bda8aadcfc43 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,809f4b99-6df7-41ac-9b0b-9f465ff0e6e3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,03e0edeb-4421-4c38-90f1-0771f3ac14cb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,4ef035b4-dc54-4a6a-8de3-0a497c9200aa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,7027fc61-ef99-4e25-9c6a-c26663b38e43 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,65d3fc75-0ec5-4557-ac36-67fb753e27ed -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f6ae48cd-5c11-49a6-8f4f-c47f63688891 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2ce2e276-088e-45f2-9a9c-86a6afb1d52e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a870927d-e657-4222-a12e-b70127b5b2f9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,057ae5b9-3b83-4871-9ace-82cf09f3c064 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,bb1d0833-957b-4048-86cc-915eb8844477 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,0f6a08a3-d1a8-4f0d-8090-9afbdef2c642 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,4fe89642-2244-46a5-9406-b14914acffef -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,72d59997-7251-4d78-9a19-e26cf33a0279 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b3a510e3-4718-483e-94b5-59be2212da44 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,300fb53c-ffaf-41d7-b4f5-dee150d3986d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,532c5c24-bc37-4c01-b521-8659afec5c5e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,89629517-2363-4f7b-96b3-1a65446934cb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,714969dd-acd9-49e9-a3e1-1328c48275a7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,0e5d7299-a951-4da3-975b-c2e8e3e834f3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,912c4a12-4b71-41a3-9f8a-055373eb4e03 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,bd4b2da9-c841-4b27-bd5f-4e056e94ee6a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,25ce1722-6c1e-4d98-b1cd-0a79d0d4cf2e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,1c5737c5-5e3f-4613-86e1-0fcff23cff6c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,b7b9a165-1187-48ee-a62d-179368ecf6d1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f159ced3-f01f-47f9-97cc-be6530d4a1b5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,c92eed5a-0962-4ad0-a446-e3a1a3e5b13a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,62553d80-316e-4f1e-a93d-42ad2e1257d3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,5602013e-2a11-4d14-a2b5-f9f89ed1b28f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,bb49da24-2fe2-4ea0-baca-d99f6ef9698c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,57092424-95a0-4ce7-bb26-a48d655042de -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8f830d8d-b679-428c-bd2c-0d4d425a877c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3d42d265-2624-4608-a729-7dddee742437 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,94f11367-32c0-4ed7-99da-003300c2e3b8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a463e43f-f2cf-4c47-b201-bae13177f9cd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,bf42487e-78b4-427c-b166-8815a5c06902 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2d68bfd8-84bb-4beb-8e68-6db9ed2a3dbf -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,df229220-1f7c-4592-9d3a-b5854f84d4b4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2511463f-3a50-4a51-906d-6ed6ce1fe988 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8bd635b7-c888-4074-9b95-db53f79b697c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,4a742458-36e6-42ec-9fb9-f7122ee48d22 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,edb6086d-94af-4ef2-8143-3e2a8659c195 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0715a6f8-f288-4623-bd27-7fd5c05f6a96 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ea3d55ee-0ff2-4f44-87f2-053c4e0d0eef -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,89.06333333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0e9e90f5-1f64-459a-847c-76da73563909 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6dc3ef03-2bf0-4658-a6cd-7c8d194da6d6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,d93e83df-6d8d-40e0-b56d-1bde8debedd3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,17b5c6f1-b735-4ac3-a6b0-de41cf2dc134 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6474e640-d1f0-40b8-b11b-610326f162b2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,ef12392c-853d-4935-a958-6eba30d3f13f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,b36bb835-4bee-4f41-9936-783909679e6c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,1d1d381f-b460-41b2-98bf-ddbaee6cafb4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,704376fc-7f3e-40b1-b5bc-1a45007b2afd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6567645a-7b52-4f88-830f-fe8729c6ff09 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3df7f03a-5817-4dd2-9f71-2f34fd4fcf4e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8f2b0f32-94bf-45ce-b30f-61b7a831f347 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3b0b0dfd-7673-4b97-85ba-aa498d4636c9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f692526f-6cf1-45b2-b41f-d8fa823dd9e4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,867a6a87-4e5e-42bd-8e33-441c88189364 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,88a950fd-20dd-4cb1-830f-9580c67d8973 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,cb8f28a0-b88b-4adc-931d-de4283a32bde -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,c6914218-4383-4b98-afc7-b58306aca9f3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,9126eb1f-1776-482b-8b39-603821ff98bd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,1a09e3e6-6e6a-4b1a-add6-6b40f5687b13 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,60be07a6-794d-4b6e-849c-9ca28f154f86 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,ddd13b9f-cefb-4728-9305-c04ef29fee83 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,2a436891-2593-4569-9f41-3fb3ace694a9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,b9c1b346-8263-4afd-9a4f-d3284ce38efe -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,be825532-ac12-4c29-a22d-a84d467e4c97 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,3128fe9a-c1dc-4456-be90-37dc435b0e82 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,a3b61a31-b3b7-445c-9da3-8bf845b83fe5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,f5e73bad-db43-4570-aa75-ff8cf21fdb07 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,50dfbc62-07e5-45f1-bd8d-7e18d908e14e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,c1667558-20de-4035-abd9-3d20c55f4b84 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,0866504c-eb7b-4b2b-a6d4-60f669dc4e3a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,f119a5b5-2e6a-4083-8bec-f4e39631d26d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,285be65d-b46f-4ec8-a91b-0be6c7e400d0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,3f744b5a-bc6c-4697-8ede-b31d4f4bd221 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,34fc3a13-4d28-40c8-ab2b-4a471d8c8588 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,d68e6934-9902-4e0f-b831-cec9e8f6791d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,16b7e233-8447-4945-8241-36564de171ef -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,f22e2728-1ac3-42ae-9ee4-91f919e9ec86 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,f6c4dc96-ce84-4f43-9124-c6028efd8f0b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,f65978ad-aa57-4a44-b46a-ed0b288a4924 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,0faae7fb-cc0f-4736-8177-dce17dd8e748 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,7f327749-5815-4fb5-a39f-a32b23a5c3f1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,8b992f2b-a122-43a2-a3b0-c543cb31af60 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,bb26477d-e6d6-4f01-8076-13d8ccbc03d2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,680ff1ab-500e-49d1-99c7-74f3a8aa0e7e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,475bbe26-e497-40b6-b3e2-5eabb132d932 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,4c2d334a-adea-40d8-8daf-a2b133ef2d41 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,8b8117df-05e0-415c-8f25-52c4b725b857 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,f57115ed-32f8-425f-9732-fb9e464cdcfc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,57e3cea3-2d13-47de-88a5-a877a9de27f4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,87f30095-5f77-4275-8759-8f2f08a6e2b4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,91762cb2-e58f-4544-959f-2452a9e5f7d9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,021b91bf-6e11-47a2-828e-549d083d4554 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,6bf9b804-a00d-4748-b850-b7fc96e10ddf -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,109.55999999999999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:30.22, NCV_units:tC/TJ",,eaed851b-e7e3-430d-9c36-7313a1bece55 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,00995746-19dc-4223-9748-89bf746afc9e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,6e2929a6-87cd-4a59-8b34-adfdaba8d718 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,0fff0110-76ce-4166-b4b7-e17996b3f97e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,1ab166d7-ddcf-4091-89bb-13e60ae10fc9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,1f8ecb4e-56dc-4c0d-9cc6-c32edd73594f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,475ea6d4-da9e-45c8-a08f-57a1c4cc3385 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,1e87e79f-092d-46bc-94e2-e74844596f1f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,fe270ca4-54e3-45ea-9586-2490baea2e52 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,81a8cf33-3c83-4f1e-b2de-03d18d3f9248 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,eaa628f0-38f0-47d8-b7d1-c197b49b9ff5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,5dceb46d-5193-48d9-be43-ec29231494ad -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,4ccf749d-af6d-4b96-b72e-10200092c31b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,92764fad-65a1-4ce0-8102-b54b203b0822 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,1e19c327-5aa1-450d-915f-d44b71016686 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,376a280f-7772-4c60-86a1-b771f67c4ec8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,272446b2-f322-44ed-804b-20825f5b5fd9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,263a9d48-f0b4-4ff7-9157-8e15642133b8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,034ccef7-3830-4c7c-af81-c57f4679824a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,e3a2ed7b-f912-4a05-a087-08a017dbefc7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,49381883-7718-4697-8219-508d4d475242 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,cf27facf-6507-4af0-87f3-96be2b92aff6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,4a06d9e9-7bc6-4446-9b34-79828a07d011 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,8b1f4cc4-d683-4ea2-977c-92ed0141c3a7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,ce70ccf9-8936-47e9-9c80-d6fedcc7cbb2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,9d079594-4ad9-41ad-8dd6-aa4aef60bc00 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,8e642e67-634d-488f-953b-a1b756cd6b13 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,28fa934b-fea3-40d3-ab9f-7dbe2793b3fe -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,b29fabca-e631-4987-a2d6-e1a601da32a0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,8f3c08e2-8141-40c3-8fa3-4adbadbd56d7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,70ac5784-5ce7-49f5-8971-f0493bb5c875 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,356edc45-0a54-4e96-96d3-e1f715832a92 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,b65517b2-204a-43a7-810b-f38bc3c1eaf7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,afe7bbe1-5231-4b25-b834-05542e14b7e6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,93cc6d51-9f3c-4e0c-8d64-6c9ca656f8e7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,77acc915-1308-40de-b802-aba3ead6bc1d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,26db9085-3305-4c58-893a-473b25c00d0f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,7f79d2d5-9a3e-45e0-8bb2-09a604ee22ee -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,41b890a2-2ea7-4778-9e48-85a050f78022 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,33edb420-f109-4d48-acbc-2b6acb0cba20 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,737f76f2-c834-40b1-820c-8d3466830879 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,03073427-7ea2-469d-8b79-00731a9254e6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,6ed0a590-77ac-4d07-8225-5b1dc6a92484 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,7cafb798-0adb-4060-ad4e-6e8f9e73ccae -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,bacc63a9-457e-4adb-8ed6-570f502f8aab -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,66cded11-fbdf-4f43-b210-c5f30a8777a2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,7ccdf5c8-b8c5-4ae6-8526-f6f96dad0dac -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,d11d60d2-5977-4923-baf9-b709d9cda354 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,c9fd0302-e159-4c12-9d7d-9e0d4f908f73 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,082de9b7-4806-4cfb-aaf4-a67244beb6b2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,e5e3437d-823d-4e94-a35b-715946ef3922 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,bd1c030a-e338-4cef-be21-03a094f354a9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,066fd5ce-7e09-49ca-9daa-f954398e1d9a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,a2fcb878-1fd8-4f43-9962-20a187e9fac7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:10.93, NCV_units:tC/TJ",,b912d182-cb86-40fc-a2ca-c73200ccebe3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,388a24e9-eedf-4ff8-a7b1-922786c353e1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,c395b04b-963a-4128-b0e5-5c136f34741f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,bc0198fe-f8fc-47da-92e2-05bd9c48491b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,e935daf0-3c1d-429b-84a3-6225a6864fbc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,99f033f7-0581-4b13-a388-6260f7223f3a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,c65b52a0-9bf6-4312-917f-1f5b0dd63fc7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,f96b92de-de5e-41a1-b225-bd5d884b2e0b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,64a12e4f-b52d-49d2-8d68-b0c187d92f1e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,ac9d2dcb-5d1f-4284-92ad-7d3758737a65 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,aa70e595-1601-468d-a267-fbbfabc47257 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,085dfed3-c8ad-4421-a700-a6bae96f9ea3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,c949b0c4-3e3d-41ef-bd77-6f78b53cf845 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,139e6d6d-865d-4d34-af8d-450f1a8470b5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,d826f049-29ea-4257-8b4c-842c23b3572a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,ee6e77d5-8f73-48c7-b8da-ca0895be9562 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,ebe487ed-969e-404b-b6bc-0a3defa1fcc7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,576aeaa4-aa8c-415a-8c98-c975498ce5c3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,39.89333333333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,971b4aec-db65-48c0-bad8-c7f69412c41d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,767190f7-56d4-4b91-bfcd-d0816a3c96f1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,7efe9f8a-b840-4228-8606-e2dd6cf930b6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,f56bf4e8-b00c-4840-bbde-6adf0eedcfc9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,d43e8711-58e0-4de5-82b4-9d0a08d62615 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,b144e936-9cd0-41b7-af72-a3fffade1dea -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,5f14ce72-52b7-4ec7-b5e2-b2b6b49a8f7c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,bada2145-25d0-4ae8-902e-42aefcd85919 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,0c81c692-3df9-4f5c-ae79-6e136b45db2f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,b0cb3056-45ef-4276-b63b-40ad3438a362 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,5c228a21-2e06-4a98-a34e-a1064d51cc2e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,9c230133-d046-44a4-b485-e5028e1d7a7c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,0f142af8-3ecb-4d0f-8e3f-55f99fadfca3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,d5a1ee8d-78a8-4e8d-9727-2d20182a6be8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,3e02a9c8-4d5f-4aec-92e2-6eaa114335c0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,ebde8d09-b945-4205-882d-b722d5bdfdac -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,0934eb3f-d604-40a5-8858-865b577c68f7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,c2cb3ecd-b307-4890-9c08-c7be54d4c67f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,5bb7d65b-a876-4c96-998e-230307725007 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,cbe12a98-4ce0-4577-8c35-623db51868e1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,c5e3dcf7-7ce9-41de-a7da-0890dfa5a473 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,ecde06d8-029b-43c2-8549-c3a39db7cc77 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,72874b1d-a195-4faf-b77f-37db7f5bee04 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,7de05b5c-6726-46b8-ab18-7671231dfb50 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,24354350-9d23-44ee-9e9f-90c6fbb1ba8f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,f53bfdc8-77cb-49b7-aa15-74922189268e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,0fedc614-1f8b-4c6f-a5d9-17e0113f3ed5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,6eee5d89-f383-4b44-a2f2-ccb5364acdbb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,66bd85f0-6d8f-4847-8812-f89b6be71f22 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,51910689-ffd0-4d1e-a29e-3436e79f473d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,509d06ab-4a66-4b12-ab15-629037884b7e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,cbaa48d9-08c8-4e30-8ea1-d564a282c546 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,6c5b633e-7889-4136-a56c-ae6d39f1d080 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,3b955d7f-f41a-48f5-98a2-186beb3c812b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,cafb512b-a1a7-4c72-b6df-282fc5fa4a53 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,b860699e-7745-4be9-a76a-7235c0de7ace -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,dcc1471e-11f7-4ece-8596-d25038b2ed77 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,023e5603-5578-4fee-90dc-e9e3aff5a000 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,cc042b24-32e1-4540-bd37-388e8ff44e11 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,b2c983ad-5ffc-4331-bd1d-b5bda769c531 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,4546e2e6-3e05-4e60-84a4-d80414acf7dd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,be572f50-56b6-4f7f-8fe5-a76f216a4683 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,14fae756-f8c6-40d9-9035-f62db5cc3025 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,95462792-cc11-41d5-bc89-d130b631e93f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,d7643954-04dc-4039-bec1-209f16a275ab -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,92ca35f9-0072-4f81-80c1-061c0b9f76cb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,bf3eb442-9076-4578-a571-eddc892fbad4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,8554b5cd-d653-4364-86dd-69dbee6543bb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,5a705d5e-a06e-4995-98d4-9dc4abc31ade -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,baa70cb0-1745-416a-a58c-a22e9701e3bc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,5fca22ea-b33f-4ac6-821e-c953abda5f47 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,9afebe2a-2dcb-4751-9f9d-b64c56a4ae0b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,508621cd-4a3f-4a45-9607-1664ade82c2e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,131bda4f-f7a9-48b1-99cf-87650420f4a3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:51.94, NCV_units:tC/TJ",,d58b6867-fcc9-4ab5-9644-3915ee0ad316 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,0fad3687-0feb-46cf-a360-6764b765d73e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,fc0a9892-2c93-4d7d-8d5e-b5ff55d73d6e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,7789bb1a-2255-41d5-866c-8e52cec65439 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,dca8b50b-f43e-4447-b7b1-9485e7d0f7b2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,760aca96-3fcd-4d06-b6cd-250a759f2050 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,27d68e65-b8dd-4bef-819b-ecd67669e89a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,213c5bc6-6b6b-4db4-87dc-76af7be1091a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,1774cef7-1914-408e-93b4-4a0edbd08b4e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,ee5e040d-2f48-44af-8f35-51287c55d00e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,02317dab-603a-4022-9d93-68f0a40ad6a1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,722ad324-dfae-4c9b-bbab-b32ffe78bb31 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,693dd802-2fca-4490-8553-f3737d6ac89a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,f9eb4992-ed40-4621-9a0d-b55ce383075c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,bd319407-cc20-4c60-a956-7411d2e85835 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,aab936d3-1774-42bd-98fb-bde272a62697 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,0938471b-b44f-45f7-b59d-7fd3dc8c31dd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,403e7f1a-36b7-4bae-9743-6cb392b6e259 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,e50f4155-eaa6-4fb8-9906-bf600d314c3b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c404e561-b808-4eaa-b6e2-8ec6995d3ff1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ec1e4de3-5b46-457a-a3d6-9ecde10b693f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c61b887c-251b-4741-845c-4adcaeb33b25 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8efdca23-5470-4855-8f70-558b84a9013e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e96d1b7f-d1e9-4be3-9ca7-0d9664d624dc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0956b586-db48-4325-86f5-ade9a1b9747f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2dd38ded-8b0f-495b-a9ea-3f7d02d52f57 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e1deef8d-4d89-4fb2-b615-d82000babfa5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,23442419-6765-4e33-a717-85b063528f26 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,b78b6fc2-6f15-4ad6-af2f-dd5473874569 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,7c61a0ac-bd4d-4741-bcc7-03d90974d576 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2f531fcd-cf1d-476c-91e5-1be7f834c58b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d7054962-98e1-49d7-90cb-5d756d125be4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,b517b130-2d84-499a-b5e3-ef8ef5bdcf2f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6473db4b-611c-4735-a1be-d2ce73665aef -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e211a0f8-ad29-48cd-8dd7-cc06ab5be997 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0e2f94b4-9c90-4553-9e1e-358721e2c881 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,95431470-a5ca-41a9-8933-52816407c803 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,94135789-5945-485b-ba54-85350a859f48 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,e943b501-9175-4644-8bf0-602d94050256 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,237c4e8b-2c3b-48cc-904b-db3ec23a9588 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,2dcbe5e3-816e-4ef2-8894-102e94c1db5c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,685a2feb-2499-4045-aa20-e5276d1d7451 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,45386aae-6847-4f59-8463-3cb0aff7227b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9e89e598-64eb-4315-976a-73b6fb4200f1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,edbf6a52-b54b-4787-97df-cfb7f768a10b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,e1c0ac4d-9175-44d6-ace2-b00e4a612f94 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,798cd738-bb92-475a-a62b-16093810445e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,46bed969-223f-4aa8-a875-3b372ec8c1bd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,77f38972-575f-4a8e-9c6e-c5be8dc92a98 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,6b02a6ab-6e3b-4e0a-9cd0-a97846925d24 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,50ee321c-c174-45aa-98f9-31264a062f61 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,6111d639-778f-466b-b151-0842935ac14f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a9b836ad-5e81-4d44-b659-71b69355d1ff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,621d5da4-8487-43f8-973b-538f20532b90 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,f14c0ceb-e272-43b2-ac76-b9a5060f780e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ffb944c-0f88-4a24-962f-680cfd84c892 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,4bbaf6be-03c1-404f-b885-3b1d22d65f9f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,b575fb51-02d6-4903-a966-fca3839036c5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,ee27c14e-80cc-4ae0-873c-4176c07a92a2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,6b876f6c-9287-4fe7-84d8-56af73496223 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,98ef0304-143b-4aa8-a712-93ab20f163bf -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,a98b0edf-1e75-4dfa-8fc1-69307c306484 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,65198ab7-8be4-4477-9257-a6fabdd8b66b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,b9a9d8f8-9e16-4950-9750-82d1b29f91fb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,6c23cde6-622f-421a-a408-6f04f55d1cad -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,73e0ec1c-5e70-4e00-95bd-a4aaf17d48ad -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,7d4f7113-7652-471e-b6de-fec621b2d83a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,02fe6bdf-a178-4675-b56b-3048601fdfff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3a3950b6-3770-465d-b6d4-79a4327c318a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,a966c949-f78d-4703-ae16-ace2488b1c2e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,81797570-b348-4225-aff8-cf98f9d36bf9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,b2bbd587-17dc-4806-90ce-1a81395c154c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,69.59333333333333,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,be4b9075-00fa-4a51-8224-7bd69bce7de5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,e83b1baa-1736-4d48-a9c7-d67ef99f033d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,49255236-7806-4319-860c-8e0ba4cc5e8d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,b2e2afbd-c921-488f-b6f4-5d767561bd02 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,ba9cdc89-e934-4790-8d88-c1284f626a37 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,e6abb7e1-c3ad-4905-9a0a-1f16bde5005a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,1a733006-16f8-49ba-b101-942cb084cfc3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,4a07bf64-61ec-4939-a385-4655b94127a0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,2dea7fa8-2a88-428d-93a1-50bcdbf1d944 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,e2b642f3-10cb-4487-9e53-557ac778ded7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,d9fedc63-6149-41a1-bf0b-b77ec15f9286 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,a9a5693a-0776-4acd-917a-c194639f2f37 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,7462c9f8-dc06-45aa-aabc-8c427f6f5127 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,1c809362-c7b3-4320-9693-77501e2a9179 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,828d1928-b165-4f73-8226-fe01167a4caa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,9a4ba535-b899-4909-9b48-7fcbc60547dd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,2c4f11e3-2f82-4a5d-b7f8-f1df77847929 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,85e480df-a010-4b3d-be22-548a4d4ddc64 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,417fa41b-531c-4fc2-a8a9-8b263f8a01c1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,d4a39fec-efa0-419f-a37c-b08a9f478001 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,b62fa3bc-e6b1-49a9-9a22-42f38d71c918 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,f19b7115-65a3-4777-bca5-95d3c94a9351 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,e62ef0a0-1b96-46e5-8de3-c8fdd201e27a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,68d49536-07f9-4484-b16b-f5c602898c07 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,4496d143-c385-427e-97a8-24516f7945a0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,132fb5be-0fee-492f-8a02-42b8bc71ab61 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,170ea04a-1df9-41a3-8858-6b6a3d54630c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,85644066-39dc-4230-b787-1cad216c9f25 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,c6396bc6-5354-4d65-b99a-2af6cfd7f799 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,0553fddd-e2f5-4bbf-a794-07c54cfd9896 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,3cfecb93-ec08-4563-8d56-25db96bcba39 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,c811d886-c659-43f1-98cb-399e37bba954 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,c0c1c363-aa7c-4f03-b409-bd3973c32174 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,a7eeaa22-001f-4999-a6ae-e15a37862019 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,c7f468f3-4bf0-4218-b254-a1bf795e6a41 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,48fbb20a-6325-459d-bdeb-ac45c02db68b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,a478c6e3-d253-4ebb-bbb9-2d9a33e4f3c1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,29b4b496-5b33-4136-af7c-c5f559ff684d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,a2a7ca5b-7a86-4092-b08c-b32263a16066 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,3152489a-72a2-4b22-a004-bbe9cea95f43 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,72316ed2-c558-4030-8ca0-3b6b670755ec -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,8be35c34-b2e8-427e-98d8-9eda5aa5f744 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,ed8dd7ae-9fe0-482a-a2a9-b04b3fac4faa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,d354b6ec-9773-4ee0-b6e9-66fa8b923320 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,bae264d3-b126-4ae0-85f6-6a26c27f768f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,38940339-8dd5-4035-96b6-c92111abe198 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,035575a4-63f0-4131-8e46-726472dc0d11 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,324d18ab-e034-444a-a14c-a5fc47c13388 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,cfa87903-eb28-44ca-a44a-610b721fd132 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,946429ef-90d9-46e8-8536-993b710e8edd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,6a00ae92-e9ca-4d91-9788-5745ae0e2e3c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,6d7e50ce-e8c3-4347-8bae-d0d318f9fd3e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,48af9335-a38f-4014-b975-6e5a945f8c07 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,c1bc11db-b847-4e72-b665-05e0b2b0866f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,66.80666666666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:18.26, NCV_units:tC/TJ",,f924c5b2-6473-4a62-a962-1da27c7ecec1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,ae35895b-03ba-414a-8e0c-de1644b56780 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,c54b2210-f78b-4ab5-8c15-bf3bb3c25dc0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,dc17093b-f07f-4928-ad2d-3ebf70fd0d24 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,50e5e86a-541a-4f4d-9440-e507db865728 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,151f761a-f8c4-4e78-88be-56c2b37a4c17 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,39e878e6-f40a-4308-95c8-bbb03171ddfd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,018d2877-8287-4356-b61a-36da514ec136 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,b301ebd0-5a14-4cda-ae59-8dbb234ef215 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,0ba08a87-1d42-49ce-9031-4e319482aaad -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2428df8e-6d58-4770-8774-2b1bb65e9def -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,d2520bb9-41bb-46ff-bd91-551e32e70cda -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,fba20487-fb10-4044-90d6-2d1999aaa517 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,6dd9b619-22df-4da4-a66c-fc7979fd4060 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3c89af6b-4fbc-45ee-9c97-0180340113eb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,6fa61ca8-6bee-491d-a3b1-71a02d6c7c4b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,1a717c84-bb61-4bc8-bd89-6d1ec7ea5ed8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,e2ac15dc-aa90-4744-8cc8-91f1ec892a61 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,28c88063-af11-441e-b1f7-d16f28628a11 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,a64b2b2d-1593-4b7c-81be-3cfaea5dd076 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,20d4b500-6f75-4d7d-aa80-edd70f8e7bff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,3288b7b4-35c2-4151-a5ba-f0e56b57ec86 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,32115251-c428-4201-9a0a-ed07e1c45264 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,fbfddb22-3491-4d5f-8b24-05b41c57fe58 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,44b439e9-db56-4b8e-8b55-5d8d92c98ff0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,51473b25-4f76-4af3-b6d7-f6617c1ed064 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,fc795431-4622-454e-ba79-cde9b2ebcccc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,281f0d99-8b6e-4bb7-b82d-cf0c62269927 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,921c7acb-7142-4b9a-ab3b-6cff5ea0af22 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,9beee0cf-648e-46e7-a5f6-6c8429cd1b4d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,c03e10d0-1e22-4975-8d56-5158c409ea45 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,035feefa-23ee-4105-ae34-3de7aa92a1a3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,4977de0f-bd5d-415f-81bf-1148cda3661c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,c928e053-eeb1-4535-9318-060729623b72 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,a5d3e7ab-1ce2-41a3-a773-4256a321a390 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,da1d74b6-cd79-4e87-9010-98eb64491135 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,68de9d50-1399-40f7-a675-6eef25ed2bd2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3d0c6ed7-b352-4c5e-a72b-be5047392e01 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,103fad33-e433-442d-a1f7-6e8c08d46bf2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,dab7aac7-863e-4076-8977-a7c593128f82 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,274bef82-d5e7-4cd1-911a-fbe3241a2de6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,889c552e-bb79-427b-8f48-a910a245cd7b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,2879b4ed-6572-48bd-8a95-f21eee4468aa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,ada2fd02-3d64-4ef3-b079-12c9fbe3ba94 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,73af997c-f701-4e69-8a6d-3ea202e88674 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,0536fb3f-30ce-4380-89fd-5354bad4ebf3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3836c32e-115a-44cc-ad60-d05f79953c36 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,2e7c3416-6272-403d-852a-516bf1025623 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,229e291b-aa53-4b4a-afad-d32a948fd57f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,b4560fda-fc67-4858-9a73-5a4c9e4dbf10 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,32ee490a-3974-4d5e-93c8-2ce9f6942a5f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,fb573941-d87b-4c8a-b456-1dd6731619f9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f9cf7d78-108a-4c53-a074-f96ea8cbb4af -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,df2b4682-5d28-4f83-b128-e82536a332d9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,49d0815c-f68e-4c52-99b5-d5683cf3362e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,74b07da3-a75d-4a8c-91b6-a5567f512c90 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,e70bdf65-cd97-45ac-8b95-40ee667e8a74 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,5ed4addc-572b-4d1c-afa9-abe15056e095 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,571067a1-e568-429c-a7d3-31509b4e35c9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,a6ac24f3-2af3-4e6d-b163-3b86ef53ecd7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d130889c-5a2a-46f8-8f91-fc461c3735ff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,9c94aecc-cd82-4ceb-ae11-3ff8a179d863 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,b7880791-c52b-416d-b242-b164ec8a9b34 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,2a4b4e17-4134-423a-824d-68e9db1a105d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,14b4569e-c035-4c6e-aa72-296884884c4e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,557132d0-6a7c-4e99-b2a6-bf444ade959a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,3481fea5-4716-4c73-9f59-39e55319f7dd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,e1270b08-2598-47e4-9690-6607cedbc1e9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d25ea4e9-67da-407a-8705-b21cfac2acab -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,73aea4c2-dd9e-4e6b-b77a-3f763a48a128 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,844718b8-22a2-46cf-a9ea-787d38e93f54 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,20fb4f24-1796-475b-a69a-fbd6194bfba9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,9946ab6a-6a10-4835-83c2-bcfb95a567b8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,98336d67-c649-4617-a370-4452ad32a64f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b351735b-5a69-4b7a-a1aa-a5a0af957406 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,52941aa0-4f1d-4ec8-8344-42c75c61ca11 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,a016c197-a7e3-4b2a-aab5-a5ea5dde31aa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,fb5ee1b8-8948-4a84-8d04-987b566ddfb0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,47277d9c-4aa0-4279-877c-c35b408b64f2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,89e6bdc4-c762-49f8-b133-01cce241bd33 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,9c6f6f9c-0e53-4c9a-91c1-767946cb1c0a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e35390eb-281b-48bc-9d23-07d7bf2f3251 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,ca7b222a-6666-4d05-ab3d-7f93eee1567c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,360da4e2-42a8-449d-96ed-e45157f388a2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,c336af7e-1c85-44e3-9c84-e25aa4828d7b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,26e9aed8-7d35-4658-97cd-1f5ab8406a6b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,3b4e238d-6a87-4abd-808c-cf31d7b9a789 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,c13ac717-622a-471a-8b09-482ded2906ba -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e139ce02-0c08-44c5-bdf6-bf2acd963113 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,4060d433-5205-4355-b472-5a7e0270bb7e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b31bfa5a-3b82-43a6-935f-1c1dae6255ae -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,7605e921-2ebb-4a6f-a904-3d608f2e0868 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,e592452a-909d-43ae-82d2-b7aae9ca566a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,1fe3d44a-40d1-4dd3-be8a-04d07be46349 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,e10ed77d-7c43-493a-b84c-0ad8c97e9f46 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,9f36f120-79ce-463d-83b3-194a3620d2db -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,800e4e56-a68a-42e8-976a-94afddbcaf0f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,fbfb7597-46a6-4a49-a796-bad1b06129b4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,f6153df1-3f01-4e9c-9df3-8e59f726b143 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ce24892a-69e1-444a-868e-cd3240f83fbf -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,d3870e2b-34d8-4d02-a5a7-8a789d6ba777 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,55e4b834-5458-4455-86f1-d8ad786bf4b3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,9c0b1a35-3dd8-4337-82e7-b6b471a8152e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,db010afc-ca0d-433b-a0ed-e8ea26f7c034 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,47ccf04b-683c-4d30-8768-aebeb93e79aa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,090ffff7-cf56-42ab-a517-597190302121 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,aca316ca-f761-4f80-834d-9975c3cf3d86 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,b28bf5a6-cb49-4086-b3e9-5a8e837a790f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.60333333333334,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,67caaade-7f92-47bd-961c-d011166a0526 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,ddca4696-14d0-4cc4-bbbb-cbf73199574f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,cffac861-9f3a-486f-902f-b115cae571fc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,64ed3a1e-53cb-4a3c-80f1-919e2d7560af -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,1e92aeee-55f8-45ff-ae87-48c378a4664c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,cad98901-3202-4a07-aab2-65ed38e85e54 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,4c975786-3865-4600-a3c8-29b1e2fec282 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,43f9ae67-d330-4c08-a3b7-1e0476a06c3f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,ef28a716-a017-4c11-bab6-062059fa46e4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,24042e11-c24b-4118-81b0-bf00d2a4668e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,16d4fab1-f892-43fc-abce-88e6aa5085f1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,010d0909-1e2b-44aa-8ea0-3b1a02163d39 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,6cbfd1ab-61c2-429e-9291-b2115f30d630 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,cd5d5058-6b76-4d0c-b09a-70bef16cbb8c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,8d44f00b-4891-4f73-af8a-bbef3ee47fe0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,5200e46b-3782-441c-a500-3e39f455dadb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,d012bc44-e7d2-46e0-a1fb-36fcadf2dc5d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,85ab3c6f-acd9-4940-a7d5-230df9a8d930 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,7fecd1eb-0a1c-431d-a219-250569ca5cc7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,7e703542-96fa-4ca4-995d-f513357f5344 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,43e9915d-91f4-41e3-bec8-7e6bc8a9b9e4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,7affbdc3-33b1-4c88-8622-b19358885b8f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,a8e1f84f-ddaa-446c-a772-7bc8919e9be8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,a568de18-ab62-4b53-bedc-1e1f06f5562e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,63401599-d86a-4349-be23-b5f7ab1e4216 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,bea8cf0a-c95c-4e04-90b6-ce0c90f490e5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,aafe3493-bf5a-4dd0-b46b-d202ece38196 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,afac448a-c6cb-4d02-ab68-cb44a82a45ff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,0b5a3967-8d47-41eb-b09b-5d743d7b14cb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,cdeb1d7c-5828-46de-a551-c8b9dec9d1e4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,cac8ecef-8770-435d-a37e-8bfb88f2c619 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,28400a89-b778-4b9e-9c84-e98935f107b5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,397bd178-9c05-46d0-bd35-78a36691e78e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,9848ed3f-4676-4dc9-a29b-cd68ec0132c6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,d8fa0def-0eac-4866-9f6f-3ab45ec721f9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,9360dc01-d68b-43d3-827f-03a8b46c6236 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,8c798dc3-0e78-46a8-b013-d5b451c047e6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,5844dfb2-58af-4d3b-b116-6b1c85986491 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,7eec3abd-a94c-46c4-9236-204dcdd8d830 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,d1317ebc-76c9-4de9-baff-07105d8f48ef -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,e5b90d03-10a3-4670-a158-7431cd059c93 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,9aeb25d9-522f-4b90-b6e4-a5d31537a544 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,59b302f3-0a92-496b-90e8-1b949ab6c8da -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,13ca94be-19dc-47fb-a942-c895ecafb312 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,b8fa0bde-a25a-40f2-8f4c-65e560063934 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,02e0959c-020f-4f5e-99a3-01100e01e7e9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,c5ab2d08-ff49-41b4-a901-e5525c651dee -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,000a32ec-d761-4d3f-b0d2-d5996d48ff42 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,b3081ef9-2f77-450a-869a-4ee2dbc3b51c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,b589661a-2d5f-403f-ab3b-6661f221615a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,7b82fbe9-751e-4c62-bbff-449e170be205 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,6b8cb3ce-8750-4b35-a222-8b9271dba0c8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,0daca1e3-c982-41fc-bcea-b367a0a08d32 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,46076175-8159-4849-9e7e-28c4458ebd31 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:18.6, NCV_units:tC/TJ",,04c91fb5-4ed6-404f-933e-bf7ddc3eed93 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,b889ee59-dafd-4f1e-93ff-ea9c265805d7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,523fc7fc-d93f-48c3-a314-b27ed7fc81dd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,c08dfa7f-6c69-45c1-8153-4f8b8e0b6e4a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,8c46d8a5-3148-42bd-b71f-5ba42ce5178a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,f48abf67-24df-4137-a54b-d9fbe62ee861 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,bd820883-9de7-40ab-bd71-4ed23f19c3f2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,44150397-a69a-4ad2-bb43-d018a4f9502d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,e5cb698e-6d3a-45d4-b043-1c9e1158d905 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,bc8721a7-284b-4818-ae43-f3fa58943789 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,f97943ec-c2d7-4720-9c03-1405086e80cc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,532d26a8-3c29-48ad-947d-67fb600da466 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,0b64408c-d3c9-47c3-a1b5-328a9bbd1b8a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,20d9d9cd-388b-48f0-9872-d5814f294f9c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,ef7f35ca-91cf-4baa-a689-e1d23b12f544 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,b5166f91-a003-4fc6-861e-f070780159f9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,edf3138a-e7fd-4593-8ebd-1872a09b9575 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,0a53607b-fa38-4f33-b922-faabb89a159c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,eb17d295-a061-4d91-8f58-ed0eebbcce3a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,9cbff887-4c3e-41f5-bf82-2de31a887d83 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,109fbe8c-a94b-4e49-ada6-8fb5b284a222 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,807502c3-6581-4476-b208-f0ae91f975f7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,969dbe3f-50fa-458f-83a3-1a974edbb2e3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,c7e7e037-f73c-473b-9b20-7db42e10f1a8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,612c8387-0a0d-4450-96b8-6abdce08abdf -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,9eb18785-5a72-4ff4-9f1d-f0f7d2287d2b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,b8f8c3b3-cf2d-4620-a4ce-37bce34d1d61 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,d1ddc44a-ea67-4fd5-9db3-7c7a6d8f803c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,f503ff74-7696-4faa-ac46-dd86637aeaf3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,486331b0-ee63-4da5-a3f0-e056f8bf6bc9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,541315ff-223a-4d9c-bda4-80d88991d18a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,6ed098c1-066e-4aa9-9f16-fdbaaa4521c7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,9e0712ce-14cc-47e2-8d83-fd64d6899e3e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,8dd3d684-d0ee-499a-aadb-d48b415925be -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,01fb7421-05ce-438b-98be-b9f20d0d1e30 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,7d6753c2-7baa-4f41-98aa-48e9cb5cc591 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,c60809b5-493a-4ada-b4e8-2c97a1851932 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,3e493258-97d3-4d90-b84e-358b4034b7c9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,1b4cb32f-db72-490e-881b-d5e3acc85f10 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,44992471-e283-428d-a2e9-ae9592ad0d4e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,269bef11-76b5-4a5f-95fe-9aa2fa52b0c7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,417da2fd-00f8-4abc-9dd7-3ff256b4fc74 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,026163cb-8054-4272-9405-b035b5ac35ad -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,ee9e399a-01ec-41f8-9308-c57a47502292 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,c7b89007-ceb7-4b1f-abfd-24a59dc15a9e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,3e454da6-43a5-42bc-81b7-0ea1ffb4ddab -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,dcc9f5ff-8ded-4272-8e1f-2a73961cc33b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,e9b6060d-a2ff-45fb-a65b-089f382ed683 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,ef532cc8-edbf-4a96-80c4-0b5414cf4fc0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,ca2812e6-7282-4145-929b-67ad1db1096a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,ec68e2b6-3b5e-46aa-a302-1b03dfc78ad0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,77ddd861-f3c7-4ef7-9d15-c879e0a972e2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,82424c16-7097-4266-8a0f-b8c169fe0ecb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,16abc9a4-bb4d-4c3f-8e4c-c9d76cb39722 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,68.16333333333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,7d316f08-9602-46c5-a2a9-06f2c4a00563 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,3b26f710-c67b-4aeb-a316-f115ecef0058 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,2c57c604-9a9d-4faa-99aa-d2efb45fecff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,aa989c18-fdca-47be-91ae-5e23bf4e34dc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,8622bf7c-91af-4109-b8b5-c97dc473ab85 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,a47424d1-55b6-44d8-8bff-c2b94ece89be -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,8865f245-70d4-4eeb-bf3d-fa4f83360182 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,8abb9e89-a5d2-4e69-a8ee-d315de2f08f9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,b2f40e9d-ffd7-4d46-9d0e-d7ccf0cc5834 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,b1534139-8bef-414c-bc0c-e01e47747907 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,29237526-eb9c-4ce1-ae00-ee07c57fcf54 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,5d7a83da-6efd-4907-869b-6eaab3ba6958 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,7f05bb57-3b45-4f43-9977-f94fa5cf5295 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,e522a755-0ba2-422f-bf65-67876747c85a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,e9385ca6-f8f6-4259-88b0-f63298725a9d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,1ffc88ce-e635-4d9a-8f2c-07bd7fd5ecd0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,2bd1e9e8-de14-4637-a786-02dac75b5c28 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,a07734c5-43a4-4dc2-bebb-44d5dbfa02da -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,096ce050-c40a-40bc-896f-29b5f0a9b59f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,c7d635da-0e87-49c9-99c6-3e0dc19ee57a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,07dd1f6f-5697-42c9-9fe2-2842d0c26197 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,6244711b-b8d6-4af3-8737-e4d07c2c6c5c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,e19a2dca-7d37-45bf-a188-1dd69801ebad -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,3adbec9b-afa3-4db3-aecd-ed3ada902a0d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,dbb78945-e9bf-4ee1-a62c-f8b5f6b13ab4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,b122f3de-4b1e-4727-944f-65682d67bc32 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,4da269cd-ab8f-4802-8cda-eccc7b879bdd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,fd2e6a51-8c8a-424b-88ae-ef3065d03f99 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,f9b8ebe4-fb1c-44c8-b02f-ef40b21b8e5d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,7561b49c-5ba0-41b0-a985-1429e4b8a1d9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,a69053d1-314a-4768-a8fa-1d18e7713b66 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,84c446db-7996-4b48-8d73-f9f3054b795c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,70d2684b-52ee-4dfd-863d-fc3687e30a14 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,4ddbffa5-2d26-4eeb-a919-c067bbb83d2f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,b4ff9dca-5f3f-4bec-8d08-f6acf3cf3160 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,db3a825f-dd0d-403a-afd8-0c80fda1343f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,7604eb24-5953-41ce-9df6-52b019d3cdb3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,211d99c4-aa1b-4664-9c07-18090ed080f3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,6ad37c67-4b68-437b-8b27-86ccf97f0007 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,1f38495c-c7cf-491c-be94-84a827ae8707 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,0c678a2f-0470-4133-bd15-cf725db64474 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,ffed96f5-fe12-48d7-890e-35f07ad28cd0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,98bb0cf9-e34b-4ede-83f2-f1f875235121 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,e192a30f-3b83-4e00-8720-8faf0c0b85be -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,203aae57-d89f-4859-b63c-c41b27481fe7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,e2bf255a-ea69-4a13-a1a5-42789d1b1768 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,e7ca3cb4-893d-4603-89d7-9b93ca6a8338 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,7334d3d5-95d1-4c56-83a1-b13944835c09 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,fcda1c5e-4c9e-44cf-b8da-940fb163c096 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,745d157d-c485-421e-9624-e131b2f17ecd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,c88c64e0-709c-4848-b847-418ca2a9aeac -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,f5e8360e-603c-47c1-a826-185e46eca28f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,f2756542-5b1c-47c7-a2c1-d81c760887b8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,a2eee764-e043-41a7-aa86-a05f2dd97755 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,76.19333333333333,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:20.41, NCV_units:tC/TJ",,7edb7609-526e-4b9c-9e44-909254a19275 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,97a2a52b-a9b0-4de6-8834-b92ced7c1a29 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,4624f058-bf20-48a8-accb-eed430231603 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,f06bfcc2-843f-46c3-88e7-613934cde094 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,8aeb908c-9a77-41c6-98bc-5fb6c14ca5c9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,4344c369-fd0c-433e-b700-a55dc184c43d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,2b17533e-de44-456d-ab57-b3a7c2e3bcea -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,95b8b30f-0ac5-4c02-bf07-4042405ec50b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,8d5d807f-703d-49a7-8a99-b078a31c648e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,e47e15bd-6035-48e4-9faa-3cca1a3649b8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,796c5d71-918f-492d-abbc-b7780f7e9079 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,5fbb8467-55ba-488c-9171-4f1d1b4da269 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,6291b82b-8e93-4dc1-9032-b6bfe0f5d468 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,6dbdeabe-eaf3-4074-8037-96069f0097ac -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,132fc5f2-a658-4148-9662-286f5854d0fc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,2cdc11f2-0e48-4ef3-baa4-1e09430d6e55 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,14eb43fb-7b3f-4429-8fbe-e32bf0de952a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,d4733358-e563-41d8-be10-16ac71eeb8b1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,0f3d005d-ecd1-47a8-a6cc-1bcdfccad3bb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,1fc7124b-4212-4e81-927b-0a8c93776ab6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,bd941923-e683-436e-a24f-2872c638e179 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,fc8422b6-6ab0-4757-926e-da344f9e2546 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,85444714-afd5-4e42-96e8-da0f3357f880 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,f2f414b8-beeb-47a1-8c31-144388c44174 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,8adb7a3f-7390-4a49-81f1-60f3fbb63e2b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,4b352cb8-4c01-47e9-823c-cc14e0c072d0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,79c2ec0b-c59d-4559-94a5-bfda66a9c81d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,6e1bf280-892f-447c-942b-82ae00378f1d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,fa25202a-3af9-4880-89fc-667034bc676a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,f95d54f1-d40c-478a-aad1-ea64be382c2f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,9aaafb4a-ff15-48f1-9354-9fee1d295289 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,612fa49f-a7c0-406b-8f72-25128abf4b41 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,6815d679-4fc9-4c7c-8f61-a70bcbb9fb8f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,d197ef02-8726-42c4-8762-4e0fdc66ed28 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,bf5f2136-4b9e-4332-b443-651186031195 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,a20c71b9-457f-4c51-9227-1e82a02d9107 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,0626e446-f4ef-4e67-a413-15c8d78954dd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,5aa0b56c-de24-4b13-b5e8-209f15a76dec -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,b364f823-a7f7-479c-958b-0f2951bce8cb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,ac8530dd-39ca-4e0c-9f64-c7a478ab845b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,bd78b247-f695-4fde-98cc-84622f6e6a93 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,a1d61e6f-87b0-4281-a39b-04f44dd5aae6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,49c89b02-3577-435b-8e8b-29e670d504d3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,178635a6-9622-404b-af5d-764c38e48cd0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,7f86751e-c11b-4ec5-97b3-be240cec54b1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,b33fbc7e-c44e-4612-b5d9-ee4adf07ebc8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,fbf6bf28-47c3-4e96-9e60-36ff31753c1d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,f48b4542-3e0b-49e8-accb-99cab64a6222 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,78cb4cb9-a5b0-4a1a-bdc6-d285b2ec7ff3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,8e82e951-5a7d-4a6d-9a79-064258558d4b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,1cc43d1b-dd50-487c-b4ed-4a5f3ff23af9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,66edc953-fb3c-48c0-a6f4-4df8a0844837 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,41e95340-f66e-4062-8c72-de9428f4b83d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,74c89055-06ef-4253-a261-80f7a9ed68bb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,60.02333333333333,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:16.38, NCV_units:tC/TJ",,f1adab51-99c9-4637-853b-09e987fff2ef -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,748cae20-7f9c-4eb8-b0ec-e981b575cfdc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,784535d3-8dae-49ca-8200-1afa5f561cec -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5e19b712-f06b-4366-b324-470267976253 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0216fdfc-e8e7-4dea-91e1-a031fc3bb1a4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9b002c95-167d-40f6-8b65-37aafbd44361 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8318dbbe-fad4-4a07-9fe7-8deddcc12dca -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b787c47d-5944-4513-a879-efe55b8786bf -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,13d7771b-9ef3-4307-8475-5ecc8ded8697 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,73ed638e-84ae-49f3-8823-77dee385aca8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,43af2dff-1c21-4ddb-a438-e88b31e96e1e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a8fd0a20-a11a-4690-b624-f5bf5ad8d6d9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b938e838-7ddc-46b4-bd82-d044329781a0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ecda0d44-10b1-40d2-83eb-d50002327993 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,27aed873-72a1-4ffd-96c3-769fa7a8f08c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4cd806b0-e4de-4d57-bfb3-6fcbe59a098a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e9f85dc8-d5e5-4d64-8e85-50b843311638 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2a360d75-ce15-4bdb-8df1-dbd8f572ad5c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c26f205f-a151-4e77-9a02-2c4840be53c6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2b3c505c-6e14-4059-bebc-61fd530c4b9f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a5f27d9a-b61c-4c45-be95-7d10c79c3e48 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2d631565-ebfe-4c33-99dc-64044d5d046b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,eb11ec09-35fb-44de-851f-82cc8d12ae94 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,108867bd-361d-4215-9437-a19d1762bca5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5c323372-4f61-42f2-8d71-f0aec22500f7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,db9fe56c-8e19-4939-9404-71af208caf69 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3c22ed3a-25b1-4f47-9b26-7eb349d43671 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0a10ba1d-fabe-40de-a97d-ca6262ac4f33 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1ce929e7-cc0d-4299-8e52-d201a9731120 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cf3e85ff-108f-44d5-9fb8-13c56d95637e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,db28ab24-0448-49cf-bc05-787c9de10c03 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9893c25d-3bec-4b74-ba8b-15aec0f2d8b6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9acb6b8a-50e6-4961-b6cc-a11a04457373 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d6fffaf1-6024-4fcb-8ac7-21d31f59463a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bd6a13de-3cbf-4d60-8b41-a17b260215e0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1ec3e062-47f3-4c51-a848-dd1465613808 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6d7db620-76e3-43b6-8065-bbe7c845c25c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2431a23e-b41a-4af0-8ea7-c734a454b881 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f92a3fd6-70d0-4dba-bcfa-62e9929f8d01 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2e33e81e-5849-4f06-ba87-64ded7738776 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c82182e8-154a-43f9-bcda-db682a58f689 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,ec3a18c6-79aa-49e9-9c3b-5ecd533ee640 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,9e62151a-143e-4534-a1a1-e4aaf98a6fa4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,601bc20c-9d65-4376-82e0-5838b2d6a2e8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,0eab8e28-9b7e-405a-af27-249362f2458f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c9ae97d8-876b-4fe1-a7ea-a23661a975f9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,44c15474-b1db-4ebb-a49b-7304362750fa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c0981383-98b7-4e1c-8c9c-c5d23caed8c1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,4b4712a9-5bb6-4f7e-8d71-e1f6da1483dc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,54edc27f-7d64-4369-b9ee-3caeef653256 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e607d3c7-3a99-4147-8246-3b3d028fc159 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,fee26dea-0a45-438c-b361-4f819214311c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,73b990e4-9204-4c0a-b742-8b139f1788b1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,ff51ebec-9d52-4fd1-8a26-f03b6e7c6011 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,59b2b21c-5075-4c92-933b-1e2e4cf520f1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9ac277b3-4f47-4738-8722-cafff3f6e462 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cdb435d9-4825-4337-8277-9ba58a3feb67 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,60b7f020-f510-40c1-975c-54c0041a036f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,daf1a797-6e59-4beb-9923-759443b5f654 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b90444cd-d261-4418-a4fc-dec2454118e5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,03dff311-4059-4200-908d-47167961f69a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a85f6983-f030-4b3b-b9f7-d80d230c1525 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ca0ab8aa-9423-4160-a2bd-caf4fc485dee -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f45ab37e-004f-45fa-a81c-ac37b534b0e2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,400e73b4-73cd-44a8-ad9d-11353c6c9bbd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9241ec0a-f4cd-41f8-8c4b-89fc8fe68d55 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5d14afa6-393b-40fe-bff9-4f3075f87996 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,3cd77900-329d-4a64-a677-9b33f75cfd6c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,05531573-12ba-4ab4-b4e0-595827bc4fcd -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,92be276f-8bef-4581-b876-643dd423a0ab -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,645d132c-9531-45a1-a8c4-7f361d854008 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b9ced913-b362-4516-9233-fd7d8f227eaa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6572bcdd-dc99-4574-a257-327b7ed8528e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e81c2599-54a6-48d4-a775-ae796c6efcff -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8fe0bf6e-bbc3-4853-805a-a97803c53661 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5fc58d00-ca24-4c40-a403-929e2bbb326b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,9610aed9-4837-4792-84d1-6e2f6edc31c9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ff998507-84c6-457c-b8e0-1856d7ca2d2a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8364108e-6924-440e-9da5-e8b863ffe5d6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0cbf83ed-1b13-4b7c-8106-277e39756141 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,63d1712a-af2c-4fab-b391-ce5562a8e3ef -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,bd854a22-2f09-4d15-94bd-4b1dccdf3d95 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,985bf279-3ef2-4c44-bd4c-cb3d075e8347 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5796f65e-8f3b-4ff4-8fac-0f750c18f00e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,966a2e85-bc0b-4589-abd3-7bc801a066ba -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,06acf29c-392f-4897-9eea-20d17b4ced8b -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d7ad60e6-963c-415f-b9b4-bb4221051a61 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,a4325903-91da-4a51-a064-3573ce7c4024 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,1b1af1df-aa47-47f3-a8ad-6e7383f30362 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,7f42c048-9a5e-4ea8-afb4-c495e1a7fbd9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,50.85666666666666,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,4d0d3434-71d2-46d8-aca7-eba47110dbed -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e6d83ebc-6559-40a7-8971-4d2ac3aafdb2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8d094298-b5fd-4888-96cc-37e8bd51d198 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,afb98a2b-de12-4c08-a458-2a554eb1291a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c65c56e5-d382-49b8-a2bd-2c7f7a088225 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e5969961-4919-451f-9b42-f34faf26d2b6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bd24462e-5f49-48bd-bc01-a8a948c3dc5a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c403010c-ab45-4684-adea-f4c7235b7f9d -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,19469644-0504-4928-b322-d5f53faf94a6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f72b2743-1b91-4cdc-8363-168406f834de -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,01cb1ed9-6056-4b30-89d3-bedb4e898a74 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,da5338a0-260b-462f-9aa0-293649b36dc9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0943c751-483c-4ea3-ba00-83b139b896e3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a66d53b4-17d0-4011-a0cc-34f2ccbb5cdc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bc292540-049e-462a-a30f-63422e30660a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,299f2da5-eaf6-4ea9-918f-1a5ff405d362 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7270b248-77ea-4b6c-9eb3-dcf18611a694 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6c8bdc12-35a9-42f0-9b38-62519756823e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a7127c77-3a08-49a4-b34a-e9b13224c7e9 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,20f865d4-0dca-4941-8718-32d418a4aaa2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7161654e-3f48-4737-b7d3-eaec26a8e2be -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5398ec2a-dde8-4892-b06f-34a0c1f3aa45 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c9c50544-38bb-4371-98dc-a8b05a2403fc -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8cd0377e-93e9-4bca-8f3a-4c817752ae45 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4d14b4ca-4cbe-4aa5-bdca-0c856b81266e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0de4a4b1-8f33-4e4f-ad25-9b190b5f6787 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d68047a9-3ca8-4c33-a79d-cdc10e2a8f4c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d843cf71-9d92-48a0-9ec0-761f0478af32 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,826f2082-460d-447e-814c-1b9761364216 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d5c3dedb-c22d-4dc8-9b97-cb84e7204a4e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4482cf3a-bc27-4161-828f-534d15a842ac -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e4a7e23e-e919-4fac-8f47-8dc8db66a702 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c997459d-cbca-40cb-9977-a6710453fe83 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,af5a2407-ada6-4dc8-86ba-c06a4f1d2d9e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,86df2777-3f7c-4b88-a89d-3eb614148531 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8e9e52ae-9ead-4387-a3ae-5375053e4201 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8858ad46-8761-4e1c-b936-3321b5681bb4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,d823ce71-c3d0-48b5-bc21-75d1381be4c5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,a2f23345-06cb-432f-83f1-86adbcb8d22f -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,a033cb8a-531b-410d-bd5c-c697aa4c4fe6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,ecf1443c-3ffb-42b8-a228-76a1e5c2ad13 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8957e0f1-95ba-4062-81e5-cfde4f364ecb -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8e68c493-b91a-4247-928b-ecf1a8486598 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,0b3c86e7-7418-4d31-a781-94722c915ed8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,31f56545-6833-4e9a-b7ce-2ab04783346e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,0c7e0400-9344-40f5-ac89-c0ea4feb9600 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2502baca-9fb2-481e-8579-f14c203a7e38 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,22c90e06-3d1e-43cd-be70-fcfbd75072a0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,bba1cc33-da47-40f5-8b74-c5ed180fc757 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2acdaee9-3f8d-4e27-889e-eb120e939878 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f44baab8-1468-405c-aafd-94bcadbb8a15 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b0f46a88-3b17-4524-89b4-1010824c24d1 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6fa191c1-10b9-489c-a296-becd4fb051ef -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c4f2223d-211d-478e-824a-21fd7120e6a7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,2f16a426-fff0-474b-938a-4c46963d798e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,17b18d19-699f-41d4-9596-7a26ae758dc8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8d312aa1-7fe1-4d96-8bb6-b81a30ff66a3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,768f8d92-451e-4228-a66d-e8f7e7e180a2 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,eb4d5a8e-ca39-4567-b77b-c21cd8103001 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,45488709-de41-4733-b908-a800e33df7e8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ef453f59-b8b3-4325-a2af-a71c32a3e958 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ca46b02c-721c-4784-8a55-507dc0bc9991 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,87d4da14-b6be-483e-9193-dca9d2b2eec8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,929edfa5-545a-4c05-9e11-8f650c728fd7 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,34710731-793c-4617-afe4-1d1089c61e41 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d8247ba8-a0c6-421e-b0fb-95a34ef6c23e -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f3bc8170-2b99-4772-9d74-cc078c8275a6 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ed19f876-e86a-48b9-855a-a255e3e99a08 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e09470f3-789c-403b-98f9-59ca8571f236 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a674a9ba-c4cd-4431-9ab6-c0bf307f2142 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1562e65d-14c0-4de3-b6f0-7a397904e0e4 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6e8c9174-feb6-458d-b190-b99dfbe99b02 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,273f5370-22ba-4b99-80d8-b2fbccdbfd00 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,b1b12071-8634-4e97-8aa7-0857e54ca17a -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f741d99d-d189-4325-898b-f62c8f34b4fa -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3adedf47-847c-431f-a3c9-27b82521f609 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,02adb248-9537-4664-be13-315715153fd5 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f80b03f9-fd42-4389-a402-fb0e4c2960c0 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e3f274c6-1579-4329-8f6c-20120382c380 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e5626ab3-11fb-41bb-8331-c725ece513c3 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,b062e4a9-071c-4c08-b813-e897cf9ab4fe -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,4c6d1d78-4f01-4f0c-9dc6-d182c24d4ffe -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5cac06a4-0775-484e-9e59-5612e8f492e8 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8897f5bd-c5b0-49d0-b86a-71e564f1d501 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0938f7f2-30c5-4c32-9362-40cda17b5495 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8f1acb1e-eb10-461d-9620-609bd2dbc192 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,b9947a74-1fd3-4fac-92c4-54dae1e87901 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,a6798aad-3a33-4781-9551-c15ac92d5c5c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,07ca0ad2-5a3e-47be-b6f1-f9cfd900215c -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,2c4ab0f4-68ae-49dc-b48a-7c52dc6fac36 -CO2,Japan,kg/TJ,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,51.00333333333333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,a232ab9d-048e-414d-83e1-5b05d84e5aae -CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,96430.0,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8242a595-cfc8-4c37-8290-2125fe61c597 -CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,96430.0,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,5c85bb4a-487b-4e8e-b3ba-ae5e07749fb7 -CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,96430.0,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,5a2d3cf6-afc1-49e5-a698-e51aabaddad9 -CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,93500.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,97344001-9270-4ecb-a515-c8005b0a8cd8 -CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,93500.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,2e7552dc-4cc9-4fd3-b9f6-dc525fe25e35 -CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,93500.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,e7ee2c14-73f4-480c-8f20-8f2d01cce204 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b2d3054a-4f8b-47d7-b2fb-c7b60f797c3a -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9ac5b0cd-22a4-4091-965f-92379b898751 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0c8595a4-8ee4-4297-96d7-7f9cbcb7c306 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f9a80a05-62a5-468a-8a19-071fd1fecdb1 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e9e076e4-c850-4c45-a369-5bda530cf4ca -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d70d6e3f-b720-44e1-befe-051c1773a322 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,22c4f296-a4e3-46e2-9fe5-fb39aab715b1 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7a662e18-9576-436e-b21f-b94af3f2b4b0 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2f471e8b-3ceb-4de1-9f7c-b03165f06eb3 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0cfddac3-e05a-4975-8e7f-9c876b995935 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2cf78355-cf79-40d9-9a5d-e0d09d85a80a -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f7f3d8d8-f53d-423b-894b-0027f62ef117 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,59087bbd-75c1-4f95-8a7a-fdfb2c537c75 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b1005701-747d-485f-89ac-1ae9628837a9 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0fa877c6-740d-4cf9-900c-22207e73ae97 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,feff931f-a357-46cb-9e7c-01436e9e043c -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,544057ef-5154-452a-a53c-9b790eedd776 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cac9f1b0-f537-4409-aebc-4580519d24de -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,36218b9b-169d-4a11-be9d-ea56f4b6238c -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4b8db99f-5c2f-40ba-8cb8-09742f0f1c1e -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1107f20c-227f-44f7-91b4-64aad01b5e5d -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,22705bf6-0b67-43a8-9ec3-557f23abccea -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,88314621-05d7-49c1-bf9c-c77469db722b -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,21ea5dc5-baeb-4b80-a73b-6d5a2e363e1c -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,226345ef-5fd8-459a-a088-0707999238d6 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,fd8885d9-155c-43e5-b081-8b1028660a18 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ce2f6e65-da4c-4e4a-9e85-68fef99f9876 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,46fe0b4f-3511-4e21-8073-2fc138f19c98 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a3121431-753d-41df-818c-9e3fee0d9f80 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,92f9ad68-1052-4440-8a13-d644bd6ad8db -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,12e0ad3e-30e8-4bf5-b032-b7cd392873be -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5d950b0d-f1bc-4ee5-a917-f2514e35b6d0 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bc2bd4f0-05b8-44e5-b0aa-f0e075fac8ab -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,39cb325a-ba43-4e96-9c3b-2db00ab87cb0 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8efdd68a-d2b0-4565-a685-8043b5e2f088 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,027083d8-fa81-4ea8-8357-d98da754b778 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,4aa74af2-d34b-406b-9111-dccc65f9f77a -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,595b5727-2e73-45b4-9c56-0508a2f515ca -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,a2b00eeb-6f8a-4371-80cd-bc3015c53ba8 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8f4607b1-7e8d-40dc-8462-0debd21a902c -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,db37233c-75aa-4322-88c9-7fd3ec0ba860 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6f42b9f7-ecc3-429a-a121-112d9981b92d -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6c2f687e-5fdd-4c37-b206-4be548f2d16a -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,d7920164-b0a7-4533-b81e-d863c4a473e1 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b6f2d027-ecd4-4fb1-ac72-91721fb4e3b7 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,7e2cb3d5-ee25-43bf-b9c6-75a700916333 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,ede716f3-ebcd-4e9b-8d29-e874256aaecf -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,eaaddf39-f696-437d-84f2-86d2c70aa32d -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,dc10a0cb-60da-46be-a529-aaa7a438466b -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,004c1636-9552-4a94-aa20-334f035eb4bf -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,bc5ab051-b727-49f0-9f57-d1108f7e3ef2 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3c48a8fc-418e-4691-ad35-89742ad8a5c9 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,938e0671-5f9a-4690-bd9f-14234313b9bb -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3a076c7e-1f58-48ad-8989-00bb4c7bd775 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0e68cb47-1390-403a-a4e5-6049bdb88d5e -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,64195b25-4f3d-4401-b44c-e2d311ca1843 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a175a3f6-50a9-4d4b-927d-73f46658f346 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f049c530-ba65-4de2-b87a-a41afeb9428a -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6727de76-ab75-4224-90f3-a892462c58de -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b20232ab-b3c9-4145-8c09-f333e2158baa -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e530c26a-0713-43e7-bb27-a85289fee5dd -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,2f541df0-7497-409d-9544-c972985340f9 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fa6f935d-b2d8-46e8-a4ba-54c1fc8a7ce0 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,538e9dd0-9c29-475d-9533-5d730f10a425 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0b6b8aa0-050c-40c0-bc41-d3867cfc60b4 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,dff4bf4b-8396-48cc-8f9b-a203b67c11e5 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6fe92877-6575-49a7-9970-d11c24158483 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,79c54514-71e1-495a-84e1-264b9b6bc943 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,3448c318-2253-45fd-9a7c-35be89e0636a -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5175188d-5b07-4cab-be7b-d5a9a05818e4 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,48333b48-cda6-4232-a36c-de44768b476f -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6b25ce2b-2ba9-4c06-9338-a262e83a06f5 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,b496aeab-5c15-4a3b-be01-076542303870 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,fdf5c035-be81-4db3-8f1d-f5370a9e9858 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,9192bd4d-1761-40f2-bf6e-7cdcff6b0ea2 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,7cfbd69f-7291-4d94-bba5-5f94e36b4dc5 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,c9acb0c9-4b7c-463b-aabd-1e53aa591f43 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0c2c44c7-a072-4848-8122-be334af1500a -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,bd27a2d7-3cf9-4768-accb-76d3fb033106 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,66ee183f-5dd6-4a53-9178-89d8df5eb581 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e10a8443-4c25-4bd0-92a2-0b2f36ead9b3 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,85d4e9b5-399c-45ca-b762-ecdb22a5410f -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,56240c5f-9a3f-43d8-ab8e-27c92bd7c3a2 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6255b9d0-90ec-4bd2-85e9-15e63a1ad0ab -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f2cbef52-e014-4111-b3fd-74d2b5cde686 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,a37d8148-a9c5-4a89-bee2-cbad433b4501 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d0755004-e5e5-4116-bb18-28704e95533b -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ed531303-474b-4c18-a1cb-c003c4301b66 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ebd86809-8da6-4214-aac8-ae5912764279 -CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f5508a2e-700b-493c-a49e-2ed1cb93f310 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0a1c657c-3b7f-4abc-8900-3d7a90b10097 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,83c41530-3605-4a01-b0f1-80a9ca00a73d -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,eede98a9-bc7b-4ff2-b7f2-76e4be140a76 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9abb6bfe-8278-4ba5-8bb0-29be3c73619c -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,08081e2c-dc03-4bfc-bf1c-42f94066724b -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f752a996-5bb2-4303-b3b6-97d503423e2c -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0b7d8f7d-71f1-4860-b0c8-926420d348a2 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6fa2cb5f-e0e0-4c75-83d5-27fa5f059d48 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,26e3b81f-a905-4d6c-aa96-712ab312f408 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6f7be35c-b545-41a4-affb-971d7d584fe7 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4765678f-84b8-4dfc-8fc3-516c86b769da -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,876b407a-dee6-49e6-b7e3-7f3cd6d94731 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c5cdb0e8-3f92-49ae-b4f3-2d985750d44b -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0b232e5a-dc0b-4214-b59e-438d6d1eb318 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,68f843c0-1c47-44cc-9a82-26235ebc1da5 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3e7c1004-8fd6-4836-94fd-78ce7976ac70 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bacc8634-d315-4cba-8a1f-c38273713d68 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d50622d0-26de-435d-ab02-e1822b461ec5 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,08add260-c7d5-45ff-97ee-57a2f5d59e96 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ac8228a3-8a73-435b-9b50-79c8ca04134d -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b0bf5a97-cdd7-4ad9-9cd6-d8b7fdd1ec9a -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1396a92a-bf8a-4a6b-88b2-3c2b13060685 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,794c7ac3-b4f0-46df-9c2e-1a2844b8b799 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7eb684e3-bea3-4e7b-b22e-ec71da135cbd -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bd63230a-5c09-4253-82d3-cf9fa673e4f9 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,25833262-610b-4702-bd5b-1a513d702600 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5f782777-3266-43a3-9b38-6647a399bc28 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,59a6fed7-d493-4b6c-8b17-0b5221c7fcc2 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ffc02783-9684-4c69-a140-1030eda0bcea -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d419abb8-cdfd-4cfd-982b-6290d7b53f50 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3681d350-48b7-4249-934d-41c52e39fac5 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f88754fe-b893-43ee-a1d7-477e4c8cc7da -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7e788000-50d6-44cb-acd2-9e1d2106b0dd -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,31571e84-1d55-4dc7-aa72-af03783d3f32 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b7dfb36f-097a-42e2-96d6-1109fe1ba17b -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,13f8d9f5-084e-425f-8488-378191b01e60 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e7d40744-55c5-4439-8b75-4c6fec26d87f -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,fb05349d-f21e-4428-8078-2e020aa8fb86 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8836a9aa-6f6e-46ea-9828-87ae859fe042 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,547e211c-968e-46ef-8303-c557a9dfbd59 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1af9dd5d-686b-40b0-b3c7-cebba0d9c87a -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,7c60db1a-f96d-42a4-8c4e-272b4894fc4d -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f421fbcf-2634-4362-a25a-87e28d01c2c2 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,af43e686-772d-4c0f-b376-1f135d81c03b -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e9b78ce3-28cf-4907-9fcb-73efae8c62fd -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,66b587d7-2f31-47e3-b275-c85650bb272f -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,499bffdf-9092-42d4-bde9-f0707288e1a3 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,eb360edf-502d-4297-9ce4-f11be3a38b82 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,adbee5b4-f402-41bc-bd6f-c21dd1e25ecf -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,02a0cd3a-db83-472e-887d-b5263953c4f7 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,03b88a31-22ae-4356-bb67-8656e2419efc -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ffb6826-68f4-40da-9ff8-96e322f0b153 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,0ed2ed8f-7d2d-4c59-8912-b3e25e2091a2 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,7d7353ed-437b-4650-bcc7-679f96242c75 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,49ce08ea-ee58-43ad-8c4a-91bd6e0070f1 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b3427fef-dc89-4edc-82f1-69ed23ea8ce4 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d93c5c7a-5810-4c27-81a1-d0901dd0364c -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,2d13ef66-7c7b-4575-8363-2d2afe1cfe44 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4d8c0d8e-0cad-47d0-b9bf-b5d43028cc27 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f3b75be3-27ec-4a64-b6f5-f4e6803d9ba9 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1ab6334a-af23-455a-829f-fd3ebed04466 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8be8e89f-e538-4b95-871f-aa3a4ec2c69f -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b127f01b-dd5b-4b6a-9e47-8634ccf5fb5b -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8847dd3e-1e59-4c9b-8711-087a65f4c380 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,74998911-2c0d-421d-9bb6-ec9013c76329 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,73585fdc-816a-4783-b17c-4803269ae052 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7137c823-6c7a-4faa-b692-db42103c2d68 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9360888a-6ab5-4f8c-a673-081bcd7cca13 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f4fb248f-d620-4e2a-8352-5ad50395123c -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6027355b-04df-4612-908a-6db988d3e41c -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,50d8f0c3-d76b-4f4f-8192-735398ad6c08 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,bb359327-2a51-4394-bfd5-e8fcc9172f57 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d22b4018-dde2-4979-97f6-301a5d9a49be -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,94508e6e-76c8-487c-8652-fe32eb914047 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,686d4cd1-84f6-4dc8-87f0-7bf282e5f98c -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,2bb49454-0d43-47ac-8908-96396f77e208 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,c349a072-2153-47e3-9796-5461331f8938 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,21a7c9dd-5b68-4eb9-bdc1-a12fc6e66241 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5baec719-e7fa-4a47-bbfc-0e0d76b3c810 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,dadae4ca-12c6-4dc1-8579-5554048a30c0 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,dc4d6432-a273-40c4-8a66-227e63ef0e99 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,58881111-b419-4a4d-9245-334f6bd8cbb3 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d77b350c-6c41-49e4-a7e4-a3c680a869b6 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,b1a90a80-26fb-4d5f-8cd9-74e7d5255b17 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,848a780e-ba5d-44a9-a9aa-8e795145ab7e -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,2f76808d-07b6-4469-871f-d797d1cdf8f7 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ad5c381c-f4ac-4cba-9d70-f6ea5d88725b -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8271a042-347e-4793-b6b8-a9325f423728 -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,cfb1d5f8-5909-4282-9068-b5c3aad0f87f -CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,270a0b26-65ef-44b3-8ed8-201c417df775 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3bb8b053-f336-402e-8537-96a0bd25cc04 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5a540e98-6fca-41be-8e88-b4c74cbab00a -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,30470f35-1f04-4dbd-b05e-0c773485c9ed -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8841fcb4-368a-4722-83db-bc05a1ebb466 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5d2538a5-03b4-4cc2-8aa6-b04ebd068e3a -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d46ce1cf-1282-4b25-875d-4c85653697c0 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,df61a533-8eca-47bb-970c-01e178071b7f -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,32630813-43ae-4875-be52-b9b2af64ddd0 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ec953561-c2b3-45d3-8cd9-bdcc58d16ce9 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c6612172-b246-4c42-8b53-14f19cb83885 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7c2d1043-0510-4bc8-bd6d-463b7c6688a6 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,297ccf5c-2e39-48eb-849f-c2173fdec346 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6f32d0ff-1a20-401f-b3a7-1b9374ff05b0 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,686f225d-cbb2-43ad-9701-c4240f57d091 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,dfa8f2c1-80a8-4392-94a9-0676186fc3b1 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a5be72fd-8302-4162-a813-8cc718b0c9d3 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,80ba38a4-9497-4e0f-9f4b-bc715d2b6ec3 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d6e36d35-eee8-49b6-9c9a-85c7e4e45c44 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac560b6-76fe-47d4-89a7-8027396af5f5 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cb825db1-0134-417f-a43f-cf5982a4f33d -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6e9a71d5-ded4-4109-bc28-8ac6ba1d329e -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,234d4f0e-4920-4e37-b5a2-41811ad9293b -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a59c48e8-56d4-4586-9be8-e079aa8d16a4 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,dd03b871-3fb9-46db-b8cd-577c4e09d10d -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1db0503c-3c52-4111-bc33-f76a6cf69e79 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4e861a98-5abb-4a11-9d01-1112c75b1a07 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e354ac31-aafe-469b-845c-619d5450e324 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8bb45ebd-65c3-46e0-b89f-b205c4aefca7 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a7283b59-214c-42b6-a610-ee64e9cc8065 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,710c9ba6-68d9-4adb-9016-de0d29af16e2 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b42bbdc3-936c-4ada-ba5b-b73dfd7dfe59 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7e27625c-ec42-43bf-9f65-d9e905053995 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2ae40105-40a8-4e35-9214-97ac38028129 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d2659c3f-6261-48e7-912c-6d823d048da5 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e4794ed9-8426-4344-a239-f593bc463c08 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,fde4f200-6d20-452c-a483-299981e57369 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b9a21b34-1153-485c-b739-7673b5d58b63 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e325a1f3-d66b-433d-8e8e-0beaf3c5e45e -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6c1a4e6e-5e46-4851-bd42-feffdbe44b8e -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,689d1f81-9912-4a8f-b524-f3ea25a8b552 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,cc95e8ad-8f03-4007-9f36-12021daace4e -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,49264cdf-fd57-450d-94b7-3d8cd2bcdf13 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c23c06fc-8bfe-4189-a795-01e43f177d57 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1ed5e50d-ed3f-4a54-8d44-a3be0bb28411 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,22e3f9fd-bdf9-494f-806c-7bc587efee74 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,09eb5af7-47b5-473e-a314-3380b9b9030e -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f983fff6-21df-4ae0-be66-efcdf005e3cd -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,5af7ee86-5a08-421b-8a31-8deb467c9667 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e2bff4c5-8c85-411c-9df3-5e61a4f9569b -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,618b67c9-4eb3-4cda-8fc2-a18439f18e72 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,4b3d72af-19da-4448-bea4-0c1458a701bb -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,dc53e173-0b6d-4767-ad19-05e096eab91e -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6c95f2c7-e46f-4ed3-ab31-443af8ebba5d -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1b30d057-3bf4-4a19-86af-0859171f978c -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a20d7baa-6b3d-495e-a375-b3fa576757f5 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,dfa09a86-1b7f-4109-8709-1211a3186315 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8e1c0d99-5e35-4b29-a044-58bca6fd815f -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4d21f44e-9bcf-4967-ae64-e6a5fa6e9937 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7f2b9d50-4d39-4228-af8f-3b8dea122ebd -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,411234e2-7054-4ed3-ae48-4e5ab19fa349 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f56a6706-cfa4-4cbd-9410-5347c9b9c682 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fe8ee1a8-60dc-46d0-815a-18053972e3f1 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a2c2f532-365a-4f0e-9384-ebdab233aa4c -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f9fed204-0480-4769-bd02-d8653ed016a7 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6b0228ae-e46d-4c66-9b5f-56fe58e11fe2 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0d848257-dfc6-4bc1-896b-a83a79fc13b7 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,aa6bbabb-a513-4693-b801-bc22130a94b3 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,11b086e4-a070-48bd-8d85-2f64c812806e -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c9f368fa-5869-425f-af85-b9f2bbf8b442 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1627262d-6166-448b-8be5-d87a6fae88f1 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a5ee1be6-90b7-4eb5-ad3c-f1700d4f7ce1 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1a3c4cbb-c076-4ade-9898-b6a9104be39b -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,59347f89-7ecd-4f39-8a58-31736f18c7ae -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,33e634e2-35b6-407c-ade6-2335c0f061d8 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ad6521a7-97cc-4924-bad4-b32618b53d82 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,19304c23-1e2d-4c04-a453-9845b3987019 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,379f7c34-93f2-404f-8026-7bd294737704 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,fcb3e0e7-1187-46c2-8cdf-e22d9f782270 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ddfd6a97-df78-4147-8319-df1c0b6aff61 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5c820563-7ffb-4cb8-8a24-fdb162c5f9c7 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,08fcf72d-af87-40e6-a588-41b0e1644197 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d2dee2bc-25e0-4525-8943-91740a7b3840 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,aae906c9-59ab-4ad0-b44e-d053d9384497 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,679b8812-f873-4570-94e4-59a1bcb0b7ce -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,46681f23-6915-4bb9-a6de-29eb53e4bdb7 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,aa06a67f-0581-42f2-b223-6207a9afaf05 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,7d7fce7b-9f60-4228-9536-253fb8203608 -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,7d1c7908-32bc-4e08-b309-d047dfd1b89c -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0d8d1516-dfa5-4c74-9558-a0c811a8b40b -CO2,Japan,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,15.04,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,fb01f69f-00cb-42e0-b70d-2ff537503749 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,10f1568b-d31a-4ec9-84d6-2aeba238235b -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b7ef5045-e3e5-4776-b186-6cc50c45254f -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,447d94d9-a7ef-41df-8dd5-460cc42f39b6 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cbd21c53-9cb6-4bae-9717-93a0d8ca71cd -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5f8637c1-f90c-42c9-bc03-8d43a12c0c32 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3943ef44-1241-4327-a055-f5ddec249122 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b7f892e6-78d3-48ea-b0c8-e1cbe340d431 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9ba0b41a-0dbe-4d01-a390-fd46be883061 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,13835ee5-2ada-4b26-81d1-d7d3fb6e14ae -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,92a7a523-a9ac-4479-a9a5-dd9febf6e0ba -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bfa32928-783b-42b3-b60f-e1c62a928515 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fe5f3ecc-f1e2-4631-9dc8-752cd4485d5d -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,75fd226c-3027-479c-a7e0-cac6c85747c0 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8f85f882-3191-4895-bda4-1d20005dea4d -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b86006e3-96b8-44cf-ab9e-a9efeea37054 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5433a16d-d550-43ff-af63-e1433ea7e1bf -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1148a9bd-d7ad-4f71-9ef3-f856e44ebf8b -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,02bdd903-0bea-4552-b63b-e40f1898eece -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d5d0fb37-ae12-4f40-a19b-34246d931778 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,839116c9-50c3-4ef9-8a4f-31f03273120d -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6d3d75ea-0ba5-4bfc-b491-881360c7868d -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a3767dce-64ae-4cf6-aae6-96ff1c88abe9 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b2c40564-2b64-4862-b315-4922178f9135 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8f60bcef-724b-4c05-9aa1-610bffd9f183 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2169f1f2-e8b7-4bcf-a969-2e905e287d95 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a901ba11-1935-469e-bd86-72291b8da151 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bc8adef9-e61e-48c7-b40b-42331038bc41 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5102b278-70ae-42d2-b79d-06004ed16039 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8416de3b-cf96-437a-a536-1aa3879dddae -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,fcde6fdc-89cd-45e9-9836-a65286939e01 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e666a285-1ebf-42d8-877d-3a020e717167 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f68fb1be-9566-4368-b076-501f8bbe4767 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,835c8087-fb1d-47ab-b49c-dcc6f020875d -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,fbb01099-a21a-4236-b56b-2a314cd98624 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,01b52e82-96c2-4447-ac7a-7502960b7dd3 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3d3f0875-ccf9-4bbf-8375-9dde410ef774 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,0fcf7f16-6a9d-4a30-b911-515f7da3b22e -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,fc4a2528-17a6-4e4f-a177-bf6841a3afa0 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c6fd9de9-e0c6-4de5-b254-c548acadff7f -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,7fb789e5-0e6b-4940-bb6d-27de13a7c653 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,ac771948-b348-465b-ae50-0ac317924dd6 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1bd53779-c90e-4cf1-8a42-94a2d4e86ace -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,17fe7a41-fd5a-468e-ba9d-3a72ef4c3538 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,429e8825-6949-4928-a13f-1b65a3696f4b -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f22cff6d-2760-468b-81c5-bf83b063150b -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3ed96311-71b7-46e5-b696-d9eebb3d6c51 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1fb66163-986c-4e2b-8bd9-19ba20bf4e05 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6e103a36-203c-4b68-8f85-9c66f842dd06 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,9b1534c4-cbb8-4f65-a23c-8edbbbc623af -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,217ac42f-d0a7-4167-95ae-2ab6de3331d6 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,94c025d4-cfc5-49e0-b4af-c57d7f4777ce -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,cee529e8-ba23-4664-a429-bf88b7b19604 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e5f77481-0db2-4fc2-a6f7-c8346cd6f931 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,7992c39b-b2b6-451a-9719-118e63362f19 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5f8a12bb-8398-4799-9a72-e4eecf83cb9c -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,27f07599-17ca-42f0-a248-0bb7e02bd258 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fbfd2cc8-f227-4506-8754-132b0b40ec1c -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e83e5d9f-2476-41ba-94d9-29158b81ff51 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,477d6e84-90ae-4d7c-8fc8-a807eb94efd7 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,73843800-7746-46ab-92bd-53f2ed1a7cde -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,61562e27-059b-4f1e-84ef-bd275fa11a0d -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c37b1160-329b-4d2e-a5e1-f379e8385765 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8d55e3c8-57bd-4d9e-9d1b-b479f6a8dd39 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8a2f91a4-bd95-4592-85d0-2ea5c8165dfb -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,893f6666-624d-4c6b-8d95-da22763f11c8 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ffd2b01c-2628-4eb4-8500-a37d2bc59403 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,60668f3a-ade3-4da5-b64a-8078f9bf732f -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,3c946145-7b05-400e-9355-e44ea1ed0385 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0e0dbd58-2b62-4658-89f8-e5402ef8b499 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,40bd0341-da49-4a9a-aee8-1d6f23c32977 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b32cf478-d62c-401e-a120-fb6ead3e69b5 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ea690bb3-cd5b-44c7-88f5-c0972e6652b8 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,fddce2ab-4854-4288-979d-b90861a5f863 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e0c778f7-7306-46e2-a1a5-bb3ccda44359 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,2b3a948e-8263-4a5f-a9e1-f7e66c96cc10 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,501ad9c1-3b90-4052-945a-c83296ab83ba -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e9bececb-ec1a-4fc6-9068-729530e3d3eb -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,27142889-9ae3-4a5c-902f-c8a56b620a77 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,4502e87d-a501-450a-bbdb-6da07bf96d85 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,c32674e9-9638-41f8-92b2-5bbe4a0333dc -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,80b0a545-6b43-4afb-ab8c-c2e153f89ff3 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,273d87b0-d558-45b7-a351-ec2e61a8ef01 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0647f620-39ae-42ff-882b-92853be1eea1 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6cbf5cb5-0140-4c8d-a2cc-04bc84c63f30 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5d55329f-1521-43b3-be8c-a1e63fa7c4a9 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d88b23cb-5651-4942-ae40-2716c8d4cf70 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ed3e9f32-9855-4f07-b88a-7fe6a5ac779b -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,52abcee1-f162-44a3-b658-931ecb81fa40 -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d4756ecf-4a30-4f96-b140-6eb89d45dd9b -CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,799c4d9e-886b-4992-8bde-5241f726d406 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d000adf9-0974-4380-8d07-d2fa2a162514 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5b8d5385-4360-46eb-9def-005ae6bed81a -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bc77859d-c184-4429-892d-d5d8df3b9a08 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ef2adc89-e49c-4aa3-875d-6fc1732b6809 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,574f9aca-3dba-48dd-832b-875e2ee85236 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,74f7abcd-c772-4738-bd04-2eea5372754c -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,852fc013-fc22-4124-af70-a30faa8aafb2 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,aa535ab4-4d4c-4fe5-93ba-53f027d4ebba -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,944086c0-d507-495a-b93d-c23233e76656 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4dde392a-8a08-45a6-8927-166e63a6bdd1 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2f120a16-fe4c-487b-9954-e000a004b8e5 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,00254155-db67-4a8a-ae64-f7b12c2810e4 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4c0eb0be-c78d-42ea-b9ac-b2e7b7aadc76 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cd68467e-77d5-4e2f-9d17-90afed043c69 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9babace1-6385-4be7-8d02-928ed26a5f43 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1fcaf973-60b5-4436-b354-6ab2826b3416 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,39167e84-603a-49bb-b1d7-d118a0d46ccf -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1f41f4b8-74bc-4700-b2d0-f78954c18c3f -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,748aa118-5038-4cef-b8a6-67b737f12f3e -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,13129517-3691-4d04-a74e-1c79ba8b4bd5 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,88c2c1b5-8e42-478d-b276-6a72b8d79f5b -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b32a587e-4fc4-4bae-b10e-44958be39468 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,466ac0aa-c763-4dbf-ac6f-addbe251a3d2 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e6c61292-67ff-4e5c-9c17-1086c33f9442 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,989ae7da-fe0c-43ef-828e-e91326301128 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4a226f10-e7d5-44f2-ac8f-9d06261b3b00 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a9d89588-8302-4c11-96f1-1710b1c217b3 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4cb485b5-c39e-4466-b828-37acc3181209 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0f48cfed-9773-4813-a41c-d36b931e4c3d -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,dfab254b-8199-4f76-8756-dad660ba5368 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7052b433-d3be-435d-b127-93363c8e69e8 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,463eb644-be13-41d3-822f-d2189a753af3 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ac195c90-8b0c-4aed-8519-112a958c5b01 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ede7e392-3e8f-4a83-b42c-2455664f87e7 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2d43ef29-e84a-44f6-a9c0-2d8c6c5b423a -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,fa89091a-4ae2-42f9-9619-49e50bfcaf25 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,4f1c6eab-7497-4665-bd13-b4af043fc972 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,55706a54-1981-4116-a009-4b24c0c41eb7 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,310c5149-b65d-47b6-87d2-43293c59d6e1 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,35355859-785a-4c7e-a5ab-3fda4f2a68be -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,01c574e9-1487-4550-a315-7d18448a2a23 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6d0d1c62-cc95-407e-af3e-f3103cf61f93 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,d102aa26-1797-4872-b671-4c4844320db9 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8c1e86bf-4ae9-4213-82bd-a136b0b1d5e1 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6ac264c6-ae99-4360-a8ce-f5b5960ee9ad -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,cedd14fb-4f3f-4769-bde3-c4924e7ba549 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,9ed2ca74-21e3-451f-91e5-71433f4b281f -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b28978b4-2126-4073-9782-406a5089bda7 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,a7b89845-ef84-407c-a44e-0937facb5fb3 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8f683c85-f8fd-440a-9bfb-e0a2075b847f -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,148b2894-09ed-4857-84c9-664453e002fe -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b9e6ab79-8f8e-4ade-83db-37437219362b -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,4f61267f-e0b8-41ee-a7db-76f09f3a9f2c -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,72eae607-4722-4fd9-8d5e-9bd42c860ba1 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,73c59e49-3de0-468e-a765-6b67779a0003 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8e605279-ca7b-45e4-a7a3-8998fdf3ab41 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,134356e7-2809-42bb-bf7b-f0159c7c4740 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,891eeede-7d87-4d5d-b90c-91b94798a586 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d839ef39-a338-4218-ab53-de3a6f7a225f -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6bb26b08-c9b0-485f-9506-e5bfe8e602af -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,96dee70c-8a38-4ed1-88ac-b1189428b37b -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f2f78464-1f9b-4300-a581-26d3285ede4d -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fb402474-d36e-46f0-b0ce-842f3a5b0384 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,97af729d-5377-422b-a405-4fbecd7891c6 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,24687bbb-5b1f-45d4-b736-04bcb8436e41 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b1020c9b-b7af-4fd4-89ae-5b99cbfe5a19 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4afcd1bd-2d44-40de-ab5e-713434248408 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e3077f78-f79d-4a23-b4c5-44de70a90664 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,daad6c41-0d42-416f-9c13-9645088a00f6 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c111cc59-6204-45af-bfbb-cf2fc909a9f5 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,eb022ccc-ed23-467c-8631-0c933179bf1c -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a4d15388-5728-4f02-ba7f-1ecb14bdcf4c -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3c6dc189-3a10-4b89-8111-c2b0d12e7890 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,417e7463-500d-4472-9d99-dd2dbac834c7 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,367ea6f7-8503-4e6a-894d-3cb492f6a0da -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,a0db9390-b39e-45d1-a42f-0f2a1bae1447 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,aa274b49-6ae4-4d43-b484-abd666eadb72 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e4eab549-cb31-4524-9cb6-831d27508edd -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e7094329-8915-48f1-8bf7-af6171149dc5 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,1cc17b43-bdca-4b33-83af-f2b4643a7be3 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d9030926-be98-4c38-b62c-b79181701e5b -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,10a051e2-4ca4-45ec-b363-c6684fe10bc5 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,b98459d6-66cd-4b1c-894d-8e994babdef3 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,c9c146f8-8b8d-48cb-b57f-825a58e1555d -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0b81e112-51a9-405a-beb1-1d067db05522 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,2dd17725-7d0e-4463-a5a0-198316e33ea5 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5e17e2a2-1f91-4e1e-bc64-19c34bfc93ee -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,70f82af2-c425-4767-8f54-dbc910b7dcf1 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,9fd856a7-7d73-493d-8162-16dbfcdc0697 -CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,51149afe-a641-4914-8653-3178ee39f0f3 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e45e0a2b-39c6-4707-9fab-2ff2e3e0b343 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c39bf0db-8b68-4f82-bf94-a5a87e06b390 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a2f1cd0e-4710-4a51-9e4d-5772fb9a895d -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d220d46a-6e39-49fe-bfe1-e2cd02218a19 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b804b42d-1613-4dda-bebf-955656fccba7 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,61f913fe-6f04-4337-88d7-275951abde11 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1162b8d4-f3a9-4170-ba77-26c7273aefd0 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a1d11030-7b35-491b-95b0-424579fc4523 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6aa55d5c-0318-4686-a4a7-da8d5268ccf5 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e43a58ab-2dcd-4f6f-8934-26821114bee4 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f7f33ac0-6130-460a-83ea-f821fc1fac90 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6fd6ff48-1299-45cd-87e7-8d3f2991beea -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6d009369-9f81-479e-b30c-6deed92526ee -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5dea41d5-3039-4053-96eb-9c8ed4ebeeda -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0d437ac5-0198-47db-a2e8-076a97bf69cb -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e7d3418d-1ecb-4d1d-92d0-ab8d977c1d70 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fa24af3c-88ce-4106-a37b-17ef328e9f94 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,08dd372f-7750-49a4-b1b4-55988f93fe42 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,002d8a28-3569-4f4c-ad2a-efd227b08973 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,73fe317f-3efc-46d9-9bcf-ff4791848a72 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,94f6695e-9c22-408f-9353-44e53b75e86e -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bd7410f5-b1d2-415f-8091-7c963a59eb84 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,74379c10-33cd-4a9c-9863-c97a704448c7 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,61bcff20-66a0-428f-b9c1-23f3566da91a -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ba78cc5-b913-4ed4-9286-3dd12d37f29d -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e21d4497-39b5-486b-afaa-f21b00bc4b26 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7bea2d7f-efe3-436e-86db-9f842d39ef52 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a91b5b57-9325-4a53-8fb2-1ac592778126 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,80e29689-833c-46a1-97a9-dedb52f576c3 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8291b64b-d7c9-4920-8065-2e60dc421d28 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a73f5d7e-ef69-4f09-8f59-de16395fc818 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a4cad2fb-0804-429b-9685-c8fa9e037623 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e865c4c9-dda1-4368-85c0-530166717c91 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,361f31d0-add0-4af7-a1a4-2e750eff13c4 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a53cb91e-1d60-4ec5-872d-37645026455c -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a76db897-b447-4dcb-9517-d6477bd78c13 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f12fc17c-1ce9-49d7-92f8-8fe5886321d7 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e7b58707-214a-4301-b749-4d6b437c3dc9 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,50ca1296-8ef9-4945-b4c8-2782e79848a4 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8b048f57-6914-41c9-963a-9d714ed7bae9 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,33ddae20-abfe-41de-b707-43cca1306f64 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,a3741998-5992-47b1-bb7a-67eb16678a69 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6bfce501-a518-41b1-905d-ae464747e4cc -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,35c86961-d8e8-4d83-aea2-c7bc51ed8348 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,768b9868-4e35-411a-a7ad-d50a4da85c0c -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,46debbee-2d1e-419b-be3b-f33e8a317c73 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,485ebd89-7f96-4646-adf1-10b7854efb1f -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,274be16a-5727-4a7b-9816-0f5a601e7bc8 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,366df59a-abde-419a-9e14-69079579dd10 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,23909812-940e-4357-87ac-36956435f464 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,fa41a3d6-eb69-443b-8577-f7d6eb57ebd6 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,734c9ce7-32c0-4d28-8706-372a912f1973 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,01335583-6810-404e-a124-6c408272cfb9 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,cc0f2ea2-6d94-4fe4-bbdc-0d363db0e661 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7a50e29a-2cd6-4c27-b668-b01862f3e9c2 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4b61282a-2dd3-4035-b40a-84d8cf72bb1f -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,dec36a37-40eb-413c-9028-3c5bf3709df8 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a0da404b-38b7-47ee-abf5-36f2794ff0b6 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,55fc58cd-81b3-4280-8d20-a55aee487858 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,dfdfdd8f-0ed5-4403-9b8f-265822efaad4 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ae2a2f39-58fa-44b9-b1c5-91bc0c9cb070 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8f5bfad5-efe9-4362-82f3-a640f47b7d6d -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c1f01a32-2f4c-4a64-8378-5021eca49aee -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9e8b6452-20d5-495c-8dd6-1e525fdeb5a0 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,72bf34ae-0912-4620-98c4-5ea35a3848d3 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,40262c69-7a5f-4cde-9b08-a00f9ea5e9d6 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,20dda63a-08a3-4678-afd5-070e836ba808 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,35d71e98-236c-44d4-84c4-e0ae7c851c2a -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,2440b316-47e0-454c-a043-b35f0e251846 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,09234127-52e2-4ab9-a049-5de792f5ef1b -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,84aa39c6-3d64-4f73-9e08-acc6777ccf68 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,66952782-30a4-42c4-a2b0-fd63e80a45c7 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,2505da91-15f8-49ab-88de-93c7ec2edc9b -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,099b6357-590a-42ae-9280-4907737b75e0 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,bacfb0b0-20e1-48c8-9e25-31341c0d9d88 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,e20032a8-8dc2-4c74-867c-511b9eff85bd -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,9312b600-a014-44a5-a5c2-7be27e40a84e -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,749630b0-6ef1-4271-91d8-6451a75b27f3 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,a0c63773-a1f6-4b4b-869b-3800a75c0223 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0fe6ded4-c20d-4745-ac53-601650a79d77 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,29bb58f8-2a93-482e-a03b-0b2afa06ef2c -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ccb266d8-5dd8-465a-8217-02d86a6d1118 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0bbd9efd-7d2e-4b7b-af1d-305b427da3d1 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,09f70627-6bed-4d83-90ee-707a6d0b68e7 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,83e258b4-652f-4f8e-84bc-16cc520644e7 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,4a576cd3-f5a7-47f1-b6fb-aec962fe91db -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f03a0509-04f6-4219-916d-d7c71738ec49 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d448f892-4c90-4586-a563-492d1339c8e5 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5d67a152-1ddc-4d6f-86f1-fb9c0b222cf3 -CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,48d4271c-1f43-4118-b729-af92d62b84fa -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,214d348c-ef48-4f32-b55a-86aa4e6d2d5f -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,84d4fef2-2c8b-41bf-b25e-4f00a84c0ba7 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ba862dc9-2d41-4d2a-94df-e28c71567701 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0d1d26ac-f9f6-494f-b2b6-70405b9fc0ef -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1689d58a-dce9-4746-8e30-7ff800ebe1fc -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,16608f61-2db7-4cd9-998c-2a594516cbfd -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7541cdcf-5241-419c-8588-50fea55613d5 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,70646111-e602-4872-bd00-ee8a75c4aef5 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,28c72d16-658a-4325-b3d8-95fd98f7c63e -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,055b73f3-80dd-4b7c-93df-4690d19b2a51 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d79f8da5-62cd-42dc-8df9-7bfc717fa6b5 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9789a263-8864-4546-a5cc-9384dfe35de8 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,57c82c34-6cd4-4393-8948-a86780e7a4f5 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8365f22d-c8fc-4225-9d33-58d4a7a4c231 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bdec62c6-3008-4ff6-beb4-c80650dde40f -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,abe2ba51-59ea-41f1-a4f4-4e2dccea27a9 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f1ddcca3-fb5e-406d-b956-9130b213e454 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9e0ecce8-9740-460f-9bc0-90352ba85087 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c6a6a663-2cb1-48e2-bd73-2886a61bfa87 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d9db65a5-833f-4e95-a6c3-8ea75876d698 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bd9cc5fb-beb1-40b6-bfbb-368ca5e7d1b2 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,49e18d54-51a0-4f89-b21f-1d0fe8ccff8d -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,dea8d645-0b15-4b9e-bc46-3e6ae83bb080 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6ea2258d-11da-467a-b539-999caa9eadfa -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f2fa20a9-0c4e-4b7b-92f5-08b956ccc5e7 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,63c16555-1688-4736-9345-e32ebff7aa88 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d72ccfc3-2e6d-4ab8-9728-5e6acd213881 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ac3c0f8d-79e6-4d03-b2a2-4ff12e12b59a -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d5c061be-fa15-41dc-bebf-6bd71ac5564e -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e52719e5-241a-4356-9b73-d423e31d2cb9 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f37485de-6775-4771-bff5-baa606018078 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,54dedea7-3b28-4332-a35c-7ec7a5b185c6 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e68ff341-cf42-4b6b-88ca-052ed66f3473 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,269a562d-9b53-4f9c-a0d5-487b860d1e05 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8c3ed442-e8a4-489f-a18f-dc872eac21c3 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ae4a4205-0ba7-4c54-b256-91f81c9a14df -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,d7304c9f-ee07-403a-8791-2c0a7ffc9a1a -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,40e9adf6-f857-4ed5-8af7-142d4331a5d8 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c786a33d-a091-4718-99fb-c1462770ad1d -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,a1d6d523-170f-4028-bfb6-65c352a92bc5 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,178647d0-ff08-4aaa-adce-e79f6d853e3e -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e0d7bef7-35aa-47c4-996c-573db6144b41 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,30c0f200-da99-48c6-a813-0907c3213d7d -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,053cee49-0625-4cd1-9a74-8d96a6dbae13 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c8084ca4-92aa-4cca-a7bd-f4fdadfe1ef1 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,c2ece58d-9c69-4316-8308-c1aa93d6cd73 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e8323650-79e6-4952-b794-24f04514b908 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b193c003-1b6b-415b-8705-762f5c1e4c40 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b8917859-b85d-4d63-876e-06785a0505ef -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3b8106b6-1b08-4087-b69b-78a739b3e815 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,37f7a884-636a-4134-af29-5eee562bf778 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,0e03db80-06cb-48e4-b088-16b5a9a44393 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,71a8d629-807b-4bf1-b291-9141b9f4e3b1 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e03c01ad-232e-4e7c-a2c9-7d2b929a8922 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,388e082e-9b29-4bb6-8e3d-0577df980914 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7757472f-2ade-4b0c-89b9-0a16eb5cf951 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c5157b96-3b01-4893-87e5-d637bfce396f -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5937f5b5-7cea-4cc9-8e0b-bd404ff2b411 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b72f9e6d-f363-4504-bb0b-818165357176 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,43832706-4146-497d-9d12-3163824484a1 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,499ade27-160e-4858-9526-c463c20118f1 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d5d4cb05-7bf0-41f5-b053-d4b145886da3 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a48acacc-be1d-4364-8411-76cd43ca3325 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9f0f35de-4c04-49f8-a62a-e631071d2955 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d1cc4c8e-dd84-4681-9e13-4d062fc60cf3 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,40250723-2f94-4216-b2b3-d7a95f4017ad -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c0caf890-b166-4f2b-a2d9-22c6ea133da6 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1bea7bf7-db68-468f-8f4f-8b10df081b26 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ac66bb94-beb5-4675-a45c-338b4f45fc5f -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cfecb32f-020f-44fd-9dc4-b2ef4d08f7e4 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e2e6117c-a4d3-4a9f-b18d-e09fed7d70b2 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,828242bc-14bd-481b-95dd-277814c9d466 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,65faa900-975f-4f71-8258-cd508401cebd -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f660e74b-323e-4179-8106-55d9dc110efc -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,08045159-4261-4549-9eec-df44d68df6fd -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,55bc59e1-9802-4858-9ae5-2f308b802e9d -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,10e9d27f-2d38-434a-9a43-132053e0f342 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,55375160-287d-4ad4-ae12-71a2c2043b49 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8753ebe3-7d5b-4c2e-9305-329f6907a756 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0f4dfed5-993b-407f-8326-3afcca9c9246 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,5611d047-55b4-42c2-a01b-fc94ddec0d08 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f9da4a11-790a-4760-99d8-ea897b34c45c -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,ab23a652-69d6-424a-af52-dd9a8df1c212 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6a87e130-97d9-443b-a16e-8a09db5af985 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,9c71042a-e858-4345-8988-80da1f2ce797 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,596428f7-fc1a-4841-8f30-99a6d7483d39 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,89cec0cb-1f09-4cd6-90e2-246b9a5e4830 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,c4f6827c-fe63-4406-b9d9-23c6fcd318b6 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f553e2bc-f6ef-46ac-b4b7-42224c9fda06 -CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3018bb68-1ea7-4a65-8179-9cb65b48ffcf -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,19f869d2-9275-4049-a1d1-183d9f8fea5c -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5733f13b-19b9-4e62-a72f-11fea95b0b43 -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6094d694-8189-443e-952e-7f74e8dd64c3 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d489f9c0-c7a6-413b-bccb-2744a0d2510e -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d5df88aa-b48b-42bf-bfa0-8d9f1a05a9c9 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,80efcdb3-5f87-478a-a6ac-c9371848b71f -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,027cc5d1-3bfd-45b1-8878-3c1599871fe6 -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,282dbf09-b171-43c9-9bc9-321ebfea797b -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,dc828e68-ba7c-467c-9b5a-7e783b8852fc -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0dd20c72-6d18-4e9d-869e-5a8f76c418bc -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,59ccd30e-e201-4ea7-bcaa-2bfc4b8b3b7e -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0499edce-1900-4409-9465-3194dace72a0 -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,98eddd7d-4694-47c8-923e-7eb5a29535e9 -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,df8a0484-caba-4907-b232-0f8785935124 -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cec1a170-5d47-4164-8669-9fa606c0b24f -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,de3bba63-474c-44e5-b1c4-7bc3482b895f -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4b119e87-9db5-4ed9-8af2-f4609e9bfce1 -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a6a2df9c-5554-49ce-a516-7501e38cd154 -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,24766388-3025-433f-b797-9041da0f1835 -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,378a0b1c-e708-4548-8809-48714ce8089c -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ea60639c-9a36-4803-9571-5f606b927404 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e44086b0-f4c8-4f1a-9831-eb1e32aef00b -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ed384df5-0038-4df2-8958-3ab57523d815 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c13d7a05-72a1-4b6e-b454-901fe431bfad -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e005dece-34bc-47de-a821-4844af63aadb -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d40f1972-4625-429d-acd1-c4c27e90fed8 -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1d8728c5-81c8-48b7-a3e8-76e6d9e63692 -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,958d9239-998e-4271-ac5a-3201a845f08e -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e5390f5f-7ab4-4bfa-a71d-1e22ac561cbd -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6f0e4327-4ab8-4299-93df-82148048f332 -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,41bd43cc-2c54-468f-9b3c-4e7680db3c85 -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e646f537-c99d-4e2a-9e78-0ed770c056df -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0627e899-58bf-4e06-9baf-ab5253b1ff81 -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,17447850-2cb7-4fb8-bb78-bcc4bcef47c5 -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cec334c9-7ded-4d66-b2bf-81c5e1b3ff26 -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,52a4092d-8437-48bc-8692-8e27737fbade -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1d8cd077-0a15-4cc8-960c-4437c42d2333 -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,93d2f483-3e36-4f40-b99e-38c9f1610eda -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3a1385d2-3231-4a37-90c1-8956b783ff19 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,6b0a3954-be84-476e-a13d-da1d0aff6d63 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,04b8188f-c1ad-4ef8-b23e-424b2f95a3fd -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,797c3782-920a-44a3-afd6-a7400469bbc3 -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b76dfe6d-e476-469c-9eff-1fcfe269a3ae -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,00e2029e-9c3c-44b5-8f7a-c1543ae3e34e -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,e8a9de27-dc7c-4fb1-9b80-39713a572d9d -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,5ae0078b-069c-46ae-ad37-323c8d8327cd -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f2cdbd2b-53ab-4c9a-a35e-c33ad596cebb -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,da382e9e-ad08-4852-aa7a-7e4e9612fa31 -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,1e9b1fd7-78c3-42f6-ace9-39325223e48f -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3e81d83f-eff5-4ef6-bc4d-f1137bfe72eb -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,b52cc9df-1d8d-467a-899d-67d23459295a -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,493534c9-91ec-4f10-812a-a79b319f9f9d -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,66ff0c03-74eb-4ebf-ba02-97974135a7ee -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,37d597c4-f7bd-4994-8e72-652e3a470f11 -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b1bca128-ae57-47f5-a9ca-98be4d67fbba -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,82dae83d-2d9c-4610-9a07-babc65448b5f -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0cd30b8a-d8b7-48c1-a081-4160d3ed5881 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,469b6ddd-6b9b-47f9-a53f-994494d87458 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b4e9835c-ee1c-40b0-b2ba-b2ba8f96e31e -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,50085c8b-803c-4d5a-a4fc-d7967ed167eb -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,97d9970c-13eb-453e-b4a8-87da05fd5a38 -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c61860c1-f627-4ef7-95c6-cba09e200984 -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8071d74e-d129-4481-8ef2-d60c901f6855 -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,76a570f5-25cd-4fb4-bb72-f30ad64cb6e2 -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7039c4a8-5c66-49de-aa91-543ddd83f69c -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6b5664f3-44f0-4aa0-ae7d-18182fe28e7a -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b4987960-5a13-422d-88bc-1584c43b8791 -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,84f20585-65fd-4221-8e4c-70f3aeef8e2f -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1be2f0b0-775a-488a-b063-44a5f4496bcb -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f327cdea-6a0b-4bf1-a524-c5743c49a757 -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e3cdca50-43fe-438d-8d54-908b3ea2f2d0 -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6aa569f5-09f7-4981-8496-ac83f7764c35 -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,4f60f05d-cf51-46ff-a1fa-6b874cb2f419 -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,221731f3-d839-44c9-a4ff-f9bb07ad121b -CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,371581a8-4d18-4f21-a64a-f9ea3e1f9acf -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0912295e-c6f5-4e73-b58e-1279f7b138bb -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,0bf5dd15-e630-469a-bd82-ea5425083ab9 -CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,fa4c3155-d7ac-4f6f-ac79-43ffe9d038f3 -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,c1f7f4cc-5440-429a-b846-7ca39b355ecc -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3ef4a849-f38f-4e22-9cad-3313a36ffbf4 -CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,316d5698-ecf4-4ae9-bc1f-d9728d5ea548 -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,6c1f2a13-4ee3-402a-8336-44700dd0fbf9 -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,d6392113-3fec-4ee0-86e3-fc3818563258 -CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,71779a4b-2362-4a09-93ba-7d4d1a9ef7d0 -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,2b63893b-b299-45d0-8830-4330dd1fd93d -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,05693edf-8db7-4d1c-825a-0b25c689a00c -CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,82f83352-bcc7-479b-8339-debdd157b3ce -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,1206aaa9-116e-416e-9901-b32340144531 -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,90dc2cfd-ec4b-4e83-bb71-92fc36875095 -CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,222bc817-38e5-417b-a77c-7cb9c7f08fe5 -CO2,South Africa,kg/TJ,,I.3.1,ZA,89500.0,fuel_combustion_consumption,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,c3fd484f-8379-43dd-ad0a-0be308090f1a -CO2,South Africa,kg/TJ,,I.3.1,ZA,89500.0,sampling_scaled_data,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,97528338-0610-416f-843b-52101bdff8eb -CO2,South Africa,kg/TJ,,I.3.1,ZA,89500.0,modeled_data,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,655c84a9-5e9f-426e-a451-90f48424f35a -CO2,South Africa,kg/TJ,,I.3.1,ZA,105800.0,fuel_combustion_consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,18e9544e-2e7d-4b03-a685-67986046f100 -CO2,South Africa,kg/TJ,,I.3.1,ZA,105800.0,sampling_scaled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,0e4046d6-e253-4304-ba1a-e5a77c5db785 -CO2,South Africa,kg/TJ,,I.3.1,ZA,105800.0,modeled_data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,4a7c14f6-aca6-4c60-853d-9b95f432b19c -CO2,South Africa,kg/TJ,,I.3.1,ZA,86300.0,fuel_combustion_consumption,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,e71f6f0a-165d-4f09-bcb2-bcfca8b37e13 -CO2,South Africa,kg/TJ,,I.3.1,ZA,86300.0,sampling_scaled_data,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,47e653d4-24ce-4413-a427-656670138081 -CO2,South Africa,kg/TJ,,I.3.1,ZA,86300.0,modeled_data,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,19146332-42f1-4490-bf6d-ff674aa125da -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0026237199999999995,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,52202103-fa45-476b-935d-97f2f853728a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0026237199999999995,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,89be54db-0ccb-4e3b-85a4-53416aa3de19 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0026237199999999995,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,a5e3e32e-0673-449a-be9f-485e238fedcd -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0026237199999999995,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,182b625e-c036-4957-a0d6-8b68b28cf2a5 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0026237199999999995,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,7f3d5713-083d-4938-b008-3c12eb915e41 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0026237199999999995,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,dd2c213b-9bf1-47cb-b7e0-013f19ac306e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0026237199999999995,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,d5fe6b4d-ea87-49fb-83a4-d61a3476decb -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0026237199999999995,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,10edf75c-da59-4918-bd51-a0eb4db67752 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0026237199999999995,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,1bbf8bc6-cc97-4450-918b-a1ac90e5c5f6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0026237199999999995,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,884eca6b-9e6b-4206-950d-dc516d6c9082 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0026237199999999995,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,c0494ad5-e08d-4ed5-bc78-937e34dd742c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0026237199999999995,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,46d8395f-18b2-4ace-87d5-f4f7bb452f23 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0026237199999999995,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,c6f5c6d5-8f20-4cdd-99cd-dc5c9d769d25 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0026237199999999995,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,85211151-82d3-4e58-b58f-1341e7d2d403 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0026237199999999995,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,959ba43f-c7f9-46b3-8f3d-d3ead3f55283 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0026237199999999995,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3874d4d3-fb41-419c-a23f-cc63dfff01ac -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0026237199999999995,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,ad9f4b88-5cf9-4dba-8d06-175d23e8a967 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0026237199999999995,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,70490f28-ff4f-49a6-a7e5-1c92eb790fe5 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.7318133333333336,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,4146fcf2-79f5-45ce-af41-033f231c47f5 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.7318133333333336,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,a6c15220-a1a6-4ccf-82e1-cff165128d6e -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.7318133333333336,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,acfe8bb7-8a1d-4184-957b-e30e163ddbfa -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.7318133333333336,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,9f64e666-12ec-4ee8-b6e9-5d8ab6c7b252 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.7318133333333336,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,36b8a662-aeeb-47a8-8d4a-84c17cdc34db -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.7318133333333336,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3adc67d7-b935-448b-a5bb-9052dfc6be11 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.7318133333333336,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,c13b0d07-8218-4c75-be3d-5b56d66bddd0 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.7318133333333336,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,12d8d93e-da23-472b-8044-8fe8f43be90f -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.7318133333333336,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,9c5f272a-f04d-4d61-a652-a95e2aacad8c -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.7318133333333336,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,67c31fe1-8840-4553-b86d-800c5947c279 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.7318133333333336,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,cce1d3b2-4b11-435f-b0a3-0dd7aeee6577 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.7318133333333336,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,9742722c-a3be-468d-a034-d8098ba66ceb -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.7318133333333336,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,5b11937c-38ed-44b9-94d2-046a22a69504 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.7318133333333336,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,48a2ba1e-9bc6-4eb9-bd54-482b66146cc0 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.7318133333333336,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,2478c758-b74f-42ab-9603-dc978cb04f96 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.7318133333333336,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,9bbf3a66-4222-420a-8325-cf771decb959 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.7318133333333336,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8da662e0-901c-4160-9bb9-5c9212e73d2c -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.7318133333333336,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,0b67f442-1461-4691-b1c0-2e188bffb719 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0024123,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,28e225a1-af14-4a1e-93aa-dcdfd2f95943 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0024123,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,d790db18-ab24-489f-a881-a4bded64ec1f -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0024123,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,9d58b00c-abb1-4421-a422-1e0f8ea85d18 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0024123,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0468d5ab-b190-4d86-b128-1e42a1c696e6 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0024123,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,49ad5733-745f-4023-8614-b3e5b6534391 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0024123,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,14c8d036-0d61-48e2-90e9-0d0a09931a78 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0024123,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,d235ba7e-46d6-4591-96b9-fabd6068ada2 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0024123,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0d6ff124-4134-45aa-b6af-d3918bcfd798 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0024123,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,9c68c965-c47d-4cec-8816-6f43dd7430f4 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0024123,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,82c935b6-2adf-490d-b4e8-a8fa50ce0fff -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0024123,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,43cf5a5a-3f01-4809-9edd-8037927590e7 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0024123,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0f1ab29f-2173-4ae0-b066-f94c47224f2e -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0024123,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,04c98350-79d9-4535-b0b1-1677fbb975f0 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0024123,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,fef82bcd-141d-4126-87ab-059726f4c54d -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0024123,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3be582c6-c21e-41b8-9afd-ff99799d1f67 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0024123,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,db9b82c1-5003-4f26-89a8-c7d6cbc2e4dc -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0024123,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a1ee9a78-d516-439d-9628-213061776b80 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0024123,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,fe2298f6-d017-4f30-a48a-8ba8d7988bd5 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.618935,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e6f629e8-36dc-429a-b70c-ea5bbdf7833c -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.618935,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f5b5ce98-bf5a-4f46-9bd1-b6d621bf8a47 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.618935,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,6adc287f-6279-4fde-b611-164ea154c3d4 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.618935,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,469320df-dc60-490c-aa5a-ec0690ad3f6a -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.618935,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,b5518f49-a2f2-41b3-bea3-daee5aacc5d9 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.618935,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,4833bc17-eb20-4ecf-978a-67ca69c75d57 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.618935,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,792e2803-bb25-446c-9896-86dfe17402bb -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.618935,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,ecb134ef-f65d-4ee5-9640-e1607b32af6e -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.618935,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,fcc9e4ae-1846-43ec-9465-e992b824bac9 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.618935,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,786c846d-842e-4957-9c2a-e077ad55272a -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.618935,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,a5e93673-ad93-4202-b9de-c373118430a8 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.618935,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e217d09a-2dcb-4fb6-9be3-553c74526844 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.618935,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e9a7b2bc-7b6c-40a0-879b-2a57f94f4f9c -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.618935,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,17e602c2-c28a-459b-bd53-8638a2476e53 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.618935,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,d9a886fd-8496-47b8-a9bd-4aa09b59959b -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.618935,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,37834837-2af8-41f5-88f4-92179993009f -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.618935,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,4d47a459-4c2d-4321-b18b-fa53b3d196da -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.618935,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,d455bbac-38eb-4603-a8f7-032a722636b2 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.4281949999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,d14e09ad-957d-456e-892d-b75585b1b2d9 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.4281949999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,0e7fdaf6-c165-4657-a414-225b95f25f0e -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.4281949999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,54ece0d2-39ad-4b4b-86b3-8554d962e958 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.4281949999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,5e8a3292-09c2-4ed9-bf3f-ab2ec411ae39 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.4281949999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a056f910-5c66-473f-9668-7ff995a353d8 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.4281949999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2512c0f7-badd-43bd-84e5-acfd5ddc6139 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.4281949999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,437f7994-fec9-4c94-8937-2c4311183b36 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.4281949999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,7bde5c07-cd58-4f07-9ee0-985486849283 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.4281949999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b12a6441-fb8f-476f-9693-284866fbb687 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.4281949999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,fa46c72e-f568-42b4-a0cf-b8b1d534d9b2 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.4281949999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,36286751-3e41-4860-9834-bb24d5fcf5b4 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.4281949999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,d83a0aa9-2c27-45e6-b3a2-88b8bdb9a5aa -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.4281949999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,90751905-cb61-4be4-9753-bc1ee7080bd7 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.4281949999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,5325ae12-8efe-4934-a389-2b5b1404e64c -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.4281949999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,272d16ff-6e66-4917-a010-36f4f88cd8df -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.4281949999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,840f68f1-18b7-4284-ab3e-07490eede7b0 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.4281949999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,974bc59e-97dd-475b-b013-832a58ede8e8 -CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.4281949999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,aae3c82c-a342-4357-84ba-8a0230c582f3 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.00225335,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1bce8c43-ea27-4880-85dc-0cffb7624aa2 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.00225335,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,69f87cd8-5753-4ba1-a6c7-9898f79b04e6 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.00225335,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f4ebd5db-d006-4d58-825b-b6ce7ddcef57 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.00225335,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,dba4586e-5511-4457-a725-5e74ef1e7361 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.00225335,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,def5bc33-509c-4f20-b28e-d7d398204f0b -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.00225335,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2b81a3d0-9521-4770-bbdd-ffa779299e7e -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.00225335,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,94204e48-7787-4852-830e-29cf72cae313 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.00225335,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,49a9c35a-8244-4410-a260-136c7fa0b3ea -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.00225335,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,247b3c3c-8959-46fc-ba4b-6831ad85514b -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.00225335,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,5de6bc20-fcc6-4599-8c57-f0b12b406dfb -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.00225335,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,064002f4-0fe7-4955-91f1-018fa2d2874b -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.00225335,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c1aea0b1-098a-4a12-97af-8886a867d19e -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.00225335,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,9d799b4b-5de5-4624-a526-4c7ea6ed6483 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.00225335,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,952b8c7f-deb5-49c8-b3fd-b64794e9860c -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.00225335,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,b6d66a21-1f97-4bfd-89e3-0d4c9dffc442 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.00225335,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,179cfa1d-021a-429c-bcdc-1ede45526742 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.00225335,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8a2775e6-40ed-4a47-979f-f38377bfde92 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.00225335,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,95469349-d2e1-4a84-826b-b020b90608fd -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0024028399999999994,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,b8adcee7-1ca7-4405-8108-bb58dfb9cdfa -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0024028399999999994,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ef036533-f22c-4956-b175-e74e2ed63644 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0024028399999999994,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0d9e4397-8d69-4035-871a-1147bf5fb284 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0024028399999999994,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3feb101c-945b-4220-a345-a9cc2e708462 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0024028399999999994,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,cbf473c1-e60a-4ef2-87c3-5a1b776d56a7 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0024028399999999994,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8f0f9cfc-96d5-4beb-8da1-8a5eadd41156 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0024028399999999994,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,55bbbaa1-b110-4fc2-9142-090b6caac836 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0024028399999999994,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,e877219d-be46-433f-a993-b330d2c67eb4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0024028399999999994,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f55e0e9b-9c92-4872-8701-662df4ee2007 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0024028399999999994,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,06b67340-b79e-4e52-8451-3a533bdcff75 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0024028399999999994,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,1262f7b8-4d63-40b1-a38b-0faf06358655 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0024028399999999994,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,7d4f2ed4-a21a-497a-ad9a-963e8b98c0b5 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0024028399999999994,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a85f5669-4eb6-4f3c-a536-eefb68c30b6f -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0024028399999999994,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,c37367cd-1ebe-4d75-9b53-4911383f954e -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0024028399999999994,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0497ae65-db67-4855-872b-8089f5236bc6 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0024028399999999994,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,dcadc623-ebba-4998-85ed-5514f5a555cd -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0024028399999999994,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,80d6f91d-e6a4-45c7-9703-d8d6e7f22469 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0024028399999999994,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ee132d54-e976-44a7-b201-30fae53be09f -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6086646666666664,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e0a175f3-8d6f-4394-81be-5a14a141cb24 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6086646666666664,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,793d7480-1966-4589-bab9-bef49374ee83 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6086646666666664,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,a1d27052-d11a-4651-bb08-1b4cf26f02df -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6086646666666664,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,d5876fa2-7070-4429-8fad-018fb2fb0955 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6086646666666664,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,6ac55f15-0324-4dd2-a928-64e78de2f964 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6086646666666664,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,af0396df-845d-4b88-967a-4f4dc8b50fa0 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6086646666666664,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f6430e1d-0a52-43e0-bd5c-f0d012a1160d -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6086646666666664,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,53cab776-6639-4a36-b0ae-134f701c69fe -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6086646666666664,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,86888292-48d8-48af-9108-a50ae5e3108c -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6086646666666664,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,71d22f01-8c8f-4139-b599-4d0520f01beb -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6086646666666664,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f4a9f4dc-85b1-4d66-a31f-75b676b22c5c -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6086646666666664,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,0dcf928a-f5e6-48d3-aec8-77d48da635b6 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6086646666666664,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,0f46e87c-e7c4-4dc4-aefd-29180fe98466 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6086646666666664,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,bf847517-8e11-4651-8dd3-40c9fc58f1b6 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6086646666666664,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,20ee04da-8df3-4c19-85a5-1fe7eb121fcc -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6086646666666664,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,ba8eb9f0-519b-4506-95e5-b837085efe43 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6086646666666664,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,487ca6a7-7cb2-4b75-82bb-095d234a7a72 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6086646666666664,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,59f295ed-4960-4d9a-8d68-284870eaf133 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.4186726666666662,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,cfa6fbe9-b839-4da1-b5a5-5e1a355977e8 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.4186726666666662,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b5940da2-2ac0-4b50-a3fb-59939e81469e -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.4186726666666662,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,edf74bc2-7e6b-4800-914a-10f446c22ce6 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.4186726666666662,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f1cbff7c-1c81-4881-9de3-d4302df126e4 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.4186726666666662,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,dc354f8d-61c0-44a0-950b-fb827d076a67 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.4186726666666662,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8f0caee4-1585-4bb6-8bc9-010f87fef61e -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.4186726666666662,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,50c758b2-e15a-47a2-8812-be596d61c7b9 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.4186726666666662,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,14aee757-8b1b-4f22-aca4-d4af1621d328 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.4186726666666662,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,0bc9afc5-52af-46ef-8d4d-07c6c41d11ba -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.4186726666666662,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,6eb5ade4-ab16-4ba3-9379-44eb1f5cd67a -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.4186726666666662,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,ee9986b5-a8d3-4352-b099-d637c9b8ae6d -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.4186726666666662,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3b193f6b-e32b-47da-9b8f-9416f1f8bf83 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.4186726666666662,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,53175522-4f9e-42bb-8e15-34197ec85cc4 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.4186726666666662,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,815160c4-75ad-4d1c-93bf-b5cee93336ab -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.4186726666666662,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,d547c3a3-dca0-4759-86c5-878b005c4ac6 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.4186726666666662,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2b1012e0-45f9-4a41-babf-d296c3f87127 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.4186726666666662,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,26a7059f-a392-40bf-a6c4-678fadf5bdcd -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.4186726666666662,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,26ac63d6-114c-44ff-ac12-c247df782f49 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0022445133333333332,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,37360426-39b5-420e-939d-fbd03a5268c4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0022445133333333332,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ffba6d3c-6130-4f50-b52d-84394f7077a7 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0022445133333333332,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8401cab8-3d2b-4786-a1a0-15e703e8d66e -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0022445133333333332,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a56919af-3b34-463d-a037-04ef656fe701 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0022445133333333332,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,4b8173ca-1e5c-45c7-bdb8-49019a6393bb -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0022445133333333332,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,b765e31b-eed0-4770-9aea-cb2495174a8c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0022445133333333332,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,35536d13-8236-4996-aac4-774dd657b516 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0022445133333333332,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,fee47e6c-3eef-4782-934f-e89c075120e7 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0022445133333333332,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,948159d5-d6e9-4b20-9a00-ca386f89b6cf -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0022445133333333332,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,14a88fe8-685d-4c76-bebb-728e724b3ff6 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0022445133333333332,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,fc0ed462-fa41-4ca7-b1ae-41ce459d8f3d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0022445133333333332,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e2937776-46a9-4232-a090-b90882ab8d32 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0022445133333333332,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,315cc91a-7cc7-434d-ab2a-6066779aa316 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0022445133333333332,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1ca13701-02b3-4f0d-b0de-6144da4e7b73 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0022445133333333332,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,9f62a1b6-a5a0-48ab-baf3-eb48b3048bf8 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0022445133333333332,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,19f52483-2d2f-4f63-a321-18f962c99655 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0022445133333333332,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0ecdbc84-ae3c-4878-9e25-27da8badbf6e -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0022445133333333332,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,9862aa19-f9eb-4d8a-9d8e-750cc7cef467 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,77d01f68-d8a2-49c4-8b47-6e57d0c7ee72 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a3831e2b-0327-426c-ad45-1f2eba27f823 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,33cdd8da-b6a9-4624-84bb-66a406f85521 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,6137113c-01d4-4ae6-bd3f-3ce133685123 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,99f9eaf2-0605-4b8b-8daa-2cb7d70568a4 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2cb4fc19-91de-4aaf-bab8-d641122b4006 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f77e7968-738c-4db5-92c3-d40d4096b227 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,468b36f2-f9e4-470f-9545-c46ee540ec8b -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,823d65bb-f244-472d-b06c-fd38ec9ce8bf -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,95c88901-d4a9-4dea-8b04-2f3df789503a -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,cfcda974-f1a1-4f68-abe9-2f7897fa5fed -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,fbbbc687-a570-40a8-9f7f-018b247f542a -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,95e6fbe3-4f0d-433a-af41-45e7cbeb3bc3 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,879c24e1-5b6e-4553-835e-287639cf4c45 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,d7c5e8e6-0690-4a39-9e92-a1610697dac9 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,546598b2-67f1-4100-b7c3-d4fdf361377b -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,51cb6d3d-274e-4589-9aa1-18e769f130f1 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,d17efed7-b42c-4f21-8f92-6895b2dfdaa1 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,844dd1c6-354d-44f0-9bc6-c9ca07d73ff2 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,46e7626d-0e2e-43cc-bb71-51b6d8852106 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8a1af197-ab36-46ea-9528-b0b1432799b1 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,7b486c18-8054-46de-8582-479209c143e3 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,68b03189-85c9-4ca1-8240-9ad46d85e1cc -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,9ae53e67-7359-45cc-b577-9e99a8d43179 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8cecd92c-1550-4aa2-bfb0-e86545e57bdc -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,9c38306f-bf1d-41be-8059-53df09dcae80 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f3a65757-f91e-4df6-b6f0-c37d06ccbf5d -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e8b0d56b-c96c-4842-8617-3f2bbf5c511d -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e6a76acd-9da1-4cd5-8993-9da56c530706 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,af8ac966-553d-4647-882b-50943647bd88 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,59cf4364-c053-4b37-a1e4-6a807c64b5a9 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,9948902f-735e-457e-b3c2-d1debd8ed8aa -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,5e8ca935-8a47-4a58-8e98-8a5f1cfd40af -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,7d192698-ad1d-4b94-bc89-b47465bc51bb -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,6df96ef5-00c4-44ef-a8b0-2255d41f0705 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,cda6830a-fba0-4bd7-8dee-9d80b298ab88 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,162b7622-570f-46c3-baf7-34d950bf61a2 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,e6ed8e05-570a-4b9c-8d57-737e5be82ebc -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8f382b28-1458-42ec-9945-f40add7a1098 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,d1925a3b-d36f-4d8b-8292-70a05cba23ae -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,e3c25585-a7c3-41af-babd-d1c9e5718fac -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,d3aef6df-6ee5-41ce-b767-ae7774f0e051 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,16a82368-31a2-48fe-af6b-0d9ea6cb3981 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,a982ed4f-f0ae-425c-ba0a-774751b2dfb5 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,cf723ce2-05f4-4234-a606-234b2a454ea8 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,46dae412-006f-4777-819f-c1508c41db30 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,5b448221-1870-4904-82a9-88068fb9d5b0 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,c696965b-7fa5-4800-bc8d-b4acc633d936 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,c8ba8dcd-236f-442f-b3df-cece1c40f53f -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8da8a172-2e0c-415f-b605-a078f27cd45c -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,33a510c7-806a-4835-a767-f0d180ca9a2b -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,20a407d8-b49d-46f2-acb4-71450b358a51 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2324501e-2b23-4323-87f6-5a866c37aec6 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,31dc1461-d6aa-4e94-9fb4-c02b2e05bcde -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,618f94f7-a11f-4b95-9095-ad577aee4544 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,b49a8627-288e-486c-a939-f6988fd1c018 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,419574d0-5235-4c49-b397-2ad34e7c8606 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,30167f43-f124-4fca-a2c2-d462d6f0b1fb -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,83378030-c276-42b2-ae23-ced562651232 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,b06e98e1-7aa4-485a-9bf6-ae8dd3c60553 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,93b9ac24-9003-47fd-9043-771dc0d372b6 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,96f7fa06-dfb2-4784-82b8-ef21054acb13 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,098072a7-61ba-4889-b60c-139c5f8ec474 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,5f6029aa-1f97-4b2b-b567-861b97afaa15 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8633d0bc-3000-4f3f-bc33-462c59388c2f -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f37beb72-0dc1-420e-8a2e-dd34ce0d137f -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,7f226c12-6426-496b-87a5-3d24fe4799e0 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ab3ed2a3-a758-4982-b728-e9f9ae3a96d8 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3c8f0bc9-105c-404e-a0cd-a92bb36900eb -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,089d1450-ced8-4ee6-b946-6fa8b8e69e90 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f82e287d-3722-49c0-9b5b-891d3e30ebdc -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,759e2154-d1bc-44a9-9f3c-b94ed6dfda93 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a5d48030-d5f0-483e-b3ce-921645504096 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,07d0973e-4523-4c9f-8fe3-20ebbc399cf2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3d3f6a1d-0714-4c15-b3d8-0c0938d01b9d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a92b3752-a797-4d95-b603-7c3ee06447f0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,29c73f0a-c159-4e79-a2c9-79ea4f7a4fc4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,39a9a565-ca86-4814-82d2-81e29944145c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,670baa3d-9454-49dc-8aa3-098d944bd9f2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8c8ea4b1-0992-401b-bcb8-5c8f603fa65e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,11068526-f623-439c-999b-e839c009695c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3639e8ce-a26c-41f1-9f91-d59f13695eae -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,38655be0-5b7d-4680-8a44-8cd63e2fb670 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,31205fc1-1f3e-4634-8469-38b51c113518 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,9d9679cf-cc70-4874-b786-f76eb862c4f2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,6981c559-e44f-4c87-8a8a-f6b1e7d0ea35 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,399c4be1-9c7e-4caa-a8f0-394339065cdf -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0024406799999999998,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ad27243e-975e-43fa-8e2c-b3faa073d72b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0024406799999999998,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a8da8d3e-2630-4726-acff-252ec0d1282f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0024406799999999998,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,64547d4f-34f4-41f4-8a7a-b8f81fb8d245 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,c760d2d1-5f90-4d54-b553-b08df861226a -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3960cae8-01ef-4d79-be9b-51e6cd414fca -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,b41940ca-d3b8-4c6b-b6a1-97f5615f4c1a -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,98797cfd-d1c9-47ec-a955-1dcff5131e0a -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,b2459bf7-3df3-4c1b-a4a4-4b8a2f9c7463 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,1506ccae-62e9-4c16-8857-dd58bdb11ad2 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,15d40e65-446a-4cfa-9425-fb18e55bba40 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,371faf24-26f7-4b00-a752-0866eca72aed -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,163a88ef-4bd0-4229-aa4a-0bea249defa1 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,43ec90a8-04ce-4f75-a49a-198b89d49fc6 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,0dd92aae-0c5b-40ad-a218-8c0f9ceb28bd -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8243a143-de58-4289-8626-5c74c3d75dcb -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8d74a5ac-2663-4b58-b6a6-fe2b7286f46b -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,ab874c79-1e3e-4291-b95f-1ca794916125 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,1a4aebc1-97a4-4784-b172-4a37a6e71c38 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.649746,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,b43aadc3-961c-428c-a2e7-a05e3100464b -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.649746,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,2524b99f-0be3-4b32-9cf8-bfafb23d6229 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.649746,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,16440d1f-48d3-4555-8323-2868d3a4d448 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b40dfe74-0ab3-4092-bf86-6cc70a4156fb -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,83d4ab19-a058-4003-97b4-5c93a9bdcaef -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3c64dd84-d8bc-43a1-aef0-718ef818c964 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,78ab4c77-6ffb-4390-b58c-833c288ecee9 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,904aaf24-2189-4a18-8893-c3a700380e20 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,74193f8f-1561-4018-940e-9f92c1a839ef -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,37dc9d45-cc26-4cd9-9bd3-1a2d8e4aa29a -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,4bcf71d5-d69a-45a0-a36b-6d5fabe0c672 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,024b293a-a8b3-40e6-b159-211ea05f16a0 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,4a47c980-9b9d-440d-8e56-30d80fd2e7de -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b7ce3de9-7add-4750-8cf0-1071a89cc0d8 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,ebf3f094-7d62-4f5e-8af7-70722ffe5ce9 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,6b257db7-929e-4b9c-a6da-0d6fc46eb269 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,98ab4dfd-0998-42f5-8b50-491b4647b947 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b81eaff3-25ea-4e00-9300-52f38072dc70 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.456762,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,6d60551d-daa1-403c-b3e3-76437e7357bc -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.456762,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f191f6ac-8b06-46ed-a219-4ff33027275a -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.456762,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,174c434a-9b72-4d65-be6e-7c20d69b8549 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8fb7d1a4-3404-4df7-ab5d-b8347df025eb -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,6afc6885-a4c4-4379-8714-9a3fc14a99da -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c6709481-759a-4f47-b542-55b4e628d548 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1997db58-2e21-4ce0-bd8a-1313b47f1ea0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,51bec831-5be2-4a7b-b8b1-76c88889e879 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,4bcac469-1f9a-4322-a5b0-827dab92fe21 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,5e9f0147-2b59-4efd-b6ed-24657fab45d3 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c15c3372-3b4b-4fe1-9e75-c100943939cf -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,b61c7082-04c6-4dc7-8e4d-b017414bb3d0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,b1d1757d-8917-41e1-bc68-46c5825af9ef -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,acd27be1-658d-4023-9c8d-bdb1c085411f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,724bb487-155f-4c4e-acac-5469d470c722 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,18d3b132-ecd7-4709-a2d4-372eea307aac -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8be85eac-b7c3-40a9-9ed8-2967c42bf23d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8d23220f-5b26-4c9c-9d10-5bd9b2459770 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.00227986,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,12116514-f190-42bd-89f4-916d9b6f5aa5 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.00227986,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a8a84a59-f711-4ae8-96ca-b847f780164d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.00227986,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3007e6fe-84fb-4610-88aa-cbb423dddd8e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0012042799999999998,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f25eb8b-f747-4345-a983-1c00d2f6227b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0012042799999999998,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,c04f5a6e-520a-4369-984e-45ac3a241a36 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0012042799999999998,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8f52225d-97bc-47c6-b759-3f9b2574e167 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0012042799999999998,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,9a7e54e1-d26e-4273-bea6-ee69ab0394c0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0012042799999999998,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,d894d0a4-b7c5-44b1-a2b2-a175b068f881 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0012042799999999998,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,5f4857e4-6eb6-4508-b747-c5d107c0aa3b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0012042799999999998,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,408ee41e-eefe-42ba-b22d-d42b5a632554 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0012042799999999998,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3698d28d-4f9a-419d-afa7-2a57c29ae535 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0012042799999999998,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,597c4bfa-ffc9-49e3-9849-629f4fa34b5f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0012042799999999998,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,e7e572f6-995b-41b9-9255-0361db3e91cf -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0012042799999999998,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,72f7fdf1-7291-4955-909c-c2a1ff8367f2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0012042799999999998,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,95c2906b-b126-4221-8da9-2e4f6ed3e772 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0012042799999999998,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,ffa726f2-7f39-4bd3-942c-cdbb25457376 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0012042799999999998,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,ed49acaa-8ff0-4181-9e61-5c31c0e73b4f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0012042799999999998,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,530c8eb5-dd85-44e6-b95f-e70f51046fb0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0012042799999999998,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,07189235-5571-4b55-b8df-bd7e4a57ec09 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0012042799999999998,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,16cc663d-0bef-466c-acc9-f6e0dfb28afb -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0012042799999999998,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,98a33da2-332d-4702-a86a-7e5250ead2af -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.9806279999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,c75e9415-66e7-43a6-8e97-b185288c8a93 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.9806279999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,7d712778-a6ed-4ec5-9b66-4628943708c3 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.9806279999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,11ab92ed-a04f-4f07-be69-556c747d35ee -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.9806279999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,571939c6-d700-4907-a7c5-8faf47332914 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.9806279999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,b037cdfc-e079-4f71-acb0-e2b90638a2b1 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.9806279999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,857ad801-131b-422f-9d8c-ce5e285d1b46 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.9806279999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,a1955f99-9d09-4b9b-8e41-67c27bfcd732 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.9806279999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,85cf4909-70c5-4404-aeae-08154d9edef4 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.9806279999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,5098583f-410b-4cc9-8889-aaa503c6c842 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.9806279999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,133b7c42-baac-400c-9b66-1d3e5c064357 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.9806279999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,08521761-fd76-4455-90db-f69de060e37a -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.9806279999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,ac7da4bf-47e1-485d-a8d5-e16a431e7477 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.9806279999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,5b10cb21-61e3-4b0a-a779-df2514c4f868 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.9806279999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,99543cb6-6510-45b4-969c-60ea1b12fabc -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.9806279999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,0865b02b-26c5-4b58-ac2a-9cdff92f5ab9 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.9806279999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,4309994b-c7e9-4f61-b673-1c4b3c60e971 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.9806279999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,2b13aa0e-a947-485d-a632-5b36b3531339 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.9806279999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,c6b2c59e-0684-4cf3-a828-1d7da22ae65b -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,1.3206600000000002,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,768e7d4b-5fee-443c-93d9-dd506b235bf7 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,1.3206600000000002,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,ac31285d-af0a-47b3-8b8e-cdb3259242fc -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,1.3206600000000002,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,cda3d353-8778-4f18-9e79-29bfb80c0a98 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,1.3206600000000002,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,e2ad1baa-ca84-468b-a323-4c3bb1a5085d -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,1.3206600000000002,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,e1bf28e1-e43e-4b87-a68c-063c86c8f0a1 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,1.3206600000000002,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,38c4919f-e5ab-497c-b124-cfeccc25226b -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,1.3206600000000002,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,b6d6cc4a-d6b5-47db-8365-ffa9eddbd772 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,1.3206600000000002,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,54c8063f-4827-4829-85ef-796c4dab4c99 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,1.3206600000000002,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,c5527a07-badb-42e6-9513-3da4406d5eff -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,1.3206600000000002,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,33f689bd-d26c-4b14-beab-47281359786a -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,1.3206600000000002,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f96e97ce-b447-4178-bf7c-d103ec33eded -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,1.3206600000000002,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,02bc2250-aba0-4255-a6dc-cf572b7ce2e6 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,1.3206600000000002,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,b8325291-2ff3-4668-8718-8be23d90f289 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,1.3206600000000002,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,5c3c8752-73f9-4a74-b858-30b0dee60dfe -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,1.3206600000000002,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,6242b7b9-28a4-4fcf-ba0f-d0e720629ab7 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,1.3206600000000002,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,7487396e-a6dd-4c5e-abfe-ae6b930c2a5a -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,1.3206600000000002,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,56897cfc-2519-4ba3-9c72-eee3696a5ff1 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,1.3206600000000002,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,9cdeff90-7341-418d-8094-8fc2a47addd4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.00149776,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,cb58fd9e-b5aa-4a52-8b23-c6939457f96e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.00149776,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,32fb579b-f117-4328-8191-0db3d0eb0124 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.00149776,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,dde4d5af-2771-493c-bc31-51c6ec5bff6d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.00149776,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,ea8dc0b3-22c1-4f20-b34e-e5b86c3e757d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.00149776,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,0aa3324f-a2f9-44bb-a83c-7e68ab01ac29 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.00149776,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,284ae4c5-225b-4229-986e-a786e2c373b3 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.00149776,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,5b0ca6f9-7376-4cdb-b9f1-fea7e1ed34e7 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.00149776,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,238c0f2d-db6c-4556-b5d4-945bb229caa6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.00149776,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,4ceec1b9-3d4e-4dbb-8ae7-3c82c34e6457 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.00149776,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,c2416f26-1665-4f55-b428-29ecedfa0ba3 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.00149776,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,42433301-95e2-46b1-947e-f6189705884b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.00149776,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,5fb6c0d2-d3d5-40db-96d4-c6f24c45b0b6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.00149776,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8b6af23e-43bd-48aa-80b7-bfe2cce679bd -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.00149776,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,d176135e-8300-444c-9eb0-57f30b4f1fbe -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.00149776,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,d2443d55-fc3d-450e-8427-ea03dda7a4d7 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.00149776,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,72bf9a4c-9475-4425-bcc3-f22ce6145e95 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.00149776,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,151f0ee7-3c57-45d3-ac22-f1a2484a3b1c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.00149776,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,bade51ea-0bef-4e70-bfb3-7bd2a802ab60 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0010342346666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,e8220736-9496-4233-b6ed-c70c39777dd2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0010342346666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,dcf8dda0-ae69-4b09-bd8e-0bc05f511148 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0010342346666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,5c8c2dec-5a12-44ad-8321-b2b2d23b7209 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0010342346666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,b7997558-ffa0-4993-b2ff-89474ec61cb0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0010342346666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,bbd17e32-04dc-4d8b-a327-eea1e27a69b6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0010342346666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,adacfccb-1b9f-42b6-a75d-9eb5203e85af -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0010342346666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8c5d5e4a-f7f3-49d8-a8d3-76422fa3dfd9 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0010342346666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,94685b5a-888c-43ad-9567-d25535df4772 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0010342346666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,159049f4-395a-48b5-8529-19cf6951baac -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0010342346666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,04b2aa97-5619-41c8-896b-b42bf6c9d815 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0010342346666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,401a6627-341d-43c6-b4c4-df00a7c1b56b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0010342346666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,40c61c06-2281-4660-8a1b-d2a765820bae -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0010342346666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,b1fe86aa-4b75-4afa-a716-4943260a4c57 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0010342346666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,04c1f25d-00ea-4eaa-8caf-364143f60f1f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0010342346666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,d5c4af9c-833e-4946-aa65-b1d422cb131b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0010342346666666665,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,be79f96b-d394-46c5-bba4-43a3cb0adc2f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0010342346666666665,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,2b9c5653-bb6b-4244-b540-f23e7c7b5bb6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0010342346666666665,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,9b50d384-feca-49c7-b7a6-fa5325315efb -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,81f2f4f9-c541-4ce6-92f9-440172b9d9ab -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c6eed30c-e61f-4b4d-98e4-4583bc5e243d -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6b88ebe7-5f57-4fdd-9295-a6b4340af89a -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f5d42399-5faa-45a2-a9a2-cd9a79ead768 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f09b757-f0a0-4c8c-9ce9-e6a4a84876e8 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c1c18cf8-f603-443f-ae3b-1975f62ed6bd -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f5af0091-e984-4eb5-8c8e-f2bde7a4fcd4 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6adcd253-2751-4a86-b9ac-6329a5b28573 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e8929132-f9fc-47db-8133-58c09e01905a -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c30212b7-089a-49a2-9393-24c455d05335 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,28e166c9-c59a-44a6-8945-87a4fd912172 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f02fd20e-8bb3-4a5b-ad8b-a116a5c54d22 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ac6ab27f-bd66-4bdd-b08a-faf54c84c10f -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,975a5689-31da-4bbb-926a-fef24b34b678 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,22d8357c-3a9b-4bbf-b9f0-4e8a1fb33162 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,21036cc5-ab7c-43f3-b07a-adc57bce4b9a -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,bf509f6d-0ae8-459d-81c1-2689ed7a0c69 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6bdb452d-bd8d-4834-9ce1-0988c9109f8f -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,da1f5f87-0863-47df-87fd-7faf35c252ac -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,07e2f2b8-18ce-46dc-8070-fbae852f9ced -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7afbd0dc-3e79-49c9-a13b-cd7458a2303a -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7d7dec42-33da-4757-af2e-d25082cfd5fe -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a467167d-eeb6-452d-b671-faa50b954d36 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,14b72fba-4c9e-4091-a518-cee9260ac1bf -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,cbd6e315-dfa4-4788-ab70-242c354a1831 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a48f6de9-2f53-4936-9113-1f4e3527ec56 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,ad272210-7e1e-4670-992f-61cba117ba2d -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,2b5c6228-5e98-46ba-b287-42abaa4107f8 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,658435f5-1adc-49db-9ce0-b599d2a6cd8f -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,e59a9b4e-f828-4c06-af9f-b2fff2c496da -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,324ca410-dbb5-4869-92f1-d2ef5c3a7bfb -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,c631b11a-922d-4ea5-b256-cb5f786c716a -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,28fec717-2f06-45b9-b36d-eefb24fac3e0 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,f187fad2-122d-4d48-b4b3-78def106d961 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,b4cf2e46-aabc-45b7-9280-65917a29ced4 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,2c06b9dc-b360-4418-b812-23eca6397ec5 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ff6f9559-ac05-493b-98c0-14e0df8458d1 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,34c21ecb-63b6-4e17-9bfb-25bbf9b9f20f -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4ff1cfaf-29d6-4cb5-8f6c-2ab5111d96dd -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,72d7a7df-5738-4471-a7af-024187578384 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,5c8eeae6-2f44-488b-b74c-7073e6ef4dfe -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6d82dc11-67c7-4e0a-86d5-97562a34c519 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f9195bcc-325e-4a16-9511-986238a150b5 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e4bcd3b9-68ec-4f9f-8e44-f3a4d2fc96f0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,13007ce1-30a1-433b-8211-e6a14e067673 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8f1288a8-4971-4c2a-b601-faa74ddcd69c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,95d5443a-e4a2-420c-9396-4e7d08f9de81 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4556ec79-f095-42f0-9c45-d86e14759dcc -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,936959cc-ef56-4c43-a1d9-ac8aa91aa8cf -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,15dc5158-03a7-461c-a565-5abc4c10d048 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,aa476e12-9ccb-4ccb-b05b-a6cf918e3c79 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0032570999999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1bdcc8f8-4a92-4baf-b145-17c2124d6e6d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0032570999999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,799b7eed-4d76-4ed6-a4f1-512d33d494ed -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0032570999999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e45156a5-dd62-4771-a6f5-ce1f5b8b9c67 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,15da0ab7-b419-4dca-8b50-3a217f3a56a2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,ef4cdd25-fa2b-4aec-9e3a-7f49bcf0db15 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a1a528d9-305d-4685-92d9-ec717f91589c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,2241f6a5-0187-4d69-90f4-1410fcb20ebc -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,2fd85fb8-32ad-467f-927c-2fbc08f4b84e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9ae2c7ba-3585-4867-9ad9-6b3bc20608f8 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,06270461-fdc3-4ed6-a056-4143f3a68816 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,4b067c47-bdaa-4c54-a968-655bb0abf69c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,efcc5d71-551e-4de5-8137-c9981a1bca3a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,1ac62371-a81c-467c-b1f5-cecc21cf092c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a7c308d6-d653-44c0-b3d0-6530794678a9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,775a6174-0fd1-4514-a0c7-1ecba9a143ab -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,72ee0532-8de8-43ac-8b31-1e4be5d2b264 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,fa01224e-b5d6-4cb3-917f-9aaac1000ce3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,2c38d369-68b1-41e4-b8ea-62906f3619df -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.94765625,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,3acb11c3-9f17-4f56-9ec9-e042fcc61c4f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.94765625,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,bc191cad-7600-4ddf-820a-73ef6d2a0cc7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.94765625,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,b54690de-b1b6-4975-abd4-5cb708e9aecc -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6ee30286-2776-4f4f-8017-79a209665fd2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,93a9fdf3-d27e-4373-8a5e-750476780b71 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,b3f560a1-7156-441c-826d-f084576b4525 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,51a7d40f-7231-4482-9b98-2c5fe7eab950 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,82971c1d-60b7-4f82-899a-0c31b5e85142 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e6b98d79-4dee-4354-9df7-035786f42b55 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,53298322-6770-428c-bbec-875d6f3e8a0c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d6214944-7fd7-476d-b87b-2ce0277b2373 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f37126b8-8fc1-4c95-8725-627c32014383 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3301d694-3016-48dc-8181-1a0ce1afb77f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e36819f1-9580-41ed-8bc6-2ad1eca64703 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,57848198-178c-41ff-b00d-5d195015b4e8 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6d4e0512-af23-4156-9ab3-ba36b06c9301 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ced411e6-823f-4909-9768-99c09c7074cc -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6f1ddf5e-7d8e-47c8-bb2d-7f04df5bdb7c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,aa9aacc1-e855-41df-8bd1-ce9ae1e9cdcf -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0bc034c6-3fbe-43c1-8f50-238db98e2d6a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f7ebed7c-f63b-4c80-bd23-d204c284cb5f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,c6af16b5-39f7-4b79-ae20-b52e475037c6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,b30c1311-71f6-47b5-ac66-0812abbdcac8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,68524a8f-d044-4480-a588-ea6ef78a38c0 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,e4fbc06e-7a51-4950-9daf-068b5b906807 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,41a949e1-8e7e-479e-b29f-77d9b6d10a2d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,96845855-034a-4618-a325-db9becf66f75 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,834fe3e3-0cdb-4aa7-bda2-06a77dd81e28 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,ebd0aed0-1c46-4f65-92ca-55909694f6aa -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a5b13c85-c84b-45b3-821a-83000c4da35a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,affe4f06-d408-4145-89d4-1779365a90d2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,6812d997-5a72-49a6-8e69-6371ca2e0a2a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,731fc13a-aea5-4511-bb02-e6b30ccf7624 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,f896a356-4a62-44c9-a7c8-42ee50318b31 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d01fba5b-574e-443d-a0a1-b974be70bbe5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,fcc522a2-40fc-4487-84cd-744c96fc88d9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,ad10e441-f7b0-4473-9264-f19ad6b437e8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9ed4ef9e-cb65-4a78-9dbf-259731dbd8d5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,eb13a738-29e9-4de7-a6d3-87c68bd0a0bf -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c2688ef2-4ef5-45c4-aa85-a71134c9bd19 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,dd01f6fe-a6e6-41f4-9f50-4a06305e3084 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,50261b72-d7a1-4e79-91a1-f669dbc64d23 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c6793687-0f1e-4bef-a07c-86d493efb8cf -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1f9ecd8a-bf7c-48a3-8905-4d1aa01cefe7 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,38f6cd52-f29e-40a8-9705-3304beb7a41a -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0fc34029-4c78-436c-994e-f5d8a0c4a147 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6961b7ff-3564-4130-9019-dd17b3bce456 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,119966dc-afe6-4066-a211-1bb8cdf2658a -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0b716736-0622-42ce-b632-1bd792343291 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,19ee8022-ee8a-4142-af37-70c19f8e51dd -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,da95304e-b770-4ecd-b026-820cafa92145 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,106168a6-1150-4630-976d-1e3cdd17c650 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d4608226-a7aa-4957-8f6b-a47810e0439e -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3b847b01-cae5-4af0-9e79-590e3cb5b632 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0031019999999999993,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,cf88d475-6709-4c0a-a08c-773d05ebe4c1 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0031019999999999993,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,850a3358-6bb9-4793-8f26-680486b761e2 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0031019999999999993,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3798589f-adca-41be-a14b-b3054cc7875c -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,ed0fd6d8-db21-4d24-85da-dd2f8ffaf5ea -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7ce7b88d-ed31-4fc9-8b20-f75803834e9a -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,c2a1b544-46f9-45f0-a5a9-fd06c7e6212f -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,00a8a080-023b-4ea2-85f0-9ec178e5a924 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,20971580-22bb-4176-85b0-0a6d87886632 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,2fad5a4a-545c-4a5d-a672-470ba86eea67 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,314b52d5-8e9b-42b2-91d4-89195a9f6770 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,206573e7-d7fc-4a06-98a9-1f8aa918ecb7 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,6728ff81-5d37-4331-b5ea-5815d0817046 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7d9d60cd-b3be-40b6-b9c9-14f7893a0066 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,88a0759b-281c-4b1b-8588-f05000a05f03 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7d72bd06-770e-4800-93ec-551bcb21d6e2 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,4433cb68-5340-48d2-8588-83b08ca0f1df -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,7bf91c90-afc4-4f5c-ac77-0e50c0e12289 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d90a3bd1-163e-4818-8d82-2361b6f1b91b -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.8072916666666665,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,744afb1f-76ed-4225-af10-ebeead583930 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.8072916666666665,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,ffdefd8d-cd55-48e5-b9d1-09e59c43503e -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.8072916666666665,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,9e0bc126-605c-4a17-814a-13d807741e6a -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003151206666666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,5f7545df-712c-448b-b192-e1f5186749cc -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003151206666666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,b3303b4e-80ee-492d-a106-b861bbc54967 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003151206666666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3efa47f6-3e05-4d4f-9ec9-9044ba0b9385 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003151206666666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,fc1315ae-86af-4ae1-9fb2-694f142144d6 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003151206666666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,202de087-731e-450c-9555-c4f4bd20491b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003151206666666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,60201141-2271-4695-822e-1f7ac8b2d439 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003151206666666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,854fa4f2-bc8b-4658-b70f-229d975ac8bc -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003151206666666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,db31a710-a2e8-41c7-ad3a-a94e9a08afc9 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003151206666666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,a65993b7-756d-4499-97f8-22f999bb9493 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003151206666666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,fd096619-faf9-4efd-b629-1d0bc9b590ce -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003151206666666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,78a0587a-3e31-48f2-a1a3-ce9ae4196e13 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003151206666666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,03b0cb23-76b2-43a4-adb3-d2b74d9a52f4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003151206666666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,65cb6cc6-c301-4a72-ad48-1107cb4a4708 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003151206666666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,c7d98f64-2a2f-40ca-9b02-b556f67f3029 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003151206666666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,cd328c78-c46d-406d-928c-a61fedebcb08 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003151206666666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,ccad60e6-75d0-4338-ba0f-19f6a942ab7c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003151206666666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,a98b6a56-6e0b-499d-8bb8-bf1bfd901377 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003151206666666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,efd4e327-eca0-4db6-b1ad-b485c63ce14d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.374075,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,a9fd8d13-a631-44f4-aed8-b00a48710f19 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.374075,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,4b1beaa9-092e-425b-9e3e-474e6bac837b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.374075,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,962186c3-4e2a-4b34-8fb3-0ceaace1180c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.374075,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,f1465f00-d9a3-41b2-bf03-457b25cc3cd3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.374075,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,4a68efa1-5c4f-4c95-923c-c36baa6035b9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.374075,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,65d4e5d6-f29a-459f-b320-c38b9c5cd065 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.374075,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,5c838fda-1560-42fa-9634-96e79ceccf5b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.374075,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,5400f139-b3f6-4aff-ae97-2b36288a384d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.374075,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,33a3d76a-f777-459e-a8e8-75b071901f5a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.374075,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,3dd4b197-93f3-4427-b8fd-23dbf42027e7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.374075,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,a7a7ac73-0752-4d26-9079-c22449429934 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.374075,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,cee5aa02-9a8a-4f35-b6f2-1501b9c07b5d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.374075,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,23c2c99d-e273-4cbf-8c7d-563333daa185 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.374075,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,cd3c2e69-c238-4a3e-9cbb-d1308cd69429 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.374075,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,f8d144c7-6a1a-43dc-ac29-def05f4727c9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.374075,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,85c340b6-80fa-404e-a33f-0f3b7fbbd14d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.374075,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,fd1fcf06-72d8-4d3a-985b-31eb73772ca3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.374075,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,219e9fad-d1af-4449-a9e8-db2183ac6c6c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0030686919999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,5c56175c-d3eb-439d-a344-e8204e9db288 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0030686919999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d0ec7162-2732-4c7a-acf0-07b0b5fa66ff -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0030686919999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,ecd02394-ca9d-4732-9cb5-099312eb9164 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0030686919999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6cb4b50d-abd6-4ed1-8958-4c34d9d4b0e0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0030686919999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,97698db0-541a-41f8-937c-96ec55cf5cba -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0030686919999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,2fd0429a-39cc-428b-b1e4-c831a357917c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0030686919999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,e72fe0aa-d7cc-41d8-bdd2-8f1ac8ec426f -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0030686919999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,1c4342ca-ab45-47f6-8441-d1164e5333f0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0030686919999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,1da44c2e-5e60-48ad-a8d6-7b0a4c6b71d4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0030686919999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,8b711982-0c5c-4209-8158-e82ab9feb823 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0030686919999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,044a4b58-419f-4763-9133-dd707d72976d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0030686919999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,247185e5-65ae-430e-b102-b11571593fcd -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0030686919999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,a15ea90c-b667-42bb-bdc8-8eb6d39d2b0a -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0030686919999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6b64c677-87ba-4629-b7a4-764176ec2c6b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0030686919999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d8bf01b0-a973-47a6-b845-90b24b191611 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0030686919999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,f617a456-0cba-4c7f-93a9-25f7c9a575ee -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0030686919999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,01ec9616-0bb2-4a69-b6bd-01665d64a98d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0030686919999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,4fa87ecb-29f0-4d5e-a396-3f06313f1ab6 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0030437953333333325,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e7442e18-5931-474d-9cd5-06e29c6c8d6b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0030437953333333325,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,3b0c8a44-05cf-43c2-840a-c16071de4ebc -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0030437953333333325,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,3c4eafba-0e89-4156-9152-cd1d2cfc17ae -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0030437953333333325,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,afe6aff0-04c8-4acf-82fb-5ac5466ca310 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0030437953333333325,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,fc3f5a20-5993-4081-a383-c82d2363a9b4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0030437953333333325,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,d7243513-b5e2-42a6-acdf-f69ae31be006 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0030437953333333325,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,22195e73-5af0-471d-98d9-e337cc4b92cf -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0030437953333333325,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b92c159a-688a-4179-a940-25a14441e54a -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0030437953333333325,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,7784ad3d-5e6c-491a-8cb2-4c991a8df87e -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0030437953333333325,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,52c4d5f6-b555-4b7a-b118-f1798fcbe5a5 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0030437953333333325,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,d96a95ec-280c-4b5a-b7a1-9a90ccd3dc35 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0030437953333333325,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,f42c3757-294f-4bea-804c-218595caa124 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0030437953333333325,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,37490893-9c46-49ea-8f7b-ffb2fca61e92 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0030437953333333325,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,0b4ebcfd-d84b-4ebb-81e5-14b4bbda28ee -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0030437953333333325,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,f730e197-bcc9-4dec-9e5d-e51f9d8c231b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0030437953333333325,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,5aecafbd-0553-43f3-8ce7-aa46d72b16c9 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0030437953333333325,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,cb76e2d3-e3fb-4882-ab4e-d0f8b2f11f32 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0030437953333333325,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,865ce704-5224-4ef5-a9d6-900065db6c4c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003060867333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,a40ac5ca-8b91-4e94-bfd0-a0eb6ef375e2 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003060867333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,89be39f3-c0eb-46cd-953b-834e42992fda -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003060867333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,644bf178-c752-4ac7-90fd-4670833ee4c2 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003060867333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,03a39604-4526-44c5-b369-035fd5a9b687 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003060867333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,67dc1bab-5cac-431e-a01d-50f40062e072 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003060867333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,a4831d08-88f9-42ed-81da-abb81d24afb2 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003060867333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ad15f7bc-a993-45b1-831a-02f77d670728 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003060867333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,e803c8fb-a913-4898-a155-0ab0f00c21dd -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003060867333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,2cdd7a21-e8a3-4378-a4e8-3de701283495 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003060867333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ebb64204-46ef-4ff0-ae82-a9c2af5c0745 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003060867333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,88241f85-7564-4875-b93c-78ebee84be8d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003060867333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,c3614432-c6c3-4535-9d18-798926c5b0d3 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003060867333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,47805d7a-bc62-40e5-9f8c-a0f1e292351a -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003060867333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,f51f089c-585d-4b41-8cfc-1d3bbe3d6bf5 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003060867333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,01f7c5db-1c08-4d97-8b24-427313a9c998 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003060867333333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,1a3c838f-54e0-4de6-bfa7-3304470090b9 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003060867333333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,6990c241-17c1-4a8a-84a2-f18ff3a1c01d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003060867333333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,35ecdbf9-59c0-4328-860c-b90ee08dba05 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0030699899999999994,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,ec619770-29d8-4d0d-8a44-ab49c60dc66d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0030699899999999994,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,afe6a03f-5424-4a2e-b032-68854b9389e6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0030699899999999994,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2472fff0-0525-42b1-9fe3-6c614b472f10 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0030699899999999994,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,60e4b064-a67e-44b5-8174-a1161d10b6ca -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0030699899999999994,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,ece867d2-1808-4b0e-bed3-410459990efa -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0030699899999999994,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3e849239-33b9-477b-9d6e-d5c0f2effe08 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0030699899999999994,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,27db1dd7-b81e-4a0e-bea0-5b433edf8318 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0030699899999999994,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,aea7999c-235f-4554-a9d6-13c82ca6db97 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0030699899999999994,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,7a920c23-584a-4970-b466-283de6032cef -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0030699899999999994,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,0e93974d-440c-47d8-a833-be0b7e415049 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0030699899999999994,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,0a666028-3979-4856-83ce-f70a7afdc2d5 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0030699899999999994,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3a855a3d-f298-4e22-80b4-861f3a6b154a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0030699899999999994,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8f5aa77d-c4e3-4c69-8d81-ccb54b13bc6b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0030699899999999994,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,ae5c421d-6fb2-4acf-a669-6e33d9d0860d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0030699899999999994,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,41b0fd79-3f3b-4af3-ba17-1da1faffbb6c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0030699899999999994,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,b83f1d1a-309d-45d4-ad7e-ae9fda30b2f1 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0030699899999999994,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8965c9e3-d555-40b7-8f05-d6462dab45b4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0030699899999999994,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,b09bebc7-31da-4813-ab0e-d4dcf6ab1620 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.3128875,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,dad8556c-6a9b-4ba4-bd69-9883ed049232 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.3128875,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,2521ffd5-5aba-4698-812e-91f4499f83f6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.3128875,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,faea8b68-a458-4683-83da-890d6eddc95e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.3128875,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,f0fcafad-9c98-4b9a-8dfb-3cd5b6a9aab2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.3128875,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,c55ef28d-add1-4afa-8e00-922ca0d9a5a8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.3128875,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,0c4b1347-d2c9-42ec-8ced-5a93d13585fd -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.3128875,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,2767dec9-bd5b-4926-a57d-bdca53082637 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.3128875,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,1806d1f2-a300-4a88-8add-bd25f4f6685e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.3128875,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,149f41d1-0920-489b-8d98-3ae486f43b6f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.3128875,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,f0e3ffba-41ba-4059-bfc8-5215908bf362 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.3128875,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,c615bebd-8fb3-41a1-871a-568d4bbc452b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.3128875,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,8ad71437-3892-4d06-9f02-02860e3da783 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.3128875,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,da1ac30e-65da-4f05-803b-915dfa444176 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.3128875,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,765005e2-a830-41ac-9c7b-c6681ff83fa6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.3128875,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,a5fecbde-f1e9-4d5b-931e-31bf4a2b0715 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.3128875,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,bc4be7b3-6169-4ad7-b4e4-ba9f54079ec8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.3128875,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,8c8f7a09-9922-4410-9957-cd0bfa29f92a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.3128875,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,3f2635f1-85aa-4546-8655-a48c0efe5b15 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0029896019999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d2aeba70-d82e-4fe8-81bc-83384e0746b2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0029896019999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,9dc744b0-d08d-4b3e-82f4-f3fc546c47f8 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0029896019999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,a7ec49ab-7f6b-41dd-a238-22fd93db4a1d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0029896019999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,558b1c81-92d2-4209-be51-1bc7758240db -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0029896019999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,7e1e8254-ddfd-4b8f-b80c-6d8447acbe24 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0029896019999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,3c18c468-5761-4607-aefe-a564885d161a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0029896019999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,3e73a5a5-ed63-4322-af18-1b311eb4cc1b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0029896019999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,ae093a36-881e-430d-92d4-d59ea970d1fe -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0029896019999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,bed95c93-66f6-4a2c-840e-28fdaf57ce1a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0029896019999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d5016c30-228c-4251-91b0-0414de9c9ad0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0029896019999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,fff2f855-2d4a-4424-b0f8-fd1c75eabe70 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0029896019999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,148392f1-b482-4f83-8442-116f57256436 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0029896019999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,cd04d899-0e70-4c31-855c-73ea325619d2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0029896019999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,8cc3a7b9-5bca-45a4-91fd-fa51803f952a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0029896019999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,e6dd8ac7-e7bf-43ba-9e59-ddfddcfd8ac6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0029896019999999996,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6f42dd0b-a41b-4800-876b-25787773a850 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0029896019999999996,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,b7bc48ea-eb68-4dda-a78e-8c59273e720b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0029896019999999996,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,8dba4f3c-b519-4870-8f44-0661cbea70cb -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0029653469999999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,29398983-d762-4e5b-b108-99162e6630c2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0029653469999999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,d69c0c32-305a-4105-8309-c4043fc41b86 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0029653469999999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,4f18fd3c-eb87-4acf-bdd6-1d13b338d734 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0029653469999999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,bf81f3b7-7dc5-444c-a981-2f77db83033a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0029653469999999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,35a7ca3d-49ca-4ead-a607-4b28e08a50b2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0029653469999999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,d515f070-73b8-4ae6-816a-218369350124 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0029653469999999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,c5527999-a5d1-4052-8c8c-30880f7b3a35 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0029653469999999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,d749e1bb-36ca-4ca4-bb7c-ad8cdc798a48 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0029653469999999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,0cad4a7e-d978-4c86-a2ce-256425a82ef8 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0029653469999999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,71c9eb92-d657-43f2-9ea8-0ca5d0580068 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0029653469999999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,47d64681-612b-428b-9174-dd4fa98d111f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0029653469999999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,cccd8e40-8789-4c7e-87f3-42d7b73379ad -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0029653469999999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,dc723d3d-5cee-4f1a-a080-129ba5f36aba -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0029653469999999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,0a9da634-9f19-4b7f-8fc1-ccf39aed9152 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0029653469999999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,10f9aab7-6f6a-4b62-994c-8979278d09aa -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0029653469999999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,af93493d-6fa9-4294-8ad9-8f8b7b3d2bc2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0029653469999999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,ba9c2877-7541-419c-8970-fa13834c22a3 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0029653469999999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,716fb613-59b2-4f9d-8ca6-6419b5319899 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.002981979,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,8ed5590e-6587-45ad-b0a9-70ada5a19bce -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.002981979,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,affbc44a-237f-4bc2-9299-35f39330b04b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.002981979,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,d29e4445-8612-467c-9781-60add2a398f4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.002981979,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,b309a6d0-9a12-4d33-958f-04807e55304c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.002981979,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,526b5773-c325-41fd-aac7-acb8afaca0e4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.002981979,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,60e0d14d-29fe-4ec3-b92c-2393cb4af64d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.002981979,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,0386b36d-3eb4-4be5-be56-22f09cdfddbf -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.002981979,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ddabb72a-1773-4886-aa4c-0e7dc9cb7adc -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.002981979,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ca97dc8f-3bea-497c-b32d-eae7e921daf7 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.002981979,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,416077f2-ad08-44f4-81a0-b83e4978bd78 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.002981979,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,923db3f5-5e5e-4d7e-ab67-7917a69978c7 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.002981979,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,3937e386-01ac-493d-989a-0773e015fc70 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.002981979,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,8c7c5c13-6aab-46d7-883b-7dcc182c867b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.002981979,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,18d7a3ea-3573-4793-9ab0-80e9cfb56486 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.002981979,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,079a0cd1-9a20-4426-9f68-3527438736ed -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.002981979,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,c14dba92-053d-412f-9870-b24b43d3d573 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.002981979,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,1feee014-819d-4f05-826b-fa3046f31f71 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.002981979,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,1e4be06b-0f46-47e1-b80a-5fff7fec3de2 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031156399999999994,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,132a36d4-4cdc-4b6b-9591-ccb8fd9e81f4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031156399999999994,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,977b316b-c534-4372-aba6-5e79ddf848a9 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031156399999999994,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,12eb9077-4535-4634-824c-9d17fadc39a2 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031156399999999994,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,4f6e5d8a-b689-41c1-be9c-bfa0216689b5 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031156399999999994,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,ae3206b1-8257-4050-ac45-8bbcdd2bd6df -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031156399999999994,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,2506abca-23d0-48b9-bb76-5c9819ee1516 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031156399999999994,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,43f574f5-abcb-4ae7-a123-b42482e90a36 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031156399999999994,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,41e56d31-845c-4e9e-b1cf-61db47a4b4e1 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031156399999999994,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,5e24e6e7-170e-4f14-ae05-b53a4939f7a1 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031156399999999994,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,fc999472-4873-4946-933d-5dc4fbad15af -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031156399999999994,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,d66d229e-fbb1-4271-8c53-bbd8e7c3c32c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031156399999999994,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,2f34caa4-6c59-461f-85e1-0278bb9e2b74 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031156399999999994,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,98ade0a1-67b2-40f8-a998-62e72f91a2ed -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031156399999999994,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,7585d3f1-3f80-4ea5-a6a1-44ccfe2c34a6 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031156399999999994,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,a726afcd-994e-409b-acc9-7e1b136fae7b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031156399999999994,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,116a45db-8feb-427b-a6b5-885be2a27da4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031156399999999994,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,e4d41058-5715-4df9-9285-2541c93fa9b8 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031156399999999994,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,2e8f464c-9b6e-489c-9cc0-ba50f8047307 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.596366666666666,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,2c012cbf-2277-4ab6-8195-93b6f0fc8463 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.596366666666666,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,be36ed5b-c279-43f6-ba0e-23993340bda0 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.596366666666666,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,16abb596-3f23-47f9-8bb1-9049d7e25d17 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.596366666666666,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,2e54a2f3-1cce-4cd1-95b6-d6a85d93d30e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.596366666666666,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,1867fda7-1a63-4aa8-b73c-725ee1b0907d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.596366666666666,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,b3f91adb-952e-418d-99e3-0a2404e808b6 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.596366666666666,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,3cc80b4a-13d2-4cce-862c-ada7377c312a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.596366666666666,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,90d4a8f7-2fc9-4e38-a6ce-cf4f72ff33c2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.596366666666666,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,0ad8d95e-07af-4ad1-bd48-266e5d02c108 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.596366666666666,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,4c431165-7c00-4aad-9c02-e5ce12d22798 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.596366666666666,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,259bb9c8-898e-447c-8217-a9d8ab97c2db -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.596366666666666,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,8c485e54-127b-431b-916f-c0db20e54edf -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.596366666666666,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,b705fa51-92d4-4db8-bc70-1cf2e7300aa1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.596366666666666,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,236b56b3-c911-46b3-98df-1ca703818143 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.596366666666666,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,b01ae30c-e0f5-4813-ba57-123a956f87dd -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.596366666666666,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,c66ada8c-5f39-4fab-b485-ddbe93ac6ae4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.596366666666666,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,5f82cbc9-72d4-4638-bb49-3059f5910b41 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.596366666666666,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,c202556a-1b80-49cd-bfeb-f064dab01610 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031317,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,de870e35-76a2-494b-8856-ceb286953658 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031317,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,c5ffbbcd-6ebb-419f-b1ea-81db7cf68cca -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031317,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,eaa15ee5-e02f-4a64-aab6-bc5cdddfcf94 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031317,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,666ccf95-ced6-486d-ab7c-d4c43a4a794a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031317,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,fa3c1031-a99b-4989-a9f2-08c42e65ad70 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031317,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,b8e25dfc-df18-4243-9e9e-f98a14d22d32 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031317,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,dd526e1e-96b5-4d5f-99d7-967fd889e0f7 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031317,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,4b88c841-0c2f-4675-aba2-57c85a8bcec4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031317,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,270dd743-431e-435f-b0cf-9460200ad49e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031317,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,ffc28f19-569b-4b29-9e73-160ef34d6d80 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031317,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,4c8fd0c8-c07e-4c91-958c-984e4296a4d7 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031317,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3cde02be-267a-4574-b770-1f2d0fee70e4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031317,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,994560c7-15e7-44b7-8149-4895fca8487a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031317,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,49b44017-e555-46e1-9841-0f0ba752b91a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031317,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,cbf12a3a-cfe8-4284-bb7c-33897cada699 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031317,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f6ebd72d-6eab-4399-9226-4e7b76a494e9 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031317,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,e6cc824b-8dab-47d2-b89f-e6fbda5fdd22 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031317,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,1d61a7ee-5c5b-4835-b0b7-3f6347c1e223 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.60975,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,018a75c0-e24e-4527-98c4-b1b243fe64b9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.60975,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,6c1536b3-ec33-495e-a026-964c2377bf0c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.60975,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,1cd95e25-59e7-49c2-a226-c9585fccac69 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.60975,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,08937665-9ddc-4414-80c6-02c1c8389263 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.60975,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,19dc8553-a852-4167-b910-4aa4608ea3a8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.60975,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,64d8f385-623b-4eb6-8852-b326be2c59e1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.60975,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,d8696932-6ac0-462c-9e07-595c1c3eb001 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.60975,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,91db586b-e651-4a84-963e-f661d83880a1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.60975,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,f6c2fe89-d23c-4d57-8a6c-37954c1f88d6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.60975,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,47fc8284-29c3-4cf8-bb5b-d265b3c4dae2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.60975,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,bc1e027b-a406-411b-bfda-bb427f4713ea -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.60975,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,c0754c67-919a-4ec9-b455-bc272c9705d1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.60975,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,5f7fb54b-1c83-4240-a3cb-2cd58b96be4b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.60975,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,3c97c416-93d2-42db-ade8-61b495fa9fb6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.60975,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,20df4d30-e884-493e-ac68-9ea6f8a6eca5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.60975,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,40d7b256-c17f-42f2-8947-055011525cb0 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.60975,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,c753a3a4-6344-457c-a518-32ccf0f9074b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.60975,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.0365, NCV_units:TJ/kl",,bc06a59a-8972-4e94-8102-3b4b0a35df60 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,633613ac-d01f-47d6-bff3-a970d29dafe4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1c4b6c2a-82ad-48d5-a070-e6210bc17a8e -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003137566666666666,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f1e27788-852f-4427-82a1-e1dee5ed22c0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,45445694-b2c0-493b-820d-4d0587eab4a3 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5bfe52b1-1c26-4d8e-b372-89f993e2d317 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003137566666666666,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,dc4ef8a7-7153-466f-aee1-b682208ffd1f -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,9e6cebf6-12ae-4211-a78e-35a002fe8499 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,6ec4515d-4ebc-491d-bdf5-9e5545a77825 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003137566666666666,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,69c68cb3-a80e-4fec-8da1-25390b61f616 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,eccd86a1-f5dd-408c-876d-d491d10b828e -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1cad2426-53b7-443b-b22b-f331e01d4df8 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003137566666666666,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,002e0b5e-3a0d-4edb-9dc3-3f38d9286db9 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,78d47a83-d043-4308-b3b5-b941df2dbfe0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,370c6f58-7e16-4125-a61e-b2033645b1d3 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003137566666666666,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,994892b3-57e9-46d5-ab58-17d9d044c0ac -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8925d5ec-ac2f-41d2-969f-17f45c6fd3e0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3876cd0a-b900-4544-b6a0-a818d859d819 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003137566666666666,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,ee0571b4-e8a2-4848-ba7b-3d56b5943057 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.8388593749999997,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,e22a5cde-8ef2-426b-afa7-41fd7da1fdb4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.8388593749999997,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,af2be7d6-385d-4507-b24c-a73ac4ee69b0 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.8388593749999997,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,b26880c7-fd37-4015-aed9-c07b2655824a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.8388593749999997,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,0a961ef9-523e-4c5a-bc2d-3b7a86c18224 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.8388593749999997,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,54e03edd-794c-4a34-964c-ba8df9301dc1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.8388593749999997,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,b71b3c2d-2432-4680-9aa6-4dd767fef42d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.8388593749999997,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,b79f8322-5876-4f9e-a2cf-3c92370abaf9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.8388593749999997,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,0222e781-da5b-4993-9481-f31f37ad5721 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.8388593749999997,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,f197aa5d-8d1a-4cdb-8dec-462e559585f4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.8388593749999997,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,bd08a9bd-12ed-41e1-838f-7d5eaaf4b8e4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.8388593749999997,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,8e002e80-4082-4bdf-9302-549262fefdb0 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.8388593749999997,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,99156406-cd8f-49b6-947a-cd90a7d93f69 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.8388593749999997,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,c94762db-b5cc-4b7e-bad9-6141a347f061 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.8388593749999997,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,92f9f814-494b-4550-993f-d80f99debaba -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.8388593749999997,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,1e08c786-14ab-49c2-b0a3-43484f3210c4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.8388593749999997,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,895861f6-b4fd-42d1-abbc-c076023de6a1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.8388593749999997,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,609a1ad2-72ea-41a0-a312-8841a73650d5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.8388593749999997,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,5db99675-9719-447e-abb2-22f469c5448a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,4d3a38e3-4ff3-457e-96ec-8d353bcf59ba -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,9e24a234-7f62-44b3-bf5c-5b6a7f9dcf6e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.003153333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,cacf6d8e-6c04-4b65-be33-606e6f4759e0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1cfd74a2-ea8b-4af1-b546-e91c7b10ad7b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,162b5b2f-1aeb-45d1-9f69-37b3acbd5032 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.003153333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,aecaf0bc-2e1c-4d3c-8b76-8cf77bdaead8 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,35b7d07d-0917-47e8-bacf-9b4646cafa15 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3154f883-a4a2-4d41-83c5-9ae03e95add2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.003153333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,08160ecd-5805-4c43-9f7b-998cfb8baf6c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2f04f18c-8e83-4e6c-863c-ec10d542d15c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2b669c50-8f9b-4970-9372-6105afba1b14 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.003153333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2fb641da-1b5e-420e-a6fd-df7c42f2436a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,fff0043c-a861-49c5-af90-286dc5fad267 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,954d2ada-17e0-4447-a35a-e7ccec80b13e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.003153333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,a93c8dc5-a5bf-4ee8-b288-1f9aa3e04430 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2c11a184-99d8-4f09-b3f9-6c0949c93c57 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,e12e1f33-9df1-4ae5-a3e0-9d789253cf4e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.003153333333333333,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,740d81d2-81e7-4fed-8e48-938999ee1a22 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.853125,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,a9a29a36-7acd-49f6-a4f4-f6839f6959ce -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.853125,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,1a02796d-a7df-49f3-b473-98f36fd22d17 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.853125,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,116b4def-065f-4ae6-936f-4c367c8a6702 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.853125,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,449f7cae-edda-43e7-b4f5-441f7cf4d5f6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.853125,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,dc636b9a-eea2-4363-950d-6554e6bcc79b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.853125,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,edf27e46-dd6d-4b9b-b0d4-a297c8982205 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.853125,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,460bb090-4278-4f42-ae8a-57301cb4a67f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.853125,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,43c680e0-47fc-4338-a92b-27986b67edf4 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.853125,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,2de6a1d0-1e38-4f3e-994a-e035572597e6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.853125,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,6592b859-8a19-4bc7-bbaa-0c26cc4a59c6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.853125,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,61f46319-d021-4cc5-8890-62b9cdb91ae8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.853125,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,e51daa11-82db-4350-81ce-c06d586e47d2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.853125,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,3bc4308d-30d1-403b-86b5-ab306cdd84b7 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.853125,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,4c415e84-ce40-4f0e-b6b5-49b541e5ff61 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.853125,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,83296b4d-9416-4be8-a617-a36891953a82 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.853125,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,02e098bd-5ea1-47de-9c12-a54ecc9a4ebb -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.853125,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,5eab51d1-9916-4823-aab1-e99681cd60b3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.853125,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03890625, NCV_units:TJ/kl",,3115c0b3-ba88-46f0-93bb-609fecf84cdd -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,52c0a221-cce8-4910-ab65-e22401b89886 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,4c59f3bb-980b-4535-944f-fc3ae3f7b6ba -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.003137566666666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,607ee4d0-ea23-4a61-819e-584473d4e52b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,d73568ff-7df2-407d-a301-d34cd887c0d7 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f5edbc97-ce59-48b7-80c8-ce165d1e4489 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.003137566666666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,c1fbcfd2-35b6-425c-bf09-f4f83c9e5449 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,183523bc-65b3-4bb6-afd4-405eb3d2ffe4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,4eb46c79-04d1-48b7-bf0e-6f032db20359 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.003137566666666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,dcadf65a-d301-4e70-94dc-3725c0a8a223 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5c77dbf1-dd3b-4cab-9dc0-dec3948246ea -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f27f9942-c79b-4991-9e78-7ae371e1dadb -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.003137566666666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,346a1183-f3b1-4021-a782-652cb05c2cfc -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,7f7d90fb-7b58-44a6-a384-94954948c601 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,6ba26abd-3b87-41b2-8ee2-69d1f5e2862b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.003137566666666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,dd65d61f-6776-45f1-b7be-458fcbd830f3 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003137566666666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,9fd60eb2-9ce9-4191-adda-bb8ab079e763 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003137566666666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,395c7da9-ad77-4c29-b95e-b53edd83cd7f -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.003137566666666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f3edbbda-904b-4593-846a-bc9426997ea4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.7750135416666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,a8c441ad-5a25-4264-b785-ff45a311d822 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.7750135416666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,2c08fece-a372-448c-97ee-ff655ac8b5aa -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.7750135416666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,da857003-42da-409a-a6fe-2de5b7610b14 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.7750135416666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,6264d537-28c6-447f-8914-15ea04387dc5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.7750135416666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,c76435e1-4403-4e7f-ae0a-c6aecd715fce -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.7750135416666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,c0ea3741-dde2-45f8-9085-1fc81c54543e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.7750135416666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,f6b82a65-6c7c-4e0e-9c5a-c386d02f310f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.7750135416666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,8468fd2d-eae7-4754-9585-1aa105b51bff -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.7750135416666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,060a89a3-b8f0-4730-b41b-d8d9141261fa -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.7750135416666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,985ac113-7125-4490-8ec5-63d5a25fd550 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.7750135416666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,094d2197-0eba-4fc7-a4a8-f114c720a660 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.7750135416666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,3a1ba3a4-cc35-45bb-a1c6-01996831a2ee -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.7750135416666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,bea1cea3-0469-4548-9f70-4bc537ba7d58 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.7750135416666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,fff8419f-0527-4662-a310-86af152cf7d6 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.7750135416666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,f4c3249c-a94e-457a-8b51-8655d9241898 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.7750135416666666,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,936ede8d-dab9-405d-a07b-a3fb24d21a1f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.7750135416666666,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,f938e209-1826-4c96-8b5f-0970c26d6940 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.7750135416666666,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,9250098b-6ad1-4f6c-844e-e83eacf6bb2b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031215139999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,2224dce4-53e6-450c-9ccf-26d1695be8fe -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031215139999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,ecdf7c4a-9b89-4232-b77d-8a23080ac1fc -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031215139999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,971ed60c-35fc-4113-9d69-1c9a44ebe0bf -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031215139999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,5d790d6b-971e-49e3-b7e4-c12abbab5cfa -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031215139999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,3791ef37-ed89-4011-9572-c6deb4c71130 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031215139999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,94e25a4c-3614-4b13-9154-60ef26589b3b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031215139999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,113c726a-c08e-472b-b12c-0c5565bc183a -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031215139999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,89f6c29d-fdc3-41cf-9047-6b61834b14c4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031215139999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,c229971f-799a-4910-8fc9-5bec4e1432b0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031215139999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,e729a9fc-88c9-432b-b8ef-2c95789d9f3a -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031215139999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,99d74c4d-f8a5-486c-b395-ca24dee5bdee -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031215139999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,3125b023-1190-41f1-a5fb-6f18c6ef88da -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031215139999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,2698e152-f666-456e-b990-15942952470b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031215139999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,e4538c6c-3b4a-4926-a2ca-7127dfef61f6 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031215139999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,865cf1fb-bfd3-4a8d-8682-37f82119a760 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031215139999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,ee48caf7-321c-4d35-9e8b-af08ccfa0f27 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031215139999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,c63f3aeb-ea28-4dc1-b55c-f1fe0df05238 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031215139999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,aacba905-e9f9-491b-879b-c4897efbe305 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031054613333333326,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,cdec5341-8293-4484-9395-d46a9686a227 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031054613333333326,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,7e7a2333-46a2-470b-b7cc-84aa126d5c78 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031054613333333326,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,935a6057-2291-4b12-9704-8516e3bd513e -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031054613333333326,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,0550c9aa-9236-4761-87f1-1818aea0171c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031054613333333326,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,9ae68328-c6ce-482b-8b50-cb6d1fb2c113 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031054613333333326,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,10c79d6f-1db3-4d27-996b-950fe69591f7 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031054613333333326,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,816e0a72-8cfa-48c7-93f0-ca9a1ede5198 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031054613333333326,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,7a9ef590-8b6b-468b-bc6b-13a8a621daa8 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031054613333333326,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,de352574-15ef-427d-9390-73a318f0962d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031054613333333326,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,be029f2f-fe97-4a9f-8720-e3cb2a2158da -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031054613333333326,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,e98bd00b-265b-42f7-b33f-1e592eceba1d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031054613333333326,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,0a339fac-5e40-4b3a-b041-14b8ea46f0a4 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031054613333333326,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,7f418392-c8c5-49c5-bc14-8a73267d1664 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031054613333333326,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,ca73de73-b80a-4084-bf4e-920d00d0232b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031054613333333326,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,52f27cd0-a3df-496e-ae9c-7c77990d5e27 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031054613333333326,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,82f853a1-9323-44c5-9cde-94362e538a98 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031054613333333326,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,869e0017-6cfa-46b0-b4f7-ce5e04d5bc65 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031054613333333326,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,568fc4d9-b057-44ca-97e7-eec9d9e48749 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031185953333333328,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,aed6833d-15f0-4baf-8131-70e051f1ebe7 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031185953333333328,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,44872ac2-45a9-4c93-8efc-e40a041f7750 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031185953333333328,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,f39f93c8-ad28-41b7-886b-e377258232a0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031185953333333328,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,4a22ce04-374e-4332-976c-b272d1fe2c42 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031185953333333328,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,399592d3-6f17-40fe-8628-101eea9e8f63 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031185953333333328,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,14201e14-79e9-4a65-aa4b-1b6039274b43 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031185953333333328,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,fd89ebdd-804e-49f7-9417-91fbaa28aef6 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031185953333333328,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,9819e822-6dc9-4613-840b-2caa3e0a1b00 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031185953333333328,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,7bb2dbd3-7344-48e9-b14a-4fd46bac26dc -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031185953333333328,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,724933b3-0523-4f72-a8e5-2a77c3613f88 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031185953333333328,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,468417a0-03fa-4cb8-b86e-dc60b3737e59 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031185953333333328,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,2363487e-3558-41b3-8244-2ab0f8488e88 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031185953333333328,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,c49f0730-835b-4a23-bcbe-f25efaa5948b -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031185953333333328,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,7ba96715-a9f6-4025-be3c-3f10ce2044a1 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031185953333333328,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,8bf36ca6-05d3-40e7-b233-c18c98eba2e9 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031185953333333328,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,97932007-1ba5-4009-98c6-ed2f561db6dd -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031185953333333328,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,75de8438-6641-411f-a940-ecb1c018a5bf -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031185953333333328,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,cedbbe47-92f4-4282-a39e-bb5a0c4f0d8f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,6fb272d8-efec-4b92-b58d-e9043f66badd -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,7e074470-6be6-4f81-b316-678331126a3e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.003153333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2ad8c731-ed63-4da6-8a3f-7c60dc158409 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,587132dd-4483-4a4d-8e66-9851059e7fe9 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,fb9e6b12-f20f-4e71-8700-a5b2f021eda0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.003153333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,114f9a96-ff9e-4cc6-bcee-c77bcd02a4a4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,bd8fddc3-7876-4bf3-a634-276c2cb0b160 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,eef00b46-a46b-4e44-9028-50295ce6c079 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.003153333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,ebc81053-e0d9-403b-baa1-f869e83cccbb -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5f93207c-7cbf-4b98-ab90-3189a52859f4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,4807a464-b220-4823-aec7-84c5099cb686 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.003153333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,7bd78ecf-e524-4686-9d5b-a110fb44bf2b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2968ac88-86a1-46b4-9dea-6e01693445a0 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,fe8216ee-246a-4565-8cb5-44e08fb1e8b9 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.003153333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,402fe99e-02b1-4ae1-b61a-0ef6c484c3e1 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.003153333333333333,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5a5e101c-d4c3-43a3-b361-e84c36057d40 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.003153333333333333,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5cbf6f29-6908-4388-888d-1624708347ba -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.003153333333333333,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,801cfe0a-a639-49d7-8f49-d86d6e998888 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.7889583333333334,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,db4cfa72-1d93-456a-bcc5-f282587c2ce5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.7889583333333334,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,053531fe-c419-4cef-8401-4dc070e6db06 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.7889583333333334,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,5fc0ed1a-94a4-4182-b374-c07f24688b9f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.7889583333333334,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,09fb49da-8825-4c8c-871e-ae830d7ac506 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.7889583333333334,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,8da3117f-e6ef-46df-bcab-34ff6a99af56 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.7889583333333334,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,17122c61-3807-4e28-a46e-77ce9b652e80 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.7889583333333334,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,9adebf6e-f313-4cff-94c1-2c9ae9eac9a5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.7889583333333334,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,e484d0f7-3b4f-48de-b00c-3bd36dead8aa -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.7889583333333334,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,83b98c56-09fa-4a22-916c-68640c3f9aa3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.7889583333333334,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,32b35249-b5ea-4e83-9178-c49971a7664a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.7889583333333334,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,b3640f75-eaf1-48b8-84f0-bf60f16371e8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.7889583333333334,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,df46be67-2b02-493d-89f0-d4ef14589f14 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.7889583333333334,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,d1106dee-5aa3-4fd8-89ae-1490f99a7ceb -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.7889583333333334,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,98616175-1694-4052-9d87-543ce433f1cd -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.7889583333333334,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,64b812ca-f444-47a6-b953-23cca2baf777 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.7889583333333334,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,a989d1b3-3595-48e0-99d3-0420a61eff97 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.7889583333333334,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,5186cadb-3c4a-40a6-9e97-f85685e204d2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.7889583333333334,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.03803125, NCV_units:TJ/kl",,b4e59026-a16c-4c30-b68d-43a712c514f4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031371999999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,e075bcff-120a-485c-bf19-2c5db0abe5d8 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031371999999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,ef6ff6e5-8f79-4d85-8d8c-29d075b4fa0f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031371999999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,48764bc9-4f3e-44d1-a4a0-991f29b402f4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031371999999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,b8a9a9c9-ae77-4f73-b432-4c39b3ef8211 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031371999999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,fc1e58ac-292b-4fe4-89ab-c7588e6657c9 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031371999999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,5aaf1b5a-7083-4bd4-98b4-77b5b4dae2b3 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031371999999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,e02e1809-2c7f-4f3a-b6cc-52b59b8cc8ce -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031371999999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,c66aa7bd-d011-4f36-b335-9fa03f7b1d47 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031371999999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,6948f535-4079-4d0e-96d7-0ba9520370ee -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031371999999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,bb7a6e78-f693-4c5b-967a-884ca109c44e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031371999999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,8e5ae084-ca0a-431a-9b0f-412e73e30b90 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031371999999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,47caa4a8-612d-4215-a99f-f1dc6d12040f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031371999999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,faedbac6-237d-4a51-857c-75873f4fc88b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031371999999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,e7006803-d1a9-4194-ad13-b34971018845 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031371999999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,d985e9e6-1869-4f26-a06e-304f9248b385 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031371999999999997,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,9bdef68d-37f5-4827-b038-d6f3ee9602c5 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031371999999999997,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,04607053-fce5-4d4e-a8e2-618c9f6077c5 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031371999999999997,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,3f23a8bb-2649-4c9c-95c8-4fc85a94613d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031210666666666663,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,9d0a202d-dc7a-46f4-a611-a0c3046dd0cc -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031210666666666663,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,9f3b14cc-0181-4567-b661-38fde22b1402 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031210666666666663,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,b2734cbb-53aa-440f-88de-e45009d2d33a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031210666666666663,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,a8bdb916-8a59-4335-9de2-a3f1817e0117 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031210666666666663,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,f6052360-aae6-45fa-a962-1f4f746b6352 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031210666666666663,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,697d1e58-b333-4d60-96e7-833438baf007 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031210666666666663,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,7bed7cdf-d694-435a-b627-e46a6cacb5a4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031210666666666663,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,6334ccd3-500e-4775-b1d7-8801824e12ed -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031210666666666663,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,1ed5133e-8937-4dc2-8691-01faa0f1c103 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031210666666666663,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,472056e8-5553-4fff-8573-b109a1dd4733 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031210666666666663,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,d2a77465-a0f6-4273-8cac-0f8fbc04c63f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031210666666666663,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,fbe63a33-ff05-4e9b-945c-30fa716fb9ab -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031210666666666663,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,da0ba1c9-8460-4cc1-8c89-d200e73dcb9c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031210666666666663,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,0d765e81-09ad-4851-a06f-dda297ddc31e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031210666666666663,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,78255256-9e3b-4813-978d-b21847569342 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031210666666666663,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,33404aab-ca33-430e-bd55-12c0c461fca5 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031210666666666663,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,1f87545f-6c6d-4ba3-9edb-4b5089e22ba7 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031210666666666663,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,f1cfb473-24c6-433b-aac4-0324c5776e79 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031342666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,23cd7a33-af60-43cb-9b61-40ef13f9ad7f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031342666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,b16a0379-9fc2-451c-9412-00cfae3deaa1 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031342666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,094aac84-2ff9-4c42-8097-81248af439c2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031342666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,20d1f1d3-d06b-4284-ae2a-e87f8573ccf6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031342666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,cab97dd7-e618-4bd2-ae0b-77905da5cd1e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031342666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,e3baa05f-435b-4030-93f0-5238ac1ec0c3 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031342666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,1f014e10-c266-45af-aca7-74946e6432ae -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031342666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,e890123f-d260-4eac-83ea-74f721c7d399 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031342666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,e1668631-6246-455e-8c2f-3c3411b4b3c1 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031342666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,1bc41dee-9f71-4e2f-80b8-66c9cfb95f3a -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031342666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,23236a65-484f-4fba-a2c6-f54f6186df0c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031342666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,daf15825-8b77-45b5-9bc0-a36505159774 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031342666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,dbbcbb9a-6761-42ba-8ed1-fb7bdb24eb15 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031342666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,8ed11bd0-3afe-43bc-b8f6-6e1122572b4f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031342666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,c1638939-4ffb-44d0-a951-f5f638d41b42 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031342666666666665,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,a772a69d-e9f6-49c9-8913-2593134d483f -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031342666666666665,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,8cd8bdba-5140-4868-805a-1f9e66ae8829 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031342666666666665,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,29801ff2-7f11-4b5d-9825-f5fe14ac104e -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0022516266666666664,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,d346b8b2-abb5-4a19-aaa7-c9e42d725740 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0022516266666666664,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,63b6d21e-a842-4238-a4ba-112c6267388a -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,0.0022516266666666664,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,95574384-b65a-4cd9-8b3f-5b22615dc17c -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0022516266666666664,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,99ab3795-46f1-479c-9339-4d75aff56c1d -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0022516266666666664,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,4cfeff57-4cf8-4ee2-94a6-65069f3081a9 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,0.0022516266666666664,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,de4059e8-4606-430d-8ec6-af3d4f6e2251 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0022516266666666664,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,0ae50ae7-e40e-4bec-8690-96aaa91ba476 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0022516266666666664,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,b4f134d8-3e77-4a0f-b5f7-aecfde59bd51 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,0.0022516266666666664,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3c358075-faea-43d4-ad01-7e2967835f31 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0022516266666666664,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,a133c2f8-2b66-4270-954f-e6cf4f7ad06a -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0022516266666666664,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,eb0ac66e-a395-4121-a56a-a7ae1a7179e2 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,0.0022516266666666664,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,4a2c2fd3-60a0-4149-9c25-14f54fc4f572 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0022516266666666664,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e6b4e7f3-88de-44ae-944a-ac1e71e549da -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0022516266666666664,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,896951da-16b0-4840-a14d-aaea66acc0b8 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,0.0022516266666666664,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,7c0e6553-6c9d-4758-b0c8-f15ad28eefb1 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0022516266666666664,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,cb67cdd5-ffd1-4e9a-96ee-9d6ea6d817c7 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0022516266666666664,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3cfa0d76-3a9c-4acd-9a2b-420d9b6a9f96 -CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,0.0022516266666666664,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8bcabb31-746b-4027-a689-531c3ca019a1 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.328608333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,7a9f0478-32de-4bd6-bb32-4092a8ebf548 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.328608333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,ee14e48e-931b-4dfd-84e3-a1d06a5f929b -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.328608333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,2681a8f0-e63a-4877-be69-dcaf5c7bf42b -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.328608333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,69b91344-eafb-484a-ab2a-17ec149f0cb7 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.328608333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,e2889855-5a46-4c8f-9c6d-cd37e2b3dee9 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.328608333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,c58f960d-911c-479c-a34f-97bc4e6d9206 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.328608333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,5f15e3cb-fcfe-457c-ab95-bafd3a14cbf4 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.328608333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,ffc28a83-491f-4f53-8dee-52c2edb85ff3 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.328608333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,aed86a3c-9af5-46c5-817e-df0f942aacab -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.328608333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,d030aa99-6ae0-496e-8251-ef7bcbb81fd8 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.328608333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,075a1a74-5637-4868-aac5-f7eb3c6bcd7a -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.328608333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,21d0903a-53e2-4921-85d2-4609062a6fea -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.328608333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,6f48465d-d515-4bb1-8eaa-931106e0586a -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.328608333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,5a108695-e331-4f16-8b77-1b02f2ebedbb -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.328608333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,2b5acbdf-de6c-4418-a0a7-d061c0937062 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.328608333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,95d1bd22-ba73-4561-815d-2031d8ddd7ae -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.328608333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,48e5854e-551e-4b5a-a7fb-3e41bbd9cbd3 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.328608333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,8dcfec19-0da9-461a-9218-06fe8b8501f0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,62c2a0ff-14f2-4b5a-b0d8-ac08d9de5d51 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9d331420-982f-4dee-bb64-5009ff870497 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9ab53285-40f1-4d00-a54f-ec1367da9f49 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,538be49b-e105-4b16-a2d7-66bbbe0edd3c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,81efa617-1105-4616-8bc2-58a528e76670 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,fb2b005d-1766-48d6-b63c-59afc41ad91a -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e690979c-4413-4642-b2b1-e781fb4dfa1d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8814b9ba-b95b-4e98-bff6-636ac2e4aa8d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,72736164-4c58-4691-8c87-d202730de8a6 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,938375a0-7530-48d3-a2c9-e18bb5706321 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,fcfd4942-2af4-4b37-b459-352cb671c0e0 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,1b17d11c-b6d5-47e0-b7a2-998827628f7f -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,4ed38f7b-fba2-44fa-8edf-59ed9d9e2d9f -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e46ec2ca-0f15-4110-a42a-b35628321c21 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,18db2ffd-8ec5-437f-b97b-a441185c2274 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,dc1eea76-b826-4c3a-a67c-d5cd95f80b6c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,1497f257-c044-4bae-b0bb-38709940e6ff -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,897c318d-d1eb-40dc-ba62-1e797a881d79 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,13c46afb-98eb-4ee4-b1fd-2f70e7520cb5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,ad250df7-2b70-4f0b-a401-ee81d8edef67 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,33cc8347-9f2b-484e-bc10-f0c87e61ac2c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,57f848a6-69ef-4c81-8d45-95719c0b80a1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,1625a06f-ff73-4326-a444-1e9af46960e5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,a65266ac-5207-4b83-a7dd-ff8a6a90bb50 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,3fb72f15-8aa6-48d4-8adb-64ac97c846b1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,b5481f38-efca-43ec-91b5-609d7bdd6b57 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,26710281-516f-498e-949c-06ebfef2c8f9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,4f599f8d-bbc4-4c9e-9c63-9bcea904bd40 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,1a8c3775-4d72-4296-8b1c-7ad2e3d00d3f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,d5f73802-b4de-48f7-b7f5-7e4c0c4352e7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,5724450a-d1ea-421d-9a98-6e7bca77d7bb -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,cfef4dfe-4020-4855-927d-6eae18a501b7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,bec964d6-e81b-405d-8dfc-ece1ec565b17 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,8123acc6-f03b-4539-8a2c-40e4287c63be -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,b2011029-9913-427e-96cc-60ef2ea9f7aa -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,88348513-b822-4a7a-8875-42fbca0da3cb -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,24365ea8-e0b7-4338-a913-805d4b41787c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,bb24bb53-ccfe-458a-b9c3-d17cfae88da5 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,89853d85-7304-4812-b4b3-a01e5fc9be6c -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,fd91f558-1675-45c7-8f5c-cb2d64e12b90 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,cd8dec2b-b531-457c-8553-72fa272f2399 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,b3a18687-b711-4d40-9b54-a442b6b2d173 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9a44503e-fd51-4197-848e-4d59978e9df1 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,d5b828da-879d-417e-ba23-4220fe06270b -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,a22e45da-3190-47c9-9857-e1a85ac6d466 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3117a195-0e4d-4151-a2e4-803aa4285e58 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,840728b7-37d1-404d-99d9-5707326613aa -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,5c6fce99-bbfd-4133-be6a-eec75485726e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,a4f5e502-ad8c-4be6-b9d8-9d274c6d66ed -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,6888e109-5aac-4990-a2b6-beb503e743c3 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f376c76a-20e5-40cb-9bc8-51be9eb5f348 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031256133333333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,0d2ca1fb-e489-4d36-b5bb-f8d137116694 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031256133333333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,eca81e49-ae83-4233-a4ed-e053b21220b8 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0031256133333333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,616200a7-65e7-40ab-ba68-b0048e2fd9e9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,31a0fca5-b338-4c34-a8a9-484375d02c0e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,fe01b947-9ce0-4124-9000-705bf256818b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,79cfe084-920d-41b5-8fe3-bfa6cd7ee7b1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,4c0737e6-c8bf-491b-872c-07587ea2137c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,789cd519-aab8-4114-83c1-1e5ea9331eb2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,857af3e7-ef56-43ef-b0cd-4db10b7c5d5f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,29f3475c-5f61-43f4-9145-32f73ae4670a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,854e27aa-a6d6-452f-bb1a-e3aaed1370b6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,7ffeb439-304c-4e76-ad0b-9ed650bc5f8a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,ebe5da98-2bd5-482c-a5d0-a5b05a4a9cdc -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,6576545a-e711-41a6-b876-694046f4135a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,02e3d6bc-ebe1-4906-90ae-9b59f34dbebb -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,3bd3c8b9-6ce9-408b-a0ca-2e4244291d3e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,9e097460-a8b5-474f-9799-e2c81e66d373 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,bb2c1e8f-f91c-453d-adbf-07357f102336 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.2324760416666667,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,1402e84c-aacf-4d4d-ba50-5f719adce47e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.2324760416666667,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,f5aa3f8b-f291-4c60-98ce-1af85e0313c5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.2324760416666667,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04178125, NCV_units:TJ/kl",,05157101-35bd-4b55-b886-955c6f9a087c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3bce9619-23c9-4502-a798-40875d499503 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0058a87a-655b-4cf7-a18d-e78cd5876c80 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,177212f2-2624-4161-9ae9-8894488688ce -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e20be723-9a98-417f-964f-b0722589cd4d -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,223ac45f-7063-4ae6-8176-640f2f3f1ef8 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,958fe025-5d52-4384-885d-c875bf9e847f -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,304f6fe7-b0b3-4e0a-a238-3eb3f7dfadbb -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d5c9bacd-8fd5-4e32-9c6d-59d79e7ee552 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3e96fd1f-125c-40e5-a414-4f99ad6df40c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,356875b4-c433-4000-b928-ba5ae047db7c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,010b7d82-9430-4f03-80ed-64de64fcc85c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,aef0d4df-238b-49cf-95a5-a6f2d081f378 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,487f9190-1692-46c1-ba29-ec900c1022b1 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9dcc9aea-3dd9-47a1-894c-9d93ac3da0e8 -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,82df507c-460f-452f-939a-7014f67304de -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,220aa038-ddd1-4722-8e11-28bb057ec6cf -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,aaa91dfc-1658-49ea-991e-74325419387c -CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bffec590-9926-4eee-aebc-356b7899d6f7 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,45d43c83-4b53-4301-8f1c-844f05720a4b -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cc85ee7f-57e6-46df-8ec1-4bb1a115776a -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,79b49263-3fa1-473a-bfed-d8c78870c755 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a7027689-31b6-4058-9cec-51bb1d1f6834 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,04ea065c-a441-48a5-9f5e-3dc501aee835 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3e8c25ab-7c86-4220-b8f2-06c2ea230145 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,864e35bc-83fb-44ee-b44b-07e4996076b3 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ac43460d-cc06-42ee-8e1e-ff635f6727a2 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c5a122e4-90fc-4dbf-a80c-d5404ed62e1f -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d0107da1-caa8-4bf8-940f-16c87a038970 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d8e6127c-8209-4c20-b5bf-f9aa9232229e -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,46def265-486b-4b4b-bc11-a92cab1aacf1 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1109b266-f5d1-49c4-a204-b7c385112f1c -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9437e774-1bf7-4553-bd89-c2ad2a3019d8 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ce890d48-2782-47c0-8914-bb57c70e8d17 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f352af15-05ce-487f-9074-2257a2588f7d -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ee39eb89-73d2-4c23-bdb5-b47c10fadde6 -CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,82ebe7f8-2db2-458a-9781-fce140197d28 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a1e464f8-ad82-4938-9ad0-b8f214c8cf5a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,047b1ce3-92be-4101-8a8c-b32ae899f808 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,932396d8-447b-4ed5-af37-2d3877a8692b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c6ab430b-b382-412b-99ee-4eb8028c7079 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b657cb6a-2421-47d9-954d-3ddbaa3b90e3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ba3739b7-4e89-4e59-93a9-1f2112917a39 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9ae4f72a-8fee-4ce6-9275-6a987417ee31 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,684332eb-6aff-44b3-a5b2-b9deabbcd81e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,14fe26b3-eaee-49bb-91cd-9b1785b81af4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,150bb3b8-3967-41d0-8a07-8a778921cac5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cb6cdfc5-3da6-429f-9850-08920f1a6c27 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8c648259-21d5-48b3-82f0-fcd5244410be -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6813ac2a-a62b-4253-918d-de893ebde6c4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1e1ed4f3-a2e4-494e-b1aa-f81cb376aa48 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,68fbcdfa-e563-4d3d-9d25-1dd0e615be08 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,2d586087-4eeb-40c8-a12e-95a31fb704c9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,345749a2-fdcc-42a5-9469-7edf1f941455 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,3368d042-d41a-4e7e-b639-9bfb11d08a21 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3a6cde7d-4a37-4e6e-9011-4b4d52717f7e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d2e7900b-f87e-4c45-807e-2e92c1e989e8 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cc71bd97-4cb6-4d9c-be03-7e8de99996a6 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3ae8b564-66d8-4906-a5c0-f89411bac9c1 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,88ab1e0d-3b56-41ef-9c92-07670e385352 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,169cf6d0-effd-4334-ad7e-8f477251ab0d -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ea0727ff-f6b1-4deb-b0f4-d9a148c1ba57 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5eb04074-1aae-43ba-8708-80ca65434557 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0f3a65b3-c781-48c7-a66b-aeb5720bd054 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2360c7b3-7e47-42e3-90bd-c277afc854e5 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2415dd56-aea3-407a-94f3-ba4e1b81fbaf -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ddcc6727-52b1-4a37-aa41-4875d137ca0e -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,867835fb-2d57-4e5d-a2cc-ea4f00f163ca -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,90117f86-0563-43dd-b163-b60ac10cacd2 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b2e1edc5-5b94-4d2e-a53a-3cdf26bc2eee -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,37529118-a27e-424c-b962-c147fee05ff8 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4fd77a70-fecd-4f91-8715-899d2c4940c4 -CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,dbc73ad0-00f9-4ac2-acfd-f2bee5513698 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2bf8108a-97f9-46c3-91d3-8c8a13f7c3ce -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7d910e6c-27bc-48c0-b8df-14887fc2d450 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,31768918-1ffa-4dd4-baef-cf69e2bd05c3 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cd074017-8654-4320-8c4e-b6ad966f1424 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a4603628-564d-48d5-aaf1-0b61f6ddff9b -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,599ef434-f33f-4d66-ace6-a1477281ad62 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5c737782-64dd-4979-8b2b-c48506750380 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,92bbaec0-5741-4bb7-822a-db1b550ace7f -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,33853dcf-0881-48ec-947f-c456af842272 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,aea28001-11c9-49f6-b46d-69b5d73343c0 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1a971b8e-f34c-47b5-a53e-22eea491ce96 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3a37e56e-aabc-4616-ae14-84bd880ce87c -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b5a93e0a-c915-434e-973a-222f2d99907b -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,61a50588-f7fe-490c-9c3a-325742bc1a4b -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,16cb7f75-0f84-4227-9a1c-7c487791fc25 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c556712c-d3f7-43ec-9c91-22b658b417e8 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0723195b-b6f6-40bb-be8f-bdaf8f781332 -CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,45bf6563-126c-45b3-b94d-8a7d0d129846 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,23a7912b-32a3-413c-870e-9aec3f0fb55f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,10217f1d-e3e3-4da9-aca6-da1938b196b6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fce03a67-f7e3-4d0f-9d40-87fcb0bda836 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,13966d75-d2b5-408c-a67f-14c83105e792 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9c4fcc08-7e08-4401-a794-3c0ee2ee31af -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,93f56d5b-763c-4033-bb91-040cda465a54 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,85246c3b-af09-46c4-bd22-ce43515fe539 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cfef6797-32f6-43ea-a69e-9b5c7b608b37 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e3add856-10b8-4731-97a2-91f421740610 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cad27c9b-cc45-407a-b88e-a9ae613514e1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,41987ed1-55f4-4abf-bd8a-41715c221015 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4e1099f9-7b34-4028-8ee2-0b6b9ccb752f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cc53e55b-15b3-4413-9b6a-ddf5cea8531b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,3569a02f-7b1c-484f-b4c4-72a5c4409416 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,08787064-c90a-4c91-89cb-947654fbffb1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b53558e7-6df1-47fe-9008-8026da90c217 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1ddf7849-1cc2-4a7e-a534-bf0e337f76e5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f61b7fc3-9f44-4b89-8a0d-e4aee0eeecdc -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,195ac736-9ca0-45cc-9c37-2401df08f8ee -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,480896b5-c324-4082-8cd6-576c49083ab6 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5b5483be-a8d8-4329-863a-a15c9ad12d6e -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2dfe2d81-bb21-498a-9fbc-2bfb8b607b33 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2fda8744-1643-4900-ad0f-317c5fff3038 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e1e79b8c-e1c2-48cd-bb61-4a89245248c8 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ce885078-da0a-45fd-86e4-6bfa9e2c2208 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,33355e9c-5d48-407e-8361-968c6d3d471d -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,60c5ccc6-64eb-46ff-9126-356f86506a8a -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,95ba5220-3e4d-452a-ad53-e248db343eef -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bf2d7bb9-e50d-4dc6-93e3-8f749ee42456 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6edc2dbf-2545-4923-9b74-5143f1301290 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5d88d662-d4ca-48cb-b2bb-4916868216b4 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6c138141-f744-4286-bdee-affa2aa13b5c -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3bb1dc4e-e53d-4fe9-b47f-a52d856934ef -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0026928,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,28cac243-d210-4db6-8cbe-6fc32ebb6ce6 -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0026928,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c7a5a84e-f57a-4c31-b85a-71c2a42b6b0f -CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0026928,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,415efdd7-e942-47da-a09a-7fe69d4a9301 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,44b0763f-5c96-4c37-89a4-3f1b786406f2 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ed709572-103c-4e50-a327-64e75ca63125 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b3bf84f5-3e56-415c-80b5-030e6ad498e3 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6ab8671e-45e5-49e5-93a7-e63522e3ecc7 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,42293ac8-0b65-4a8a-8a42-a1233a37d8ca -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c534c789-551c-490a-97a0-9c6d0c7fe723 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2965f021-248d-44e3-9d83-ccd76a9682f3 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f0ca7ec2-ee4e-41f6-9865-500273067210 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,507422e1-9efa-45f6-95a4-a97098841bb0 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b21b29ec-ff66-4756-8284-97e5da235fd8 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,44f62856-be20-4ade-9341-e7f71b6669fc -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6400fe78-4dd3-43e5-be03-306c5383622f -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a05dd4aa-356b-4fd5-a996-7e5587a6197a -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,30729594-b9de-41ff-9686-458064edf13e -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4d77bb2a-920f-4ddb-8aff-691d790a5ad5 -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.056328,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f4f7781-0443-49c3-a362-9c0027c8219a -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.056328,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bc9a546e-140b-45b5-84c4-bc9f23365e0a -CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.056328,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f9b847b2-3b7d-444d-b1d9-152d1b12b44a -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1417ec90-f63d-4366-9bf1-97b2994a8113 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7fe83d23-f5b7-4f8b-8aec-2039a52e71b8 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8cc1cd0b-260c-4ca5-8343-598aafcae55f -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ae357eed-917d-45ed-85c2-34814c62021c -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,efa4b38d-3cce-462c-b786-1948f818a1d8 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,aa819f20-05bf-4b7b-ad66-1fd169666485 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,311d57a6-43d6-4b03-8bcf-0f4a5e01f0a6 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b2b06290-87b4-4ece-acbf-f3d4bb29b936 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7cbe4a2c-cf6a-435e-8d7b-8a96341f680b -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e66fca5f-8501-4edd-9093-675deaa44f59 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,dfd281bd-2d92-4638-ad38-d032631b9498 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,57a5ec2d-723e-4510-8022-7c8a4a56ae77 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,64c43fd5-2670-460f-9838-8ad47440ce6d -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1bdcd514-959f-46e6-bb46-e6ca368018cd -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,739262cb-8eff-4e9c-a32c-2a5af5f5e339 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.002252765625,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,489d8533-e453-4d82-b9c3-e8a3ef5a9f00 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.002252765625,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,36a2d6eb-577d-4fcb-98e0-664fa734adb9 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.002252765625,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8749d90e-fd46-4e08-bb0f-6e784d9768d0 -CH4,world,kg/kg,,I.1.1,,0.00468,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,5846c944-9eb7-4efd-bf49-1bc3b6966a96 -CH4,world,kg/kg,,I.1.1,,0.00468,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,22a8936f-5574-407c-a573-3b312abedfc3 -CH4,world,kg/kg,,I.1.1,,0.00468,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8d8a64b8-190b-4493-b9b9-61c60ebd0e85 -CH4,world,kg/kg,,I.2.1,,0.00468,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,54162d80-6b12-4b1a-9f18-a4a4248f5c27 -CH4,world,kg/kg,,I.2.1,,0.00468,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,09a5be1f-6927-401e-977f-9953850e0361 -CH4,world,kg/kg,,I.2.1,,0.00468,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,354d0922-97d1-42a7-bc0b-d28214a438f6 -CH4,world,kg/kg,,I.3.1,,0.00468,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,4b357c70-d19f-47d7-ac6e-71e29fdcfe6e -CH4,world,kg/kg,,I.3.1,,0.00468,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,68a997d7-ce3a-45b0-99f0-db47332cdc5d -CH4,world,kg/kg,,I.3.1,,0.00468,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,ed17390e-0ee7-4da0-aecb-8d102edf9456 -CH4,world,kg/kg,,I.4.1,,0.00468,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,1fe844dc-c55b-4a51-9838-e593c3b38af0 -CH4,world,kg/kg,,I.4.1,,0.00468,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,09956c1a-8024-4c73-8663-458a42fc6fd8 -CH4,world,kg/kg,,I.4.1,,0.00468,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,50c5a911-004e-4d5a-9c3c-9010fc4b3856 -CH4,world,kg/kg,,I.5.1,,0.00468,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,ff25fa71-6db8-4212-97ee-8fa1265a2607 -CH4,world,kg/kg,,I.5.1,,0.00468,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,14202930-1a87-4cb5-95b8-84b10516d3c0 -CH4,world,kg/kg,,I.5.1,,0.00468,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,fec3c3dd-adf2-4fba-bfd3-976ff4282143 -CH4,world,kg/kg,,I.6.1,,0.00468,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,c116b557-b083-42c4-828e-9e00a9e56481 -CH4,world,kg/kg,,I.6.1,,0.00468,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,fc44334b-6c30-4e33-a9ee-65ffc68fb0ab -CH4,world,kg/kg,,I.6.1,,0.00468,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,85e4a3cd-116a-46b5-b3e4-fc9fd26e701f -CH4,world,kg/t,,I.1.1,,5.118,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,9d44c1a9-3934-45eb-b1de-060489fb3b20 -CH4,world,kg/t,,I.1.1,,5.118,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,ed442c1e-8194-4f45-bb80-7eb8fdd627d3 -CH4,world,kg/t,,I.1.1,,5.118,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,05667b03-2e28-4b85-b791-99e74cfe5b9e -CH4,world,kg/t,,I.2.1,,5.118,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,d3731559-7114-438d-b60b-d3f0bb43ca87 -CH4,world,kg/t,,I.2.1,,5.118,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,c73b080a-5492-4868-8042-a49eb069bb16 -CH4,world,kg/t,,I.2.1,,5.118,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,14faa724-a11c-4534-9142-2f38bb9deed0 -CH4,world,kg/t,,I.3.1,,5.118,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,072a8b27-681d-45a5-b331-3a089a500e20 -CH4,world,kg/t,,I.3.1,,5.118,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3d67800f-2e09-49f5-ac4f-7b17ea4af34f -CH4,world,kg/t,,I.3.1,,5.118,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,e46d7f31-f40a-4c33-a7d0-2fe0a3db6433 -CH4,world,kg/t,,I.4.1,,5.118,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3b62adac-80d3-46a5-8df1-0b3a5d6e0200 -CH4,world,kg/t,,I.4.1,,5.118,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,7e4c085c-2920-4432-abdd-e0704c81e4f3 -CH4,world,kg/t,,I.4.1,,5.118,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,d87d227b-4566-41cd-8bc0-ce4b8b4e1a0a -CH4,world,kg/t,,I.5.1,,5.118,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,fa5bb924-32db-4fdc-b83b-fbadd88fefc4 -CH4,world,kg/t,,I.5.1,,5.118,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,286f56f4-ea6c-404e-bf19-8c8e400fc3a0 -CH4,world,kg/t,,I.5.1,,5.118,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,be13ceb3-653d-433f-971c-ca735e35be5b -CH4,world,kg/t,,I.6.1,,5.118,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,b34320a3-89b8-4fc3-bec7-7e52ff936f75 -CH4,world,kg/t,,I.6.1,,5.118,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,06ea2a6a-851b-4338-807f-a1f6c185014d -CH4,world,kg/t,,I.6.1,,5.118,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,627e846d-f2a0-43c2-a1a2-2e4409de61b9 -CH4,world,kg/kg,,I.1.1,,0.0156,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f3f40f02-3dfe-4e6d-8eb4-04f958ccd1e0 -CH4,world,kg/kg,,I.1.1,,0.0156,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,27b8c22d-4c55-40e0-a6ef-4f0a5c5e0329 -CH4,world,kg/kg,,I.1.1,,0.0156,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,ef5ebcd9-997e-4f45-8f3d-3d9403148f2c -CH4,world,kg/kg,,I.2.1,,0.0156,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,fd86dd6b-b5d9-4657-870c-08ae242d59be -CH4,world,kg/kg,,I.2.1,,0.0156,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,588b9d98-b321-4d1e-99b3-e7f15f28fec2 -CH4,world,kg/kg,,I.2.1,,0.0156,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,e656a4e4-054c-4a81-b99f-02a27c8ee544 -CH4,world,kg/kg,,I.3.1,,0.0156,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,18b90ab3-57d5-4202-9449-70452c46f315 -CH4,world,kg/kg,,I.3.1,,0.0156,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,ee65c7c3-5916-4a9b-a27e-39f23bae4df9 -CH4,world,kg/kg,,I.3.1,,0.0156,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,b2530320-2275-47ff-a1b7-f90b6a4d6a5e -CH4,world,kg/kg,,I.4.1,,0.0156,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,fd40183d-5287-4ee8-a6f0-923aecc2307d -CH4,world,kg/kg,,I.4.1,,0.0156,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,9957e47a-c3f9-4410-a5ba-586ff1b82037 -CH4,world,kg/kg,,I.4.1,,0.0156,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8e694e52-c99b-4860-b37e-e8aecac5a04a -CH4,world,kg/kg,,I.5.1,,0.0156,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,9626c4d7-e010-4a33-9e7f-fbfa0e999f3b -CH4,world,kg/kg,,I.5.1,,0.0156,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,ed8061e2-7b7d-464f-bff6-924504acf451 -CH4,world,kg/kg,,I.5.1,,0.0156,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,66d93095-b5d7-4334-b054-b3dbb83d6602 -CH4,world,kg/kg,,I.6.1,,0.0156,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,c026ed43-a578-429c-8338-c305d8d9b31e -CH4,world,kg/kg,,I.6.1,,0.0156,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,5b468250-945a-4126-a7ca-096ec3480d61 -CH4,world,kg/kg,,I.6.1,,0.0156,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,e2d6a4d9-f72e-42d6-b64b-d41479a087bc -CH4,world,kg/t,,I.1.1,,17.06,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,a8c1f4ce-a8c6-4b53-b3d5-f4c915b4ec70 -CH4,world,kg/t,,I.1.1,,17.06,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,7d55b70b-8e49-4274-8321-b15d704c5ce0 -CH4,world,kg/t,,I.1.1,,17.06,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f4aaf51b-69ce-4998-b3dd-18fd91cbde9e -CH4,world,kg/t,,I.2.1,,17.06,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,d11d6e4c-9903-4329-8f62-18b1cd23d875 -CH4,world,kg/t,,I.2.1,,17.06,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,34cccff8-1359-44b3-a9c3-2e3894e4a46d -CH4,world,kg/t,,I.2.1,,17.06,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,909abd59-d2e6-4b00-8092-d431ee3f315c -CH4,world,kg/t,,I.3.1,,17.06,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,c9198f25-8d33-48bb-bdae-2178be7bf882 -CH4,world,kg/t,,I.3.1,,17.06,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,9a75adeb-22cf-4984-8fb8-04f2b020712d -CH4,world,kg/t,,I.3.1,,17.06,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,9e230b78-4510-48cb-a7f6-c6c290329704 -CH4,world,kg/t,,I.4.1,,17.06,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,62f8cd0a-e498-4db4-8a66-0880c6a7b456 -CH4,world,kg/t,,I.4.1,,17.06,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8edb9ff8-b7f9-4581-84bb-92c8e7c3d1ae -CH4,world,kg/t,,I.4.1,,17.06,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,2fac3eae-acf9-426c-a403-d22e40af3a09 -CH4,world,kg/t,,I.5.1,,17.06,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f4089afc-5713-46d8-aba2-e5316e91f48f -CH4,world,kg/t,,I.5.1,,17.06,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,d081219b-545d-43ec-8b3c-3aabf9e3c2f5 -CH4,world,kg/t,,I.5.1,,17.06,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,7b1f3100-b1cf-42b1-9359-040ad2871fd7 -CH4,world,kg/t,,I.6.1,,17.06,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,84deceed-ec73-428f-9b00-6eef9f1492c0 -CH4,world,kg/t,,I.6.1,,17.06,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,c5af500a-b116-43e5-97f2-f8cb3b72b7e4 -CH4,world,kg/t,,I.6.1,,17.06,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,b8cac484-b97f-4292-b2fd-38edf04fdc37 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,9ca5a6ff-b0ca-4cef-a83b-f804c06da116 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,cd55e291-c365-457d-ac7c-3d9a35faae3b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,bdf38c24-b06f-4fb8-8119-86cf537b545c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,bd457de7-0a08-4ca7-b84c-973ed5818cc4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d39724bb-05dd-406d-9249-9f81c922f2c9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,0bb04e75-c030-422e-9aef-79e1fb2a641c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8d04883f-e3af-48de-9161-b69ccd36b68f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,604d7884-b154-4668-8626-2735f55c2a7c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,0b237bde-ce64-4d20-b920-271181a0eaee -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,aacfc218-e905-4cd0-be52-37fe97921820 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,b827ba84-d187-46f7-9189-01167fa987e8 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,9d7eca4a-1e2b-4aa6-adb3-df809d801faa -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,408f0f3d-1063-4b0d-a835-f756838d04f2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,e9bb31b2-8b5b-4dd3-a64d-8101283afc11 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,58ccbbb4-9950-455f-9ed5-77d3ce719671 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c5f7a354-d93e-4135-a82e-2e78a344f350 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,67a5971d-7539-45a5-9abd-043258bbd753 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4f52373b-7b15-47e8-ad1c-6ae9fae64479 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,afe3dcaa-f310-4fc7-8bc0-2d172f21bf27 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,bee0af59-d11b-49e9-8c18-765acff4f7a9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3b6d665e-1db5-4681-b306-8aad6bd673d7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2b45ad68-6ac1-42d1-b1b4-040a647a3ccc -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,0ef4001a-f294-48b4-b06a-1dc765ec4c03 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,894d4efe-8069-4f6a-9640-cff1a1aa3e98 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,fffe10bd-1446-4dfc-a86a-a90ddac5cec2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,48201ce8-cf9f-46ee-a228-bf51a7695fc4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4f529d49-1da9-4aef-90a0-f11ad744165f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2bc7f87e-14d4-4eb4-8ef8-87c1546c3b5e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7b7cc8e8-095d-4c12-a394-931cc10b8f87 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,cdeac3e8-a940-40cf-bcf9-6a70ca0ffcfa -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,420325a3-e7c2-4364-be71-c0eeee624898 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,934c920c-af1e-4673-9284-ade32f5d44ba -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f353d47c-9bbb-4953-8f07-3dc11e28725b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,b225ce99-0624-4e28-8ff8-2ae8a73923e8 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,91b1398f-832c-45d9-8b75-354c06ae24cc -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,e0a7ff00-cd30-439c-b62c-ab9da7e0305e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d1176616-b899-4348-991f-04b390970f46 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,18dfffec-254f-45f3-ab70-c9336ec8184d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,40fb20fb-7376-4243-aaf0-630313119c51 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,efc8f67f-17cd-412a-aef6-6bc361c349c2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ff64e75b-3b9f-4000-a9e6-f09d76d4d5af -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,a2e79d0e-2153-4e28-82a7-62b2060a6bc7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4d16a2a2-c9e1-48f3-95e8-3aaf4f0c033f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7639058e-4976-4cf4-a03b-2f494e2ba28b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1abe3217-f795-4002-87be-91cc26433d1c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4e231ba6-ec4d-4b41-b3ea-ba5d3a521ff1 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8863fff9-3373-47f0-afab-1baa92ad8c14 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f7f7acb7-3e99-40df-a7dc-0374618c69f5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,0119fa1e-0073-47a8-8892-5af6d26589f0 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,90378fcd-a608-4b5b-b6b0-453c706cc523 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3e052f55-810a-40c3-aa60-44eefd9ec851 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,418ee344-a872-4f3a-8269-7f81bc6be9e4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,e09a3907-cc48-4641-af16-a09ebe46c7a5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,dc2f0eec-a41b-49ea-8262-f13cf315fcd2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3ed840ef-9752-4b32-9c1f-f8740a8937df -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,fab45148-6766-45c0-a435-bf963d8c5599 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,647dbdf3-d2c5-4879-8125-c0e911117a5a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ac5d03c9-6c60-40fb-9eaa-72f00650d93c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7943f475-a06b-48e2-b830-448325b5afbb -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,702b686e-7acf-4257-a6b5-3b4fccab6b55 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8be0e272-b074-4db5-b9f3-3597d513b271 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,075a7c8b-93a3-4d3b-902f-079c34157b0f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4ed09a42-c36b-40f1-9e26-004e7fed40b9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ab3e0747-d475-46ca-a848-228e6f4cff7b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ad6f4c53-700d-4479-b58c-eac5b180f0c2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ed872545-d5d0-458c-b903-2479e50d2d3e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5f5f6a25-74cc-415b-bd8e-938f1c544b11 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,9afe7063-f868-4af2-980a-c12ef18710d4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2da2b3b2-e9e7-49f8-ac44-dd2eaac43e70 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2a69c6ea-6e8d-460d-a9b1-c12072ef5211 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d1f24eb6-2ad5-4912-864c-0a904326a24f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,76357c1f-8d0b-414c-af97-35ad24d64b17 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,06ada361-49d4-40a5-a09d-0a6f066fdf74 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5a709fda-547d-44bc-8c81-149ab3a32b81 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,83c807ac-ba52-4573-8e01-cbefb3a40cea -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,0c01c1b2-2d5d-44e7-b300-f004e69236f6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,30b8d6b4-46b9-4a2b-87da-cabe322c9420 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,b5771c71-76bc-48c8-bbca-cb5896fd9512 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2922f98f-5a16-4b4e-86af-cac3e5fe53f5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d56bdd8a-06d5-466a-83f3-e56db2b8a0f7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,edb5a4f5-e847-406b-8f53-ffbc56f2fad5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,79d63751-bc9d-4eef-acb2-f40ad8c0b7c7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,65af1f36-6893-49a5-b426-580a84159325 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,007cb44a-a466-4ba3-8da6-5a008fdb5a59 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,aeeda7c8-11d4-4959-81be-760f47402be7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,528cc186-e9b4-45b1-8ac7-3e24ecbc30a0 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,09bc9aed-1c5c-45a1-a959-95e18c0f9999 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,a0127ef8-c83c-4f67-9529-57f8bf9de1a4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,9b82cd57-6f66-4bf4-8542-2c0f443fba42 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1bc1245a-36e1-4b68-be1f-a753da88ae62 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,e2ea855f-e01f-4540-bdd0-d044227138b6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,5a059897-2575-4a49-a1d4-8bf85774e558 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,c37e16fb-a06b-4b9f-b572-4389c7996421 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,5362841d-002d-4f02-9178-603a521e0afd -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,2d2a9434-0d52-4070-94ac-5e7f3a02a6af -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9f4825e8-d4b3-4379-a644-04a2d204ae38 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,33c6ace9-4ec1-45a8-a5b9-514038ef3fe8 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,b0047820-87ed-462c-84cc-4297167fda54 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,784f40da-27ba-4e66-b773-4843d188bef4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,4fcc2276-0e79-4470-883b-8ef7fcfab233 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,5cd520fb-935d-4e7a-a6ac-b5141af8ba72 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,4060d852-9d59-4fb4-8a5e-5a8eedaa1fb3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,122a5caf-948d-4271-9a94-3aa4c7444bc6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,d7496854-c098-47a0-ad04-12b4897f0633 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,cd2949c8-349a-45c1-8273-436b26fb04b5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,a3e6ae0e-3a96-4036-97f3-7dac92f6629f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,0daaecce-4619-47a4-9a75-16abbf481485 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,42eb3a57-5303-44d0-b3f2-0604b2432752 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,37fcd465-200f-425b-a42e-437c195f1e67 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f94b4967-44ce-4239-a78e-2502a03fe71f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,5ae25da8-d0d6-430e-9005-057c97103f23 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,fb90cb37-6953-4cfe-a508-5de5a5ac5bbb -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,131072f6-9364-4452-973f-8f2285804b78 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,fe5b8744-a9d5-48e2-a1d3-e9f67293be99 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,e66a3e5d-33ac-4b6c-ba5a-79094e6fdcd0 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,d5e6cc6d-f287-4133-8542-31828c9cf80c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,aa6e01a6-2950-4622-b2c8-f4272d341b75 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f8de99ab-f508-4278-aa04-01f60fff256c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,49eb0d5f-db06-4f3d-92cb-01dea40f4f69 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,44e917f2-09a6-4c2f-b2f6-c6ea817e3d8e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f5fd330b-4a3e-4e71-81f1-e2ebcc1f5d31 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,2512d7c4-af7e-4cbf-9fad-ae628bd09f03 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8f7fcac1-565e-4cfd-aca1-6bdd97cb8c26 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9eb6ead5-f964-422e-b39d-f0167d1bf65c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,c26860a8-4465-4e98-a71a-750c59467cf3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,6e772835-5ea8-48c1-b3a0-4349feb793f9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,6b2dcd44-8885-4816-96b5-b37101d81451 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,bf5e119a-e3b6-488a-9781-dda8e9e2408d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,b20253c0-f83c-400e-ae73-26a306b59ed6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,01693d5f-4b1c-4afb-a30d-07776221d3ca -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,a21d0870-103a-459f-b2f8-feea104b9e21 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,cd4e2246-0841-46e3-b7f3-97d1181aa011 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,c00e8e95-f5ef-4ae6-abb7-cccfee0bdd7d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,19e03393-0112-471f-95b6-abe9c1202c95 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,862d14dc-c5d6-4941-805a-bf58d424038d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,be72f1dc-885c-4abc-8f7f-763ce063c255 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,d335e24e-85df-46ee-b8fb-22b0f7abe535 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,2d3d9b76-817d-48f1-ba6f-662ffd2aa328 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,5dd04ca4-cd66-4dcb-af81-4f50be6f11a3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,6b2a725a-c86a-45e8-91d6-d687c9b3dae5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,1d7ea5b6-e987-466c-8afe-2c79369f3b02 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,a37ce3b3-d721-447e-8a5a-28076202e65d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,5969e820-ec2d-4ac2-be29-d124353146b4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,7d82aae4-6d06-42bc-98a1-5f02692207fc -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2d24e7d6-67ec-4976-8dd5-e36fad206233 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7d319e08-aed7-4839-97c4-50876b935135 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,39efa16e-c566-498b-9cb5-89b31c9c48e5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e66a28b0-2793-43db-ac80-25e799e20d4d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d19b2979-0d83-42d1-8059-37b46bc7cc46 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1b3c87e0-8b26-4a46-9549-7efe4b1f054c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,9c687033-e0ac-43d8-9e39-340932a8962b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e517be8e-f20e-45e0-9fa7-6e398fa6a0c6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,22cbd7ea-6ebb-4afe-b811-8af9c4ddb16a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7160d30f-bef0-4980-9316-72d47e7a4a67 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5a81b06d-99cc-4feb-b1cc-64749645a027 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,28f52ef6-c17a-4305-acb6-3b8329de2c08 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,76b48183-045c-40b0-a726-4640abde478b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,92ff80a7-817e-4e73-95de-f408252c42bf -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5497dae0-57aa-4d45-8c09-4fb8f7d2aee9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6d7e5f33-dfe5-4b07-9c92-7e24071ecd59 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d08921c2-324f-4cba-9295-ca6703c96d07 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,332aadc0-3058-41d1-92c2-b5c660da90ec -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,37be55ed-ba94-4524-a87b-e49e5552a566 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,33d043f5-1a66-49ff-bb33-bdf9594cd572 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,212d7f99-4032-46a3-b51f-a64b6b7468c9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e416efdd-7b49-4bdd-8589-843227c55733 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8baa14e8-37d9-41c5-9757-af5d0547e20a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,17e9142b-466d-4c08-9fef-221fb9ca1930 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f0efdda5-c687-4b34-ae62-b2b1cc7cedd5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,483deecd-5f7a-4102-8bfd-b1ff36d8b2db -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,addfc9bc-b876-41cc-883d-91dd517fa127 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,61f38be0-1429-4399-a3c7-b84b5b06baee -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f872f60d-3a23-4de6-a8ee-0655f639a152 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8d26c66d-34b9-48ed-a9f1-a3dc9cb06ba7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b657e99c-b144-41ad-9e67-6cab848f6467 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,de475651-660c-4bdf-a9ef-d9d9c5da73b4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,9ede2fe8-4364-4313-9fc2-25090bd48a94 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,aba534eb-32c4-4810-82eb-b57d3170eb38 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,657d523b-bf96-4c3f-a7b7-7d8c96a204c6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6880e68a-92ea-42b2-b75c-47051e3cef43 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7b301fa8-1383-4eb9-b2e4-25f8b95dceed -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b964f24a-7d42-4012-a19d-b86b27426237 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c762d6d4-0f51-4272-85d0-5cd4c98c4bdb -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,82730182-1a80-4ce1-a2cd-e704e8b4eb0e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b81c6a00-038d-4875-8794-f2a98bda1e4b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c11f57cc-0a33-4105-b6e3-63362dc13021 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,14719490-762f-4796-91e5-5946774bb15f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3532c5f3-d761-4ec9-b52a-7701cb4729ed -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,424bafb7-54fa-4d36-9bb4-35c96a6dc2ff -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5d31b5ab-4220-4b16-ae78-06da1d0c906a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5c309192-16c5-4322-bdf0-fe2ec3bf84aa -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,0ef21480-3e49-4458-9df5-c6687429dccf -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,553544e4-f1aa-4a8a-92dc-366248da26e6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5f3a97ef-688c-448d-bf6d-7b5b688dfbd3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,386af47b-b776-418f-8b86-65c9f16805f1 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,35a7856d-dc2f-4b5d-ba1b-2b7186b8bde8 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,a2191a41-7c45-4e09-b5d1-897ca3396b07 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,a7263723-d95f-46ec-9e34-80f741f6463f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c0031671-b436-4752-a9ab-9659eb897ad9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,71baba9c-1de0-404b-8134-5690f27ae51a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,48902aad-16fe-432e-9618-f6014411c5b6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,831d67c0-3669-49db-b819-876b8a7e4d5f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3da8c8aa-4492-46d0-93dd-d3ed8891cf72 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3b7d5657-8663-43e1-a80c-392da339bbd1 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,32cffa98-4e47-4ede-910f-48a64b270ce7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,cc251299-291a-42b9-9f9b-037b582711e3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f75079aa-ed9c-4a6b-9703-854f0926735e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1832fc39-39d9-4c45-a2f3-a5150fdc0e74 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,50a584f6-cb55-4887-bc6e-001149d252c9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,60b47f63-84a0-4e0a-91b0-010389a9a745 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c1eda430-f89d-47d5-843d-9c898fffee97 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c396795c-3b7f-43e9-996e-a0c6559a9aec -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c263ccf9-5ed2-4809-8f8d-c39555b308db -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,de344fdb-1f72-4f54-8f1e-37515fa7064d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c94830b0-5f62-4adb-82ef-32eb37221d79 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,73bdabe2-fa1b-4271-98c9-94a6b8bc262d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c39be696-bdc6-4bd8-a9c7-ce5be8819615 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,777e6a24-0b34-498a-a2df-8dfe67670310 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3efce5d9-c38a-4dda-9a2d-1b996430fa59 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,80c6a5c1-9d93-49a2-8154-6ab64af7083a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,af783bfd-f168-4596-8589-8bf0ba2352a7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2df472bd-2dfa-4ff7-a9ee-28a8cb003890 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5fbcbae7-c5c8-409a-9805-5d3a26ddc391 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5d17ef6e-d878-4e72-96cd-93f44ce3bb26 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,da76b2cb-d5ee-4c47-b591-e43e47a062d3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,360d1f64-aee5-401f-9c8a-72e01a16c643 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3a534734-48b1-4642-93c6-ff774016130d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,43ea4a62-8736-4206-ad02-741680ebc185 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,fae78cd8-4e6a-44aa-b5d7-968e75892cfc -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b6a584aa-ac29-4638-95fa-03480145262b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e69ffa83-c318-4684-8853-c3e45e927bf3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b519fe58-4e8c-4f3a-a15b-f33b62e414e9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f034b033-845d-491a-94d4-c6a288b8f428 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,22fa2f56-467b-4d1e-b7cc-600391ef14d7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,83c073f2-d9e5-4058-989a-81ebe491fc1e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6d78292f-24d9-4773-b036-0cb100450fb1 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c7ef1933-af4c-4cb5-a117-eff05e478377 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2860b0ef-7d58-43a0-8142-dfa4cdd9c16d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,709a9089-fdb1-4058-bfa3-892abad911b2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6adc2e06-9461-4d7e-9bb6-2296768924f6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f47890ed-35e4-43d7-af61-a60fb98ac2e5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b410ef98-dce4-45a5-8e60-01e0065879d0 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,76ef66d7-d19b-4f2c-9970-110e0708fd57 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ae39d62-3142-4eeb-9f94-ee058b8a374d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,9e3b838a-2bbb-4f03-ba63-dcdf11cbc01f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6febc90f-84db-47c6-97ae-828b5824e447 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,49830a6e-4fc7-46a4-98dc-dacab1ae1ab7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,fb9c0401-49ca-432e-9bfd-09af3b842a7c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,568ce787-8c53-4b73-ba62-109990fbc701 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,bf7fb3f8-0c9a-4ee4-8a96-0381c2eef415 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b1fb8180-1bdf-41a0-bc2b-f47f31bbc50d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c3bcb5c9-1e1d-4532-a105-c730fc65ff21 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,55dce99b-c87f-4b5e-90f4-622e440b542b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,bc6d1992-918c-41bd-ae49-e1e8e49efdfd -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,d9d084c0-82b3-4162-8f8d-35d544ef8407 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,858242cb-7453-47ae-905b-7c3e49afa12d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,2368da44-7da9-43ff-9565-3e7cdfbacfe5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5f04b583-24da-451a-b9a7-2940cc26058b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a2389ba7-5983-4435-8173-73349d49b87f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,bc018f13-5df0-4ab6-a418-f9f823e75310 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f13ef32-5483-4069-b17a-7eddc5570309 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,ce438958-d466-48c0-a545-8adef568f197 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,876270e7-677b-469c-9a4e-15fd15736913 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,d3fdb964-5686-4de9-8eb1-16a8dad3520e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,93e41285-0e1d-44b6-84d7-ff63ee23aeda -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,61d55ca0-808d-4626-a745-cfcf6794c596 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,649a0c6f-2a5b-4c50-880f-b27c87303c14 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,b7db4639-dc79-4d7c-89e4-885e76c0aba5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5fd02354-d442-4b30-900a-bcf8d3e5b31b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,2de558f1-0007-41c0-abfa-f481afa47bde -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,060e1467-7d7f-4063-b1ed-c6f0f959a986 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,ac2a2714-8f0c-48ab-86c7-56fbeeb22d15 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,d805d8f4-2782-437a-b9fc-5133d6b2ee32 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,21b8b912-1361-4466-93b3-fe11b292b8f5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0e29ba77-5e87-43c1-8b30-b07560a4b39f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,48b8677b-d7b8-4cec-bd0d-a19137269579 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,58846935-e037-47c7-a95b-776f8f6e40fa -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9fed5908-ba7b-41fd-a5e0-8e4dcbcad9ad -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5e39b8ec-83b4-4822-af2f-13779d8ba08b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0435618b-57ce-470e-9bba-39b4734a4098 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,80cb456a-02e8-4941-8050-97f823a2a84a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,48a3f13d-c1f5-45ff-80f0-1e75d7e46e7a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,67503ae6-e3ca-4012-a8d8-f14b1f524131 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a8cf78f1-cef8-4131-8e04-9355d6abdf41 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0774502b-13ee-448a-a92a-eec1707b6d5e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,62010a6a-79d7-469f-8244-3bf6b0664538 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,64f5d6e8-b0c6-4889-8480-a89a3824815c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,1634e762-b7a5-4307-bfc3-0a429b8eee0c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4a900ac5-0fc1-4a25-b271-a3c2057839a2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,1e53d833-e73b-428c-87af-f3c2209c85f2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,289cd632-382e-43c1-b217-111fcb0a4115 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4fd030b2-574b-49f0-9ea1-051c784ab6a7 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,95af3275-43ba-491e-a615-5d059427673b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0f6062df-6bd2-4329-8426-6ef11018afa0 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a80d344a-c139-4618-ab8a-80942031bce9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,326fa7dd-08a9-4ecd-a740-899d0e84f89a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,36835e40-5e7c-4f53-bf01-48e02aadfd7a -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,74eebc81-c8f5-4378-909e-029b49eab6a5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c42eae44-58d2-4715-8aca-588ab937f2e2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e5547487-4c20-46ef-a808-ddbf71e50277 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,b123ccc4-69b9-4372-a43a-c7fa8f95e3c1 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,bc088a2d-0882-4786-8679-dcb52c437b25 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3e5794da-3534-483b-9229-87da0aa36707 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a32d3f84-f7e9-40a8-92f1-61360b6835cd -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,019c285d-7186-4dc8-abbf-472b9fa1c3e9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,b02770ee-81f4-4e47-a09c-688ede7a0000 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,6a062efc-164b-4a61-a425-58bb13e3c5df -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,463e24d9-ffb8-4135-9812-052291563fc8 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7815f8d9-3c67-4193-83c4-eeece400194f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4ae9793b-f89c-45e9-a285-c2b71064b00b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,82d59b76-442c-45a4-96d3-75ef4a7b386e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3fd7d70d-f75d-488f-8de2-afdb15b8ffc6 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,230ba833-852c-403e-bb93-100436e5cf5c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,067a1bd2-4c2c-42d0-a0bd-3aac19672003 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9b09fa20-2743-4879-a353-c42675c59085 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,953c951c-e289-45f4-93a9-4009ca37d82c -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8773b624-94e2-4292-8077-1583a1182f59 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,bfba62f3-4966-42aa-a3e4-ca933469afeb -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,1cf562a2-3bd9-4df6-9181-f170b26da51d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,1ceb8ac3-0517-42f3-94ab-245b31f57680 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,1934d9b7-9e90-401f-a17e-ea800102648b -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c3d369ea-17fc-49a6-88e0-f64ec43f51f1 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,558a96d2-ecc8-4466-bc80-7eb517e3d3eb -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,372b3173-3fd5-435d-ad23-9f87a241431d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,80255454-b369-425a-8b32-bded7af05d06 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4d20108a-bf8c-45a2-b662-25d61643f1a3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9b21cecf-5745-42b5-beb2-ddc5a22fbed4 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4fb9fe39-536a-4df0-bb3f-367aaed235e2 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a20700d3-ed22-4257-bddc-fc28297b7aa3 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4b447522-2527-4c2e-998e-86d8388108f5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9ca19d7f-ba33-4db4-8e5b-159fb8560df1 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,12693513-54aa-4c37-a3ac-10a564071ae9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0f789f04-249f-48d4-905a-74716bd75452 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,635ababe-f183-49bc-94fa-f5ad14701e4f -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9596e7ea-4140-4211-b5cb-d235ff24c7c5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,35a08dff-a23b-4139-b5c6-1bf31a78ca82 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,87f8ed6f-17ac-4cdf-90b1-a7bd444d9fe0 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,de0c3cdc-a680-4378-9d93-79bedcbf79c5 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a0ffbbc2-fc3c-4bd5-be3c-8b5e81a58db9 -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,dfe9ce0f-273b-4aba-b9a8-ebeaa9e1731e -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,ed1a76a7-1d1f-430f-8551-1a107bffb68d -CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,85409f77-0d03-41b3-ab57-2b20f22f938e -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ea00754b-8b28-49e6-855f-01f3176e08aa -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a48314fd-8024-430a-98d7-7e0ce8d7866a -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,5359dab7-f235-4df9-8952-a0beb5184066 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ba659d67-b241-4c42-88be-fbb5f846deed -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,1b0fc4b6-dd89-4b43-9faa-5668e5bc2a26 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,1e9b817b-e2ff-477d-afff-16199bc0aea0 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3df214ff-017a-438c-8f99-a9fd6e7df048 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,06c6fe02-4015-4a02-b897-d1028683c760 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,54992b29-2e60-4aa6-ba9f-45d33b753ab1 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f4283795-0cea-4d38-876e-696fa66254d5 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fb1927ff-3702-4e25-a428-dc28921f9387 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,51f5e936-b8e2-4a2d-9298-95be327f5c82 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,cb1636e1-eee4-4032-8909-f3e8cdbdf70a -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2b3e0751-10b0-41d3-aa5e-24efec65670f -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c29f622a-25a1-4df7-aa7c-65396d55fceb -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,e5e33f2f-fd7b-48d8-a2b5-ebd15c0d4401 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,82d53c1c-b243-4f16-a2e1-8ead537493b2 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,91a740a0-0c5c-4155-b7a1-75e2426efbdc -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,73d5d6c8-34a2-49b2-9f86-b89d825a0767 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,19bbb9f2-e62d-4030-8f53-768bfddfd5bd -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,766f9abd-b84d-4802-8b0b-357e3ed48e9b -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,1e9de46d-39b0-4a4b-9ed3-3d9e53defbd1 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,7b32409d-b629-4573-8a5c-b5e531ef5858 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fa29342c-7816-4afe-b3da-c82496da6595 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,1264092c-b667-4cfd-aab4-c91ad0c87167 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,7219f07c-7c37-491b-a95c-2de32476ea01 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,5618e3f8-65db-42b7-aca3-e4ee335945ce -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,14522756-e2d9-44a5-a880-7a58ff7ec3bd -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d54e696f-2aa6-4914-a0f8-2aed2ad94854 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,b7403c2b-b479-4e73-a326-9792e12218f0 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,9d01bd7b-2845-4d7a-8055-821ef32d57f4 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,0ec370e2-b6a7-4825-b90b-8d8bc5a88e10 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,55f51078-e0b7-4983-a0a2-570ef62bf0a0 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,702ff121-3102-4727-a0e3-cddbe951caf5 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,551bb5ec-d90f-4b6b-b517-4e5c4f31c374 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d322b8a5-c77b-478d-b95a-5ea08af23083 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2b7d0d43-3db8-45bd-8c10-b7a9bbac2bc0 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8442ca89-a2e3-4fdd-94ff-475dc097b353 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,44a5d639-fb6a-4081-b8bd-6319fb02cf6b -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d2c08107-c04a-44fc-baf7-d1275f0017c9 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2310f6cd-d93c-4c14-9895-57d3f7ddecb3 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d1fc022f-52ed-40b9-b00e-4a42097b6755 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,070a2bcb-2772-457b-b464-7ee2681a8b8e -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,0407043f-512f-4858-b4df-c378577b3d53 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d72a0406-cdba-4c0f-94f3-ebfa0f23378b -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,302a6561-7150-4a0c-a0f4-d4404ec27406 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2991f595-958b-4a3d-b308-15d00e0cf28f -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d34c819d-bbbd-49c1-be8f-fd598305cf17 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a3abea7f-3a75-40bd-8461-8794e73ecbfa -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,7c8220cf-f33e-4b38-a4b8-e044e9f2052c -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,29cd594d-ab7a-4b64-a053-76d92ad08aac -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,38d89e5e-1487-490b-8ef8-dc381d006362 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2779b8ed-c81d-4386-89e0-af7368054273 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c068cbb6-2222-4824-a96f-c332e7ac7e8e -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,39888bb3-029b-436a-842d-f9e1895f54fc -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c02b314c-ca80-4e46-b378-d4d8e1f2db4d -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,254a4734-1da4-4df8-b19b-bef92d3ca0da -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2d936c4d-b530-4ca3-baea-654268972671 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,0b73075b-e137-4692-a050-80a12d07939b -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ccbb28f5-42a6-4fbb-bae4-00b5ab2d9391 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,62531cd3-22f0-438c-a61f-4ebf15c78fd5 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f8582a19-74b2-4baa-bc5e-bbd16e5a99bc -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,5fc3b7f0-2ae4-4c76-93aa-4b9275c3f29f -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,23bc725e-ca29-4b93-aafd-d70c695bd9df -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fbec33c2-4673-4019-a43f-65635b254914 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,4b78700e-9026-4115-ba4b-73b67c33f780 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,56032124-7352-4474-acd0-349f00505f69 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,5a3a1444-9390-4390-a516-c88657720143 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8c8b6f64-f300-45d1-b2fd-2c84f21b3305 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,df5a3705-2227-45b8-a28c-cfbc69b667d3 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ee2932bc-69cf-4b22-95cc-76cf846816f9 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,de05171c-6c75-4831-b757-965ccca86a11 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3f357d16-e158-4a9c-b5a8-bbcf130bdb43 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,cedf8197-6c36-4624-9c66-9fb3433f166c -CO2,Mexico,kg/kg,,I.1.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a6f5796a-b474-4166-a522-bca74d7b879c -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c93a8a2a-e8f9-482e-af2f-a5fd57faffcc -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ca592d65-bdcf-45b0-a052-de8e862ae1ab -CO2,Mexico,kg/kg,,I.2.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,cc2b4205-7ed7-4a9e-b42b-1a76845ac528 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,184b00c8-7ff5-4f40-af35-657bba4ff612 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,e97c0090-ea72-46ae-9ff1-a80e6d148ff1 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,379d36f8-1b6b-43d1-a7ca-3feaa7bfc58b -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,62d440d8-bf7a-464c-8b39-661bceaa7987 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8d59badc-11c9-4ad8-9b8c-37e5f18f6b2a -CO2,Mexico,kg/kg,,I.4.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,6dce58f9-36c2-420a-8c48-5873252e593b -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8e2c6675-927b-4067-b5d1-e3f96b2c9f36 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2eb4235a-fd0b-45b8-b0b5-af6d19dc02c8 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,9c47e70f-65c2-47f8-b346-b671bcc3f6cd -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,49a59548-6cf8-44bb-b8b0-84981b8ca99f -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fb2e93b9-834f-4776-827c-9f236f9fed32 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7346251392,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,876688a8-b93b-41e8-84ae-b9cd847295d3 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,30a409b7-9ae5-4450-baeb-bab80c5ff961 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,fdbfb6e4-0e93-40b7-9567-9a491fd26a37 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,0adb3938-23cb-4ee7-b56d-ebe6bf72de74 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,310922ac-1e99-44b0-b275-7f393b9c3c2e -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,2282940a-1f24-4fb5-8df1-0c2479c67ee5 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,b08fc351-a0c6-4ea2-a4f0-6d263240938b -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,66c5f009-e7bb-4409-8caa-56fd34231725 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,2f495330-aa9f-4d4f-899e-85f25e1dc652 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,2034101c-ed23-4863-9cb6-6f572f433f14 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,615e0230-51e5-4acc-a8dc-372cf38aee23 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,35a891d7-4862-458c-85f0-b333a8c1f422 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,36d69e34-9e61-4ee3-853b-20d8a7ee2964 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,dcda00d9-dc78-4a05-95bf-829dadab6d38 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,007583e0-1763-4c3a-b54b-aa65f6e828b5 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,909c8f08-9525-4b4d-9a50-afdff07a3ca9 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,723d8e46-0a9d-4558-8812-b2b5cb9bc579 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9f879baa-9490-44c4-bf65-c8d6020d86e0 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,5911b154-423c-42f2-b634-b5998bee27ca -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,90296d25-a5cc-467f-b656-0f14c44d5b67 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,91e6ccb4-cca5-4639-a995-991e0b79deb3 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,92f0c0f1-091e-4d52-b090-cca726f73344 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,862df064-ed23-42c4-99d8-7c588a40196d -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,468d34b1-0fc7-4cd0-9871-a22aba83f7ba -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,386cdb5d-1719-4c80-83fd-495d408a9423 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,35ab00ea-c21c-43a1-9974-0b750d780adc -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,c58d732e-c699-4a3f-a718-61033799f64f -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,ae26df66-d6f4-4748-bb59-e6ff53dcaf53 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,8735a4ee-2503-4229-a46a-6003f80f837e -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,350b9ce2-0d47-4a8a-ace9-ed28692a716e -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,864b6b48-31bc-4e95-bf58-c28403dc679b -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,76210adb-aabd-4229-b8d2-94148b14f666 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,31fd105d-bf36-4ddf-9556-6a342cf73742 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,2b91de59-8be8-430d-bb78-414e2819e825 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,cf6e5b75-cc45-4235-ba6f-ca5cd97a3c37 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,b2c57666-f91a-41ad-bbd7-0a16ebbb47c0 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,93427415-7271-45ef-920d-ee77d9c670db -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,60887d25-d853-4aff-af03-b64266ff59d0 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,24ca3eba-719f-4977-a185-751dd0faee03 -CO2,Mexico,kg/kg,,I.1.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,c215c75d-dcc3-415c-b6d3-4345a7af85d2 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,8c7196b9-8c48-4869-91d4-f8dd700c1017 -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,abdca644-62f2-4d60-8197-161938a049cd -CO2,Mexico,kg/kg,,I.2.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,d600afb8-89af-4172-b98c-f3e8a637089e -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,49ef7264-07a2-4bca-a992-ecbdb5db25c8 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,8523e7d3-eea2-4ee7-a01e-abd6720ce3a8 -CO2,Mexico,kg/kg,,I.3.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,202a883d-6ff7-498f-82d3-0282c6de872d -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,e20963ff-9975-4988-9daa-a8f25ba7faad -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,8aac3a49-cbba-40b0-b701-6b58cf84f999 -CO2,Mexico,kg/kg,,I.4.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,06b606dd-0a39-4ec4-bf24-f9dfc89ad799 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,704a9d82-c854-405f-8153-e3cf2f1a78c3 -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,84535ac2-2926-47eb-9e25-a4439c7603bc -CO2,Mexico,kg/kg,,I.5.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,65828636-3935-4804-84ee-017a162ef2d7 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,e2434c58-b230-4f10-812c-a0a72476bbc3 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,baa6617e-87e6-4cee-af65-886cea3e8da0 -CO2,Mexico,kg/kg,,I.6.1,MX,2.7750216132,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,201ecf89-720e-46ed-b02f-64b9434ddeee -CO2,Mexico,kg/kg,,I.1.1,MX,3.0711766346,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,59b3cc04-868a-4e68-8e7d-6986840508f1 -CO2,Mexico,kg/kg,,I.1.1,MX,3.0711766346,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,a76a3386-e1ad-48d4-9395-5a8ea0767f4f -CO2,Mexico,kg/kg,,I.1.1,MX,3.0711766346,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,81a6763f-7013-4ad1-96b0-1e33ce42aa85 -CO2,Mexico,kg/kg,,I.2.1,MX,3.0711766346,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,85ece4f7-aa36-436e-af0e-4b8d76dd1875 -CO2,Mexico,kg/kg,,I.2.1,MX,3.0711766346,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,72798e38-f3ad-45e7-b20b-6ef198f6c207 -CO2,Mexico,kg/kg,,I.2.1,MX,3.0711766346,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,d7fcdc8f-824e-4e96-a19e-ba20607ec563 -CO2,Mexico,kg/kg,,I.3.1,MX,3.0711766346,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,1a7bf9ff-23e3-441e-87d7-f6306221f6a4 -CO2,Mexico,kg/kg,,I.3.1,MX,3.0711766346,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,808c1dd0-20db-44f3-8c6a-b20a61d694c0 -CO2,Mexico,kg/kg,,I.3.1,MX,3.0711766346,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,8988cd7c-72e2-423d-b83b-4b396ae2388a -CO2,Mexico,kg/kg,,I.4.1,MX,3.0711766346,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,3104152d-7826-460b-92ab-e5f762e982e4 -CO2,Mexico,kg/kg,,I.4.1,MX,3.0711766346,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,3cef8d3d-8ae1-41a3-aeb0-9e60da3d65b8 -CO2,Mexico,kg/kg,,I.4.1,MX,3.0711766346,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,b83c537f-c178-4bd5-bf6e-a149342f6582 -CO2,Mexico,kg/kg,,I.5.1,MX,3.0711766346,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,b3c2cc44-82bb-48a5-80c5-bf5b01c29c39 -CO2,Mexico,kg/kg,,I.5.1,MX,3.0711766346,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,feef94fd-29d1-482e-89a7-09f55682eafa -CO2,Mexico,kg/kg,,I.5.1,MX,3.0711766346,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,c5053a6d-eccf-428b-8a5e-e656824268f3 -CO2,Mexico,kg/kg,,I.6.1,MX,3.0711766346,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,16b9bc0c-a7b5-4a7d-9914-97b7982ea1b4 -CO2,Mexico,kg/kg,,I.6.1,MX,3.0711766346,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,22b45832-6cc0-41fe-a0a5-ff9ba0e11207 -CO2,Mexico,kg/kg,,I.6.1,MX,3.0711766346,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,88f27588-c654-4c94-a02f-d4273fcbac83 -CO2,Mexico,kg/kg,,I.1.1,MX,3.2666930667000003,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,7b5b8e9c-8f26-4c01-b6ec-6f2d4ba07394 -CO2,Mexico,kg/kg,,I.1.1,MX,3.2666930667000003,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,b8c27d7e-6632-46de-b8e9-1b1935cd742f -CO2,Mexico,kg/kg,,I.1.1,MX,3.2666930667000003,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,4b60e203-7b06-4716-84e6-d31223739d3b -CO2,Mexico,kg/kg,,I.2.1,MX,3.2666930667000003,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,afd66c18-c0c5-4cd8-b07b-049319d9d8e4 -CO2,Mexico,kg/kg,,I.2.1,MX,3.2666930667000003,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,bd4d98e4-4c74-4b0c-a585-74c381f18116 -CO2,Mexico,kg/kg,,I.2.1,MX,3.2666930667000003,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,0f28360c-e3ff-479e-9bea-cea57cf0fb33 -CO2,Mexico,kg/kg,,I.3.1,MX,3.2666930667000003,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,c8ee40aa-a427-43f4-ad0b-9fcb62830f92 -CO2,Mexico,kg/kg,,I.3.1,MX,3.2666930667000003,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,4e6509c7-22e5-4ee4-b2f2-6ca2f0d88b3c -CO2,Mexico,kg/kg,,I.3.1,MX,3.2666930667000003,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,1626e50a-9992-4b24-9284-1a68543fd7b7 -CO2,Mexico,kg/kg,,I.4.1,MX,3.2666930667000003,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,a45ae8c8-dd8f-4c08-8060-e97dda1bbf10 -CO2,Mexico,kg/kg,,I.4.1,MX,3.2666930667000003,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,2a9f6029-c5cd-452a-a751-220e245da798 -CO2,Mexico,kg/kg,,I.4.1,MX,3.2666930667000003,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,a5110ec8-a245-4e5a-a135-de50404c91f6 -CO2,Mexico,kg/kg,,I.5.1,MX,3.2666930667000003,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,7e90642c-4167-486d-8609-896ff6999348 -CO2,Mexico,kg/kg,,I.5.1,MX,3.2666930667000003,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,94409e22-c741-4abe-b3a8-d865a085395c -CO2,Mexico,kg/kg,,I.5.1,MX,3.2666930667000003,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,8e00c930-7202-4900-b6a6-101b39f7d0b8 -CO2,Mexico,kg/kg,,I.6.1,MX,3.2666930667000003,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,77c8a35c-65b0-4a13-92b3-42b06f79146b -CO2,Mexico,kg/kg,,I.6.1,MX,3.2666930667000003,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,63bcf21d-91ea-4330-98a3-494f5b839bf1 -CO2,Mexico,kg/kg,,I.6.1,MX,3.2666930667000003,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,d91b6bc5-07fe-4991-af2f-0481fa5137ed -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,6daa8783-6673-4aa8-9048-a1cdc660f944 -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,6474bf3b-c98f-4249-80cc-1953e2446aa8 -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,dbb21032-2d33-4d36-bf06-c312a99746f2 -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,19f645b1-04fe-40d0-94ee-8650285783ab -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,f01d792b-cff2-476a-9861-6f96e90a9fde -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,32ddd8fc-8846-44bd-b1c6-5aeb42b65531 -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,448580b0-c487-4559-b62a-0d84c5861c0c -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,d7476f9e-36fe-496c-bb87-0db28c9abcfe -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,63fc3518-89e3-4b82-bd92-2063c09946f7 -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,6c07f53f-f295-47e6-a6e8-d7eb71aca5ca -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,107a965b-88e9-493d-9118-dad41486be75 -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,9cb67475-4300-4f81-848e-c4b806931669 -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,862277cb-1782-4853-a670-6aa9a0a3fca6 -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,98c3f39a-7213-45ea-b64a-2d3eec39196e -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,7b1598cd-d7d0-450c-9be5-d41767bae1aa -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,303e4445-4df8-40bc-bdb8-46d37179a9c1 -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,7d533a4d-cbf9-466c-8eee-17f4cf9db01f -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,1f7c488c-60e7-4d0e-b394-f564bdf6e915 -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,4f2031e1-ab5c-4b5b-a66a-059553f53465 -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,3893bfb1-1c60-47d0-ad87-bcbf8c7e9304 -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,9b81514b-44a5-4a08-a971-7fc273026fd8 -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,df495906-f164-4a44-9db9-82c18db7c743 -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,6d8f001d-ae23-4725-8f9f-113797c0c6db -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,66789d4f-a6fe-4187-93b4-802f91ac3740 -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,9d8188f2-54ac-44ad-a706-3732ce2fa983 -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,5cad5b12-4644-4049-adef-ec4ca6bab2a1 -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,f6f1e901-9dd0-4f52-aa3f-50d7ef0c37a2 -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,f11dd502-e7a0-43f4-94dd-620dc7773d12 -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,1aa2ab21-6f4c-4279-b1dd-6832ac775101 -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,8629dd08-ed28-45cb-9ccd-6da999b102e6 -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,02604e77-91cc-4bb7-a675-0c305bf73355 -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,6021b542-763b-4eab-a6ea-bd52987fe650 -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,0f99c1cc-274a-4a11-b503-5a8a1e6e7d86 -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,9ddf20c0-601c-462e-ad4a-e26e5d8114bf -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,8e25368e-6520-4444-a402-bcbc32886624 -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,2ec1b514-e729-4e82-8dfd-4c876c27c1ce -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,38b3a8cf-3f41-4591-9ffb-adf6d28f42cd -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,f7f930b8-4bc1-49a8-a4cf-04775d53b305 -CO2,Mexico,kg/kg,,I.1.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,36021831-0524-43b4-bbe0-fc17a9fb78a7 -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,0fff5544-182c-4210-8624-2e8dd3ccd47c -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,51e954db-08bd-4ef4-9b1d-dd5e67f26ea0 -CO2,Mexico,kg/kg,,I.2.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,c9616b7d-baf8-4b0d-9b98-60bfd45828af -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,153a7ee2-22f1-494a-8661-3c682c717c84 -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,4888e465-7537-4e56-bfa1-5143f4d668b6 -CO2,Mexico,kg/kg,,I.3.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,fdbf7b02-2c29-4c26-b949-81fb76c05132 -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ee1b1af4-1538-463f-8fb2-0bc918b759a2 -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,062d836e-a0a1-4e24-bb8e-ac56cc3107cc -CO2,Mexico,kg/kg,,I.4.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,8893d17b-2309-4d4f-a53e-51d040a58b64 -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,942a0014-3bbc-429c-be6b-d51440b5bb5a -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,2a29718e-e8c7-44e6-9a44-841c382f9c4d -CO2,Mexico,kg/kg,,I.5.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,929af3d1-5189-4b0c-85ae-b014e86df731 -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,49a79e0d-e739-423d-81b0-901921e6bf46 -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,0ab076bf-9c0a-4f09-8d74-c59250459753 -CO2,Mexico,kg/kg,,I.6.1,MX,3.1451735462,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,26c4ea04-2f4b-4d6c-bbb9-d13b053eea43 -CO2,Mexico,kg/kg,,I.1.1,MX,3.203345691,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,c0830f22-7219-45c5-aaf0-2994814eec94 -CO2,Mexico,kg/kg,,I.1.1,MX,3.203345691,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,47aa22e8-d669-43cf-bf15-0a166a9a13f1 -CO2,Mexico,kg/kg,,I.1.1,MX,3.203345691,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,75b6d9e7-ed82-4eac-b1b3-e64799d1c37b -CO2,Mexico,kg/kg,,I.2.1,MX,3.203345691,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,1c945bb1-ef54-4703-ba9f-c8937fe1250d -CO2,Mexico,kg/kg,,I.2.1,MX,3.203345691,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,629c4008-bc1d-402d-adb6-b9db204b5871 -CO2,Mexico,kg/kg,,I.2.1,MX,3.203345691,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,e7ccaff3-5bbd-4174-a63b-89e020bf6445 -CO2,Mexico,kg/kg,,I.3.1,MX,3.203345691,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,1d16780f-0a1a-4b7c-b8d8-b4ac161d60ea -CO2,Mexico,kg/kg,,I.3.1,MX,3.203345691,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,6648edb0-4dbf-4ab1-aba9-e781c313f0ea -CO2,Mexico,kg/kg,,I.3.1,MX,3.203345691,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,95f0d7e6-c494-45a8-8882-8681d260d21b -CO2,Mexico,kg/kg,,I.4.1,MX,3.203345691,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,b8c85fc0-7df8-4076-93f8-6e04996d560f -CO2,Mexico,kg/kg,,I.4.1,MX,3.203345691,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,fffed7c0-b6a1-4897-a467-9211a531fd88 -CO2,Mexico,kg/kg,,I.4.1,MX,3.203345691,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,777444c7-ae6e-4bcd-a6a5-d600211642b1 -CO2,Mexico,kg/kg,,I.5.1,MX,3.203345691,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,ee9de6d2-f8b7-4215-9b48-51ec7fe2d661 -CO2,Mexico,kg/kg,,I.5.1,MX,3.203345691,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,20aa0f33-67f8-4af7-93e3-cfff050d5c59 -CO2,Mexico,kg/kg,,I.5.1,MX,3.203345691,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,2d45d6fb-cbbf-48b9-9448-34193abad062 -CO2,Mexico,kg/kg,,I.6.1,MX,3.203345691,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,cf7f04f5-8ed5-4b01-a89b-539e466ba27d -CO2,Mexico,kg/kg,,I.6.1,MX,3.203345691,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,f07b3a5e-1958-4529-9829-bb134ab4d1ad -CO2,Mexico,kg/kg,,I.6.1,MX,3.203345691,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,2ffb1a37-af33-43b4-bee8-3d82785e3f3d -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,cf8e0db1-40c5-45ee-b351-6d6c911812d0 -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e8ee5731-4b02-4661-8489-0b0dd9a43cac -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,62a04110-4b78-45c5-9729-4ce1f08e1056 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5d604cca-9fcb-4461-9799-de7095cdbe78 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,1e87a47f-8cdf-44f5-90cc-8a315e06e0b8 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c7be6268-5dfd-4c1d-9b44-68c4ed867efd -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,1de58f15-ec52-42be-8781-28f9702ddb94 -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,11e3cf81-3f27-4d40-a6e7-742cafcf9778 -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c437150a-834d-4855-88c0-b143d87963f0 -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,145bb0a1-3897-4893-b99f-f9de178b5709 -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,596774e0-d49c-47fb-9693-e1c57c3c427f -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,6746bd24-345d-4e22-8844-3300659df77c -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d97f4e7c-0942-4642-8e4d-1f0930c18f43 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c96c97ed-03ca-485d-a41a-6e24f5f4390c -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7cf07a2a-0e78-4c7a-9700-318b0cdd092c -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4b5fafdc-2f27-4411-99ce-84718ac21b8a -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,820ced97-2e23-40cb-b3d5-6d498c208d32 -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c6d88361-8449-4d52-ad2a-08e33a005052 -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,79c91429-b4b8-4c59-b843-882a9af28114 -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d5450e0d-c875-4235-90e5-ddf0822a755d -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4f3fc65f-7d0b-4251-a1f1-fe47a6e45f5c -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,eec2363a-a6c6-404a-8f52-c4617ddf38fa -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,b29bc180-a57b-4181-b4b4-fe5808503d90 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d316b6db-9356-45c0-ad29-e103a33ac008 -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5cc916d8-e624-4512-9b29-87128fef49ef -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,62ab098b-9f55-41e5-84f2-c86ea7ab70ca -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,26c19615-5bbc-48d4-b1ee-59ba6b95c23d -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,454f668e-15f9-464c-997d-5b72d418261c -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4cc35467-099d-4c8b-8bef-bb9cdf3d169c -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e301feb8-d430-4d0a-86c0-4bac10485bc1 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5a74b74a-5a81-41d8-a7c3-443481e99e1e -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9ccc4622-79f8-475f-bbea-e67e66ccbdf1 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c6234cbc-7702-443a-b24e-4e612be9c95d -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4e46fb65-0484-42e4-ad69-9b1dbb1c4f54 -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,6a35f6a7-3981-4ffd-b603-34b9100220b3 -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,8763ea71-8523-426a-8d55-64bee0a54a1a -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5221809f-6195-41ce-9b95-7dcedae5f1e0 -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ec8dafe2-0bf5-4163-b835-9028e8fff958 -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,02b1fe00-ceb3-488b-a3fb-b6b0d48a9325 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,2af1af9e-c988-4d9e-88b4-a9c494b305c8 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5241ce80-9c8e-40d0-ae49-89689d2e609d -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,2e72bce2-9f61-4cea-825b-ceb67b5cba77 -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9b47b9eb-802d-4857-ada9-9350bf7da9af -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,59155481-ebc5-4f7c-907c-9d64c26bde00 -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,00f309be-c675-48ff-b380-4556bfdc8ff9 -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,626a3faa-bf9f-4ac9-94a8-455738c81097 -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ca76cb09-af7b-489e-9c1c-20dbab898e5a -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ab59b27a-99a9-43fe-90d7-31469e7b2be6 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,66416734-f23c-4d00-985f-9e7ae35f2628 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,0917b432-72c4-4ca0-983a-4eaebcef13c6 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,6ffc2007-ea7a-4d2f-8cc2-554c85056bae -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,bf15d90b-da62-482b-aff9-96be381e409e -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e33ad5bc-5bcf-4139-9f8a-8424c4b5ba9a -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,53df8c4f-a085-4d33-bc84-be7cfbe9b25b -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,bed8a7ac-df77-424e-be50-bd9ac87e0c4c -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,eb7cd325-fac4-4f81-9ea6-63f4d6276151 -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,fe03d1b9-a9df-4cf8-9bc1-888a22af3081 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7f68040d-c090-4e89-9293-e0b3973e2cd0 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,dfb47ad5-1fe7-4f39-a316-d1299e5fe317 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,35013d66-7437-4344-838e-7afd7adff11c -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3b2e0796-9c04-41c9-966c-1acd0c917787 -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,59fa9a5a-931b-433b-b9cc-29558da065a4 -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,8ef7ea3d-bca8-4572-b493-c3d33b6cd7a7 -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,db7fefc2-edeb-4747-b403-ac2b6cc0fb19 -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f528c55c-04c4-4747-bb8b-fdc5496e25de -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,07463e84-32e3-4e65-b0f2-2f3379fb9f52 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c5c585af-8a89-4af9-908e-5d71b784fe93 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e67291fd-9040-4bc7-b6fc-59035eb7299d -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,51fc898c-6d3d-465e-8fae-ccbca0d740f1 -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3cf35631-0aba-4572-a422-cb2ed8d38fa8 -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7bcc472f-4018-46e2-8971-0ff25eba96dd -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,594fe870-7182-475c-b3a2-c1b52085a8cc -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,b7bb4d98-4a03-47ca-8c34-e9a2decb4fb4 -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,680c5cc4-bc79-4aa5-b15c-d17a3de69603 -CO2,Mexico,kg/kg,,I.1.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,0220066b-8413-4352-858d-96ca23dde933 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9b4fa583-1221-4bbc-bd85-4b6307c74770 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d15c8e49-4fe9-4c61-a2b7-9ee97da4fa84 -CO2,Mexico,kg/kg,,I.2.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d6c0fcca-9a19-4499-8cc6-80cedbd1dbc8 -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,48900d17-7fa8-4fa4-94da-3dd700c2f7fa -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,615a0eb2-c3dd-4cc8-b498-89ce0a39a27c -CO2,Mexico,kg/kg,,I.3.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5f74b753-1d10-4c02-a278-d6020c8cab33 -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,29dcf19f-57e1-478c-9326-d16401e537af -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,543ce062-d53b-4d96-96ff-45e39d68287b -CO2,Mexico,kg/kg,,I.4.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,13b893d3-d121-40a5-9f98-bc6a7f2c4866 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,681b3e09-938f-4043-a4da-b3d7c68baee9 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,34e33429-9f07-4f4c-abba-b497978be035 -CO2,Mexico,kg/kg,,I.5.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4e82d1d2-27ba-4c30-816d-1fe0470af43e -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,15434395-6e2e-4aba-80a0-532ef74c4162 -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,92887582-d4db-4fb1-9afc-d055bd26f7c3 -CO2,Mexico,kg/kg,,I.6.1,MX,2.6995121682,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7a4c10f6-9325-4318-ab80-914c3e4142af -CO2,Mexico,kg/kg,,I.7.1,MX,2.6560869468,fuel_combustion_consumption,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,6cd90469-5d00-433c-bc5b-caef57bdbc2f -CO2,Mexico,kg/kg,,I.7.1,MX,2.6560869468,sampling_scaled_data,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,06dddcac-30ca-49b6-9fa5-ad94768b34bb -CO2,Mexico,kg/kg,,I.7.1,MX,2.6560869468,modeled_data,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,26a60f29-12f6-4027-89ab-747c9c4f2ebb -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,388c10a7-0342-4b11-b08d-d0e99f50dade -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,e86a46bb-f809-42a1-9a7d-d40b95f7e891 -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,fdbc0105-b076-4f1d-9c19-63c1ab608a9b -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,af3ae528-49bf-49e5-8310-08683781fad3 -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,67ad0520-6be0-42bd-bddb-20fb92dd971b -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,521bd8b0-57d0-418e-b195-fb2b75e01baf -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a12eae64-e215-4653-9cb1-0e112fdd2f1a -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,15080b31-5c20-4300-824d-d3d7eddaa1ea -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,db0e9c2a-9d94-48c7-97cb-93cb76cfadcc -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,374ad5a7-707d-4732-9810-82ec45d99b85 -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,de66466d-aaba-4eb0-a85b-0932cc9d4fdd -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,3f75eab5-cbe1-4941-83f9-d0ba9f02e5fc -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,586733b1-6255-4112-9abb-096fefc2088a -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,1514fbb6-a888-4923-95f9-af309cde1fb6 -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a03c7edb-aa53-420d-aea3-1405ccdfcae3 -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,771bba36-0e83-4627-b1d2-56cd5c0b4cb2 -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,847593cc-1e62-40b6-92d9-a7906e98363b -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,e226917d-0125-4aa6-af16-9b44a692ec9c -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,8d8bcfb4-747d-40e7-8e27-9b5d4efd93e5 -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,49984dc0-e030-423b-96a7-5d85c541e66f -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,5075e7d6-f055-4ced-befe-0b795456f7eb -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,d8812347-e02b-4d6a-9cd2-1a323f17ed0d -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,40f03290-f551-4300-a8e4-776211f397e4 -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,9d3c87c3-a7bd-405c-a7fd-63deea7046ae -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,9f8f75ec-68bb-4821-b120-45d4887e2cd7 -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,fd33cfda-4726-43e7-b537-f07f6ac7df00 -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,535e5649-ae13-411f-a43c-a0f359d4de37 -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,757bccb3-d1ee-46d7-91c6-6865a55c7d78 -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,4c2dfa42-719f-4352-813a-2f94936f005e -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,3aac7917-eae3-4375-ba4c-7870e8cca4c2 -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,b244a946-e859-4c1c-a244-4b4ec108dadb -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,2ad520ed-2029-4d32-abd7-c2c6e2fb20c7 -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,37c76ba1-2ad0-47dc-b28a-c2e3a5f1240e -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a9b61456-18c5-4bea-bbb7-344a58b3dbbb -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,f4104e61-b176-4a2b-b4d0-e3d4644c4661 -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,8bfc61b7-0586-417d-9087-2d8bed0c718a -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,7359fa85-e272-44d3-9e3c-92744876e5e0 -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a8bc770d-3213-4271-a920-fdf55d16be72 -CO2,Mexico,kg/kg,,I.1.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,83e2ce02-c913-4d81-b8a6-27f984725273 -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,6c5a2658-7897-4a7a-99b1-03a144ec5cb7 -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,4e9d508e-03c4-4324-a975-376dbf0324cb -CO2,Mexico,kg/kg,,I.2.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,aeccea26-1dff-4d37-b019-d5673e735455 -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a5eccde1-5c77-4255-91f5-2843e8a092fa -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,cb3f7b10-82d9-4dd2-931a-ec3c10ec173d -CO2,Mexico,kg/kg,,I.3.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,9b916691-cb94-4bb8-9578-00c7e624a8f6 -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,01f27e36-d8c8-4792-81b7-7678cfc95a82 -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,5ea5d343-5b29-4aa6-be22-913a50118a71 -CO2,Mexico,kg/kg,,I.4.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,be5430e4-d734-457c-ace6-697b55ab4333 -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,0d66567f-2676-46d8-82d5-1ab762205c73 -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,b810b004-bc49-46dd-88ec-88ea322b3b61 -CO2,Mexico,kg/kg,,I.5.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,b2d44ebb-d2d3-488f-a218-ca553999f06a -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,0b5e33ca-9685-4908-85e5-e8356c0dc481 -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,f1bed798-5143-42a8-89d3-119c3f4a574d -CO2,Mexico,kg/kg,,I.6.1,MX,3.0042266639999995,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,2289d901-6df0-48d4-bd7e-eb889f49de6e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0025291639999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,948d0211-40d9-4b10-8dce-708b335e1d9a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0025291639999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,806331ca-0c52-4299-b470-d28ef63c0a76 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0025291639999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,d63fe809-fc4a-419f-b4ab-3152017c2494 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0025291639999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,deb8c506-b3e5-4187-9210-e8108ce364a4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0025291639999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,bab6d088-273c-47eb-acdd-e6502af08122 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0025291639999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,0ceaa173-e0cb-4544-b9e1-d09aab6d0659 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0025291639999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,46b78381-c8da-4a8c-aa45-550873fbf48e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0025291639999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,0f98886d-bf8f-4541-9639-49b475f1a03d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0025291639999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,87b3ee83-d6d9-446d-ac68-6a150d7a3445 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0025291639999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,a7bc7218-fab0-4663-928d-78135635f86c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0025291639999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,cc1fa802-0aa5-4adf-b719-b3de6e525c07 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0025291639999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,c0dac2c9-4c78-492b-9164-fcb6ac157169 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0025291639999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,a3a59686-9203-40f5-b1db-971b9e9b0305 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0025291639999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f5f36dc7-dd6f-4789-8f2d-b4b418577ab0 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0025291639999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f781a895-fd5b-423d-9175-d2d5dccb0875 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0025291639999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,06fbe7ba-8dbe-4bf1-9229-fc117b6dc1d6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0025291639999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,9b8a0c41-e173-4f13-b1a3-366d983d4fcb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0025291639999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,183eec0a-b569-4d04-9931-865fbebf2d7b -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1686236,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,560f9fef-6b64-4f7b-a7ba-1ffbcd81ee45 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1686236,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,493a04bb-cee5-493d-9aa6-d0a0dfafa3f4 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1686236,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,6ee1269b-6a9f-4920-b806-58345620f9c1 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1686236,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,62aff1ec-9169-4914-9487-eb19dee8d8ea -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1686236,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,b9f1b806-0273-4061-b506-4ae1d6723ea1 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1686236,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,40b0a2f9-becf-4e3a-aaed-f9f80cb9c844 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1686236,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,21121508-fe4b-41f9-9636-ab01574a841c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1686236,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,fa1e595c-4b5e-46b8-918a-e7572b2bb24f -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1686236,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,6a9f2fbb-4682-48ce-b693-423748c80187 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1686236,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,0127bad3-01a2-46c3-be15-d5b8a4726254 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1686236,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,6108277b-2296-409d-9d93-e01746574003 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1686236,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,cf8d6003-29d2-436b-a370-480e7ba850cb -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1686236,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,42eb9fb4-1c7f-45fe-b953-0cc55465a2de -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1686236,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,7a9ac5b4-9204-4792-b1dd-9aedfcdaf95f -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1686236,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,4a684809-95ca-4641-82cd-24b4d4fabeb9 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1686236,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3c2326a8-b150-41f6-a8aa-23e4ca5328ee -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1686236,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,593dc351-8387-4f20-9028-db634650d98e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1686236,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,15f385e6-c5ac-41a9-8a70-fc290f5a5a7e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.5955321333333337,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,14196b54-c73b-4412-90c2-79bbaa95029d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.5955321333333337,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,5a562775-38b4-4b23-bc93-77243143928a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.5955321333333337,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,1ba13727-e748-45a6-9862-26ce37f81c5a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.5955321333333337,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,c7870f3e-87b1-47dd-aa1e-09740ee1a4e8 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.5955321333333337,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,5f4819e7-cfd6-4a1f-9b5a-69bad9c171c6 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.5955321333333337,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f01e0582-21fb-4057-864c-462b7e653bb0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.5955321333333337,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,afe63e6b-2161-4925-9bec-8206bd7cdb71 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.5955321333333337,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,effa20a7-9a6a-4e6f-a629-67d1d4e2d8d4 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.5955321333333337,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,eff604c3-9bef-4afa-a9be-c9365c5cf80a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.5955321333333337,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,4d7a982b-b21e-429f-a340-2cc4a175d136 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.5955321333333337,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,b80f18f6-2479-4ae1-a37e-59f429330ce4 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.5955321333333337,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,29b61f26-16c2-4393-9d06-8a4f5c66cc27 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.5955321333333337,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,49f40f2a-907d-450d-9e0b-dcdc48789cf6 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.5955321333333337,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,6115344c-f2bb-414c-ae82-e8f5805a4b59 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.5955321333333337,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,98256883-641f-4500-abea-9b524a79a7cc -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.5955321333333337,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,714f2d3c-b723-4bf3-8fe0-50da2ef0246a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.5955321333333337,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,c6814b62-a32c-43e0-8305-cfc12d334ca9 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.5955321333333337,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,774ac442-adc8-4874-9dbb-af645ab79d25 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.00255607,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8f0d5049-3e78-4452-b3bb-7350662b28f1 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.00255607,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,0ef2603c-d29d-43d3-90f9-fe2f237f9090 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.00255607,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,4f169037-8fa1-4254-a386-59cacac1101e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.00255607,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,69ecaebc-8019-442f-99b6-244c0acd6974 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.00255607,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,721a51b3-b98a-4c02-b814-33c09bc7fd33 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.00255607,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,6fcdaa2a-fe60-46ab-895c-f60b61c8df7d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.00255607,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,4672c750-bdec-427d-8d0a-eda5fcce6d07 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.00255607,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,939bc674-c64a-40c7-bc1b-62476b5e029a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.00255607,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,fb8d2833-9a0c-41df-8dfd-c000b9092807 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.00255607,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,28d1fc50-cdb5-41cc-a20a-d378549bf771 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.00255607,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,ad705d9b-37f7-4b42-8b5e-a9a45f78a1c3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.00255607,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,fc7db3b1-641c-4d34-a478-d70bf5e6b7cb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.00255607,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f2fdb96c-f36f-4f07-b864-c58999b6505f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.00255607,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,68a8ff53-6c4c-4fc3-ad63-0a0707118a2a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.00255607,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,14ab9318-5613-46e8-a3c1-25a1b1e31951 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.00255607,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,ad3990c4-13ad-4b6a-beae-8df348a2e36e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.00255607,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,a84224e9-48a5-4d80-a747-f7bd141d0d22 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.00255607,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,062d86d2-7ae7-4a45-858e-686dda7cf7e5 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0025943059999999993,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,afbccde0-7674-471e-9943-a8d9554780d6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0025943059999999993,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,4d7c4d54-c0fe-465e-9cf3-eb81a810751b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0025943059999999993,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6d3ff353-d595-40c3-853a-70775e99fff2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0025943059999999993,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,c4e5e377-34b0-48af-ac5e-265845bca21a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0025943059999999993,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,e877867f-d726-4a05-b99a-d6c9fbfdf7a8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0025943059999999993,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,20818bf7-ee51-448e-be17-f6cac7364593 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0025943059999999993,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,694cf85e-a0c2-49f8-852e-77a2ba6f9030 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0025943059999999993,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,caf230e0-41a7-4ab4-98e1-c9fec75a5468 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0025943059999999993,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,b1f40030-dc6a-4757-8a26-a6d7cd93e3c9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0025943059999999993,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,ce369b35-e81a-4af1-a492-9d6a4fe00caa -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0025943059999999993,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,2e2799de-c569-4422-9a89-e1993e90160e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0025943059999999993,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,ccbe0e2e-35ef-43d6-9e7e-da5ac255ec92 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0025943059999999993,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,1a947c85-cbb3-4897-952a-2432b18744dd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0025943059999999993,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,ba7fdb20-96c1-4206-a924-b17ce5692c0b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0025943059999999993,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,23c4b453-4c93-48f9-8124-30d05d49a6f6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0025943059999999993,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,910ddb9a-c5fd-4d28-bafa-55f83c9c3986 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0025943059999999993,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,240507c7-c486-4841-841a-b483621e2920 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0025943059999999993,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,abdcdee6-2983-4134-9ea6-fdf01161b758 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2244794,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,07697359-e150-4149-b01a-68d70da01930 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2244794,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,d6fd0e81-bf95-4c44-a7b4-8e40ad55a45b -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2244794,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,252a9e17-4385-43ec-ba35-057971a7ce1a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2244794,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,12532d65-1152-4c88-bfe3-3d3d452519f2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2244794,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,c96ff948-0326-4ca8-8c3b-964f43f03380 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2244794,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,29799f16-641c-4571-bdf7-092fd3b2df27 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2244794,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,04900a57-ab00-4374-b39d-fb47141f5ef7 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2244794,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f9d35d8-a01c-46a2-a678-f4f788642e80 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2244794,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,64b849e0-afbc-4951-9b65-5958ef97788b -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2244794,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,c3312dec-1942-4ce4-9afc-88fc66c2ceb8 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2244794,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,095ed4d7-756d-4906-a896-5112ecc49d14 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2244794,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,84a7e647-d78a-4cd5-9448-0fde3bb6433f -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2244794,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,26d445a2-0507-4476-943d-f6b7584cd4e2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2244794,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,d9ae8db4-9380-4405-afb8-a3c9bd459230 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2244794,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,9343e828-2eb5-4c1a-81ce-42997f732971 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2244794,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,a325f350-57a2-464c-9b40-e287c1b8f666 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2244794,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,807356ac-f536-4aa8-b2df-e97eb0cc11e0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2244794,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,43a06141-5848-464a-b234-137e45513adb -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.662383533333333,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,a7ded315-1fb6-491c-824e-5c43ada78195 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.662383533333333,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,b125423e-4353-41ef-8614-80aa1985848a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.662383533333333,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,0f89eb20-f5d8-4c9b-9158-780187e26eae -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.662383533333333,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,84573ba7-a798-4e5f-9df2-f52ff43cc58c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.662383533333333,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,10f54a8d-d66c-43e1-9e1d-377c02c2d77a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.662383533333333,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f477c6ae-c803-4e0f-966f-0dbb58dc5b77 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.662383533333333,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,1d02c082-2b67-44ca-9958-877c7bd6363d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.662383533333333,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,cbbfa943-0059-4bd3-bf69-c1330e83d2c2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.662383533333333,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,776d8e37-ca61-4862-a3c7-89ce7a39d10d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.662383533333333,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,1ea29922-31fc-4002-9e54-3990cf55ec2e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.662383533333333,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,5bfc3e26-6e3a-417d-9c3d-a90459890e79 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.662383533333333,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,1516e6f6-7a09-41a8-b342-a27249f68902 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.662383533333333,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,5abd26ed-afdb-4e79-a62a-d49e5f8e0d73 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.662383533333333,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8b00e48d-eedf-4b23-8eb8-4dcac509d26e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.662383533333333,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,38226c17-5888-46e0-9e02-a7cf9afee349 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.662383533333333,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,aa740cbf-0c7b-40f7-a3fa-e192c5cea5e0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.662383533333333,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8f8d2453-83e1-4dd7-8beb-bc00c4c88749 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.662383533333333,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f9b82d05-3ebb-4d93-9b04-00fd4ea266e0 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0026219049999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,2a7d796b-8ca8-452e-98b6-94226211f312 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0026219049999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,bee49a62-2489-4f59-a3d7-67cb5bbdb7d3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0026219049999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,45a08738-bf67-4c4f-99a7-d651ce8f6b53 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0026219049999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,10911d70-500f-46f3-9c3a-8ddb353fb8cc -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0026219049999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,a2f193d0-5840-4cff-92a6-7812209087f4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0026219049999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,97b932de-22d3-433f-925f-bc9739fba9bf -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0026219049999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,6c89b740-cc1d-432b-bd7b-4c111396b0cc -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0026219049999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,2c80a547-6a1b-47c8-b60e-04d33800e33f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0026219049999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8f7eeb36-0669-402c-8113-11ea56f88391 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0026219049999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,5d2201cf-3641-4c40-87c6-22143a892991 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0026219049999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,4eb0236c-fa64-497e-aa7e-abb0c9145fba -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0026219049999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,63d1f451-a08d-4083-920c-d9c09b9776ee -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0026219049999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,7ce43fc8-f7f6-42ac-b74f-1f8a3dc08503 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0026219049999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,a1adb41b-76b4-4ca2-bd70-4d576d04dae4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0026219049999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,5a4deca0-a716-4a70-804a-1554d69b908b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0026219049999999995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,9e32d798-d87a-4319-918a-d4bf02d3fa6a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0026219049999999995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3cca4332-d3ae-4dc9-80b1-ae79e9985bcb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0026219049999999995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,1f9a51ae-fb20-42a9-9de6-c980a60aadeb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002297834,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,25bea582-1bb7-4ff9-abd9-e94c2f4fcb0a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002297834,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,b6997e90-56fa-4f1e-aed1-5566cb59ffae -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002297834,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,c952c0b4-408e-4c01-b74e-6769cfa17a74 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002297834,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8a6a5fee-454a-4c74-b734-d4005bdb2924 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002297834,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ba69b6cc-0978-46dc-acb5-32f3eb7bdeaa -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002297834,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,79412856-fa81-4f4c-b933-5159fd09f85e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002297834,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ed0ddb0a-0fa6-4c42-8c65-986e20cb9776 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002297834,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,69d2daf0-ecda-4a6c-a359-91906e4bc7fb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002297834,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8653f525-86dd-4131-b524-16aba0a75bd2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002297834,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,4536345b-bfaa-4957-97c7-6f18d45c6711 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002297834,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,26a30e51-db02-418d-9b39-8f1747293d57 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002297834,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,87fc8f11-97a4-4536-ac64-b8730098e545 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002297834,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a7fec866-663b-4bb7-9a75-e83ae4b7e292 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002297834,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,07f79bc3-e593-438d-ba6a-c60879779b6a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002297834,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a9902e5b-cf7b-4bf3-b314-e3f4d20c613a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002297834,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,74fd5558-7817-460f-a192-066c5a3a867c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002297834,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,da2063ad-9c56-4a98-aeb2-8012e32adad7 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002297834,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,bbf300cc-068e-4c3f-b90f-12cf72eb4ce8 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.4946639666666672,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8799679c-44df-4ab8-9f96-c9d5155c128c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.4946639666666672,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,7c384bcc-8f62-4524-a81b-c832bb0aacdf -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.4946639666666672,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,1a38d78b-3e9a-4078-b4e7-0c0543496e66 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.4946639666666672,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,62cf2818-66e0-4628-9202-429f0726cf41 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.4946639666666672,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f66413b0-f391-4e51-aec9-0e7b8329b7a0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.4946639666666672,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,23916af6-c4ae-481f-a654-f56b80b129cc -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.4946639666666672,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,9252444c-54f6-4978-8c8b-bea8893bb1a2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.4946639666666672,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,7dfd6915-036f-4fbf-b527-8fdae9694197 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.4946639666666672,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,59d46532-df15-4ec5-b4cb-8a01e2d5f3d1 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.4946639666666672,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e4be2daf-aa51-4a1d-a27f-0f43c28da44d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.4946639666666672,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,464cbf33-2507-4a35-9921-1fea20236aa3 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.4946639666666672,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,d8be6e06-65d1-4eda-bd0f-1d5f35b485d2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.4946639666666672,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,ce341110-4299-4753-bf0e-b9ef138bf9e4 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.4946639666666672,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,72ccc1a8-e3c4-4612-a5dc-da8f39513e52 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.4946639666666672,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,15cc3c4b-a5a3-49c3-b6af-ca82ec5b7ea7 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.4946639666666672,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,e03866b5-9d09-4263-9504-87e90748c293 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.4946639666666672,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,1e47aa1b-f203-4839-84cc-69d04904e2bc -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.4946639666666672,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,43b2bd18-cc7f-4d2a-89c8-ef7d841c0029 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3129747666666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,b24992a2-eae1-4675-8f0b-e297f17a8374 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3129747666666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,747cf984-527e-4402-a8af-b4f3ed14542c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3129747666666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,98bab81c-a272-4479-83ae-a2a87b2436b5 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3129747666666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8d7b4f29-b738-47f7-9191-c1f5b29b56f7 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3129747666666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,e6596e36-6676-4f9a-84db-e2186f6d1ed5 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3129747666666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,86dbcb5f-37d9-4f1f-a1c6-27e15a73f24d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3129747666666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,1755d171-070f-4e90-b51f-f3ce34a8d7be -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3129747666666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3045afd3-52dd-439b-88a9-38c5aa1cb1f1 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3129747666666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,2c712e88-25f3-47c5-94ea-3be8ea60395b -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3129747666666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,995eabe5-8d22-43fa-9748-b6e65bd520dd -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3129747666666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,dd6830e8-326b-4df2-abe5-2d5eaa302c28 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3129747666666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,58527c72-425b-4cb2-9960-52461b344579 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3129747666666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,67f45aa6-3cef-4f5c-96f6-d6ca1f554235 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3129747666666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,e252094d-0623-41b8-8e57-a7755d3adf28 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3129747666666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f203e412-5d68-42d8-820e-cb19fec0ff18 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3129747666666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3189039c-f05f-4300-80ad-0d6b51a45b09 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3129747666666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f7b12295-a789-4a81-803a-b83d3e4e2b2e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3129747666666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,ac837720-e47e-4be7-89d6-98dd1b485448 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002146426333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,cbf589ef-6835-4450-bdf7-878486e64313 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002146426333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,5f9c5409-8b3e-426a-8924-c2510be33f40 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002146426333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e408a8e7-13a6-40be-82ca-3fda87020f9c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002146426333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,76e7aedc-862b-40d4-af99-1cb716eb3443 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002146426333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8665481a-3f33-4ac0-9714-6e1315ae0bec -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002146426333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,096a97b5-09ce-4fbf-9b17-f93666b9b15a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002146426333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,370a7898-6850-4942-8ca7-774fb459b9bd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002146426333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,50c6884d-07f1-4fee-85df-fb84d1c6f40c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002146426333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2e5323f2-f431-4ccf-9e65-f1b6ed5e6c96 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002146426333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,926b0241-e77b-48e0-b94c-836cd1523b7b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002146426333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,bc6ef924-c9f8-4f1b-8e26-4786027ec310 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002146426333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,7c027c32-70e7-4509-8af7-ef714f8409cf -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002146426333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,71f2184f-544f-4c09-be1a-909408fdb289 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002146426333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,6a814714-1972-4065-9149-1da52afcbf67 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002146426333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,d3aa0b76-673c-4f11-87e6-a9b17bf0088a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002146426333333333,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f4c9f02d-6cd6-4446-81a0-8d4cc5a10bd6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002146426333333333,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c581669e-097d-43bb-bdde-3cae44dc6b4e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002146426333333333,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,9f5f4676-c6e5-4c63-a392-fdd9e1186510 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030895919999999995,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f1813652-0c45-4110-8892-ed2d9c5ba2e4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030895919999999995,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,9ae911c3-25b6-4cc8-87e6-899ecb3d5f91 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030895919999999995,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,916b2223-679e-4df6-a5a5-9a5b779ca514 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030895919999999995,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,4f8befb1-2d57-4a54-a31d-e2584c55c458 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030895919999999995,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,03fbc2da-c266-4bb1-b8f3-db1629dd0473 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030895919999999995,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,5029ed1b-9bca-4d69-b35f-1099b56bbb65 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030895919999999995,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,fef214a1-cc62-40d3-b3ea-978464a9a3b4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030895919999999995,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,e5d8c242-8b8b-477e-8083-e4fd8fadf34d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030895919999999995,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,db9b8c29-6928-4fc1-983e-b78d7a3de5d0 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030895919999999995,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,2774df42-b89c-43ba-81a5-aee51778fd78 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030895919999999995,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,df0815d2-6172-450a-ac88-269b09376ee8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030895919999999995,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f578f7fa-8869-43f8-bee3-79c6f3400bad -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030895919999999995,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,006428fd-d396-47eb-9b21-abc00854dacd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030895919999999995,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,b5509188-5b2f-42e7-98c8-3e3669c7c0cd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030895919999999995,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,6ef71708-4909-4e2c-90e5-f58d92899f2b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030895919999999995,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,925f50b3-d8a0-495b-b4b1-c8d82c651f1b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030895919999999995,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,9b154cdb-521d-4f2d-bdc4-27742b5d41f1 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030895919999999995,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,91bd30bb-bfc9-42e1-accd-289552476edf -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.1969608,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,114cabf1-5abf-4852-bae8-a37ff723a454 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.1969608,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,e34cf8eb-1a24-4a64-b1e8-95a425601a91 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.1969608,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,abc4cef2-f4c4-42ea-b7fb-7aadca3eb82f -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.1969608,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,462e1ab7-ccc4-455d-8e29-dafcf4a39fda -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.1969608,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,62f22a4a-1005-4938-a741-5ab86410ddc8 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.1969608,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,e3ffdbf0-d277-446f-b126-4eba520a8163 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.1969608,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,e7cdc215-a2bc-4481-8007-7bc53880b70d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.1969608,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,9ec672b2-792c-4bbd-9573-2d005c76ece9 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.1969608,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,f5cef4f7-61fc-410e-8db8-846035783ec2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.1969608,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,24fac35b-025a-4ad7-9f01-be31c1b1b2c6 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.1969608,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,266f4691-7e3c-4aae-bcbb-a1fbdc2d1e66 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.1969608,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,ab94d0a8-76bb-4672-ac2a-1050c21f7739 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.1969608,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,8df9a3dd-fc05-4e7b-ab32-b6f98bf197e0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.1969608,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,029443a1-8b59-457b-9e89-ef5a8e3e1ebe -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.1969608,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,96363db9-1fe5-4638-a707-186ab045a0f5 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.1969608,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,b3507d45-4f7b-483d-846e-b55b9f3191d0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.1969608,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,4d5c2393-dc9c-42fe-8b22-44885a65fdd0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.1969608,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:29.18, NCV_units:TJ/kt",,b305b259-a500-4e3f-8bae-e99bb9a6a713 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0015438720000000002,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,f95a18e7-5e97-4122-82f8-1e73c8fc79e6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0015438720000000002,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,d2529e39-e128-47ec-852b-897261b35be2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0015438720000000002,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,aca8b74d-ed21-4be6-8d7a-f030d05e693f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0015438720000000002,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,62b85f44-75f0-45b7-91b4-4f2390641e48 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0015438720000000002,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,74376138-0ab3-4a02-b98d-59a86ba89aa9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0015438720000000002,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,9b4ebf5b-1ca2-4cfa-8f84-2eedbc4ac155 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0015438720000000002,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,41a16d56-1d55-42b2-93ca-1fbeff147801 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0015438720000000002,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,aa3ec524-27ea-4d1f-acda-c7086bbb04eb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0015438720000000002,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,03bdf740-66d2-436e-bbc1-dd274710d7c2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0015438720000000002,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,6fc691a5-3919-47d9-9bb7-482047620255 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0015438720000000002,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,279d8a21-4a5b-49b2-9edb-6316d4b79833 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0015438720000000002,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,d616d2d4-a6b3-415e-a59e-41c1cf8653be -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0015438720000000002,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,54f40f07-2dd1-4d17-8ab1-bde35852540a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0015438720000000002,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,27a261ed-b0b3-40e8-8d95-b25dd5ca9d63 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0015438720000000002,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,c0262977-fc84-48f2-8da5-a6a63b8b1d8c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0015438720000000002,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,905d8aaa-0fb0-434f-aa9f-1421920fee78 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0015438720000000002,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,fd8c5fb5-484a-41b7-9a9f-ba6a8223bdc2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0015438720000000002,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,0767ca4a-174f-4b56-99d6-bf6c3a5332cc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0007629600000000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,7b65d491-2817-4132-8534-38beecf37344 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0007629600000000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,41c13f6e-53c5-47d9-b84a-53543a70d271 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0007629600000000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,c4a707e6-8ef0-42eb-8b2c-2ba528847a43 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0007629600000000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,a5afecf8-6c02-4ef7-b91b-82700d340f4f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0007629600000000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,d60f6846-3231-4bd9-a9e2-db2d82824f02 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0007629600000000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,3124f24c-3234-47ed-8a47-74dcc54138fa -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0007629600000000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,b6609b0a-e39d-4c15-adc4-443ef5202914 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0007629600000000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,83d9a9b2-61cd-4d78-babc-08cd14232b59 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0007629600000000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,fb1d1f99-ad6a-43cd-8951-64672538a9ae -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0007629600000000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,38b5b976-4e1f-4642-9548-1a640aac9463 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0007629600000000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,eafcab44-6bbd-4b4a-908f-83a13f3fdda6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0007629600000000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,0d3f6ba2-3288-4251-8177-c4c1f3b98b72 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0007629600000000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,0ac4f38a-0767-43bc-a0f9-87a13d982c64 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0007629600000000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,d8a1912d-1aa9-4fde-82f5-175f1cbcc089 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0007629600000000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,6f0b591b-5f8c-426f-b40f-a8aa4a84a8c3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0007629600000000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,c691d8f0-5bb4-42ea-9a92-9d9bd02c0460 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0007629600000000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,126be9fa-d003-4c6a-af54-2b4e60f2d7ec -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0007629600000000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:1.9125e-05, NCV_units:TJ/m3",,5781a6ff-4527-4a64-a492-804fc1603dec -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.6989710933333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,4b3242b5-dfe6-4825-b8af-904ee7c50462 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.6989710933333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,ee4a230b-ce26-4764-b94c-2f9770d281d0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.6989710933333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,3ea4bc25-8f98-4b06-84b8-19666b222d70 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.6989710933333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,de0a9a3d-e934-4f6c-bd93-bd7120352833 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.6989710933333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,6ba2cdc4-ecb3-463d-b0c8-b7a5be269700 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.6989710933333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,4daa1d28-413f-4b5e-b498-8eade89f7b15 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.6989710933333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,f583d03e-83e7-42b4-ab26-7a04ad1a775c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.6989710933333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,ae61d0e6-0095-45a2-b999-57515ab95c03 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.6989710933333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,17b1a167-b828-4995-b879-e2761555d1cc -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.6989710933333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,8583a302-3069-4af6-b250-fbf9cb5f143d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.6989710933333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,115298f5-c331-43cf-9296-e80bd614cfb3 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.6989710933333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,3015afca-679b-4b46-836e-47dab4d5e907 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.6989710933333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,d7b7a63c-5931-4656-9fb1-f96e75a109c4 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.6989710933333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,87e8a78a-4976-494c-a66c-d4a3882ad27f -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.6989710933333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,bb75a5e1-5fbd-4cd2-a681-c1a430fce3f1 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.6989710933333334,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,43a917a8-ed53-484d-b973-88354b2c7e11 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.6989710933333334,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,bff40597-04c7-4b9e-879d-fc8b31a43dfe -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.6989710933333334,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:17.521, NCV_units:TJ/kt",,76f73503-4a40-456e-ad03-9e3e4619eae7 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0010862045333333333,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,197dee2b-6969-4ee6-87f5-5842cab4c3df -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0010862045333333333,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,0b016e87-6d3c-4ac9-bfb2-e351c9e5d11a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0010862045333333333,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,dd148156-d82f-4bc2-bb0f-307fad4e9552 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0010862045333333333,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,249f0cee-300c-4db9-88f7-52a4b8a9b5d3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0010862045333333333,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,dee5b5a9-7ca7-4a38-8b9f-7aee462ecc56 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0010862045333333333,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,3f7740da-9092-43fd-a2a6-c5a899bf017d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0010862045333333333,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,e6ee16a3-f74c-4bfc-abd6-8a2b6cd586e8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0010862045333333333,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,f178b485-e02b-44a0-944f-55c061e1e233 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0010862045333333333,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,704afa66-3444-4e0f-8503-728dcc282dde -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0010862045333333333,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,391c9145-490b-47c6-8e3b-57a55316f5c4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0010862045333333333,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,ca269d6f-89b0-4b5c-9452-a677e154c434 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0010862045333333333,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,5d378ea4-c7c2-4d47-9802-af1458f552ac -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0010862045333333333,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,b218309f-335e-493e-be9d-ca3f5855ee89 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0010862045333333333,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,cd9a142a-2b7e-46b1-8877-6747946b9da0 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0010862045333333333,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,9a4323ca-55bc-4eb5-9931-6cd193f77c8c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0010862045333333333,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,bb3e15eb-91e4-4b9f-9518-1da462e25471 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0010862045333333333,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,44e1fea6-b915-4c5d-8966-8287654e8786 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0010862045333333333,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,539cbba3-4bb2-4e1b-90db-17365d5f3c2e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0011755356249999998,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,42a46145-8ad8-4867-99f7-fcf55400b5c3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0011755356249999998,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,210288aa-bbbd-48c5-bb7e-cbc875c05c34 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0011755356249999998,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,ad73459a-c8c4-41c1-a470-ce50d34f0a93 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0011755356249999998,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,e1915d1c-a61d-4cc6-9ab0-28d65ab6c1b0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0011755356249999998,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,1d86ebd5-d06a-411d-bed3-1826aba0abff -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0011755356249999998,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,839d46af-7f7a-4d45-8b59-69d6fd26a229 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0011755356249999998,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,faf41dd5-d898-47bb-b543-de1da835d42d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0011755356249999998,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,7f472daa-7690-4f65-87b9-210aad00c7e9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0011755356249999998,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,18ac0397-02c4-4e28-a735-ea3897272d19 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0011755356249999998,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,b6bc66c0-b895-4e63-bdb6-3c0621c1d322 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0011755356249999998,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,8b7fdb28-dfbf-4da7-9d58-9c4160a032fb -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0011755356249999998,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,48f393e1-af5b-4172-ab5d-6d539549816f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0011755356249999998,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,febfa232-3cbf-4b6c-bf6c-0d38fef74828 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0011755356249999998,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,35b36687-b609-4fbd-a4a8-28c8b9467abf -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0011755356249999998,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,3353a6be-ba13-40b9-bc22-7ec9f9c74e45 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0011755356249999998,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,67dcc81f-7521-42c1-9acd-4d8a6425081e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0011755356249999998,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,0fbe8aec-ddad-43be-a873-a1ab9bfe5c43 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0011755356249999998,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.640625e-06, NCV_units:TJ/m3",,497f6a7e-7cf4-40d0-b5f7-9c8c96cd3e9b -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.0165089733333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,e70c3361-1c32-4d0a-b2c5-b3df37109cb6 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.0165089733333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,a2a7a175-2f19-47c7-a3eb-2f4fe1fc611a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.0165089733333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,6cb860e0-2b84-4e34-9d78-4f6fdf8e5028 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.0165089733333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,4d6c71a4-dfdc-489e-a50c-970ffdb160da -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.0165089733333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,fd0a9169-6282-4f60-9404-1c11db48304c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.0165089733333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,14b7ffe3-5556-4a6a-b33e-db3d1dc2ddfe -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.0165089733333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,77d70d86-03bc-483d-b682-01721105922f -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.0165089733333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,44f7185b-85b0-4fa5-bd3e-a646f8736ffb -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.0165089733333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,8145d6b2-756d-4bd0-81fb-592e905196d2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.0165089733333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,b5a4ad93-d738-42ef-af90-e6abbbed7ddf -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.0165089733333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,8b95fbb1-fbaf-4669-998e-2fdc5e721672 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.0165089733333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,96c41a8e-ecf5-44ff-9ab3-e44f0f9f5f92 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.0165089733333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,c7c4ec52-1c1f-4c6c-8d44-7fd3832d079a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.0165089733333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,0b4c1186-e862-4b87-8f3f-09de843099ae -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.0165089733333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,e5ef3c22-f818-4c7b-9b0a-26c09e892f17 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.0165089733333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,ee89181d-197d-457c-a7f9-9ccbd8f6f21e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.0165089733333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,54bf139b-7ca0-4d59-a156-18c28b819fb3 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.0165089733333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:6.607, NCV_units:TJ/kt",,2cdf7031-ae96-46e7-9c6e-2689ff43a1a4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029437979999999996,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,15e26991-ebf0-4393-8f99-299de2f10d66 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029437979999999996,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,b791786c-4c38-4a5a-9c71-0e3a9dac3bbe -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029437979999999996,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ea5970fa-b21d-498a-8618-ce596a507d3d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029437979999999996,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,80943608-6b3b-405e-978e-490996bb8207 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029437979999999996,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,7550728b-d5db-4fee-9e5c-dcaa30ff1e0c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029437979999999996,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,718a7240-5fc9-4cf8-94da-60673d684349 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029437979999999996,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,714cef62-08b2-493c-a3e5-994e288b9cfb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029437979999999996,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c09dd4c7-488a-43e8-b79a-7fab88549327 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029437979999999996,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d07a191c-6c1d-4ece-91f6-d00296f79498 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029437979999999996,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f816107b-4672-4882-997e-364076ba77ab -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029437979999999996,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,7964aeef-024a-4b7f-9b94-3bbd349bcd10 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029437979999999996,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,37e75281-fcca-449f-90c7-480bbbf087a6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029437979999999996,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,cb02f8c7-ba0d-4d51-9c39-9bca54d05edb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029437979999999996,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,49e2c319-f24e-4489-beda-0514d1cd17aa -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029437979999999996,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,545e776d-0e1e-4512-9b1e-997121b43460 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029437979999999996,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,968e1b1b-0633-477c-8a75-dfb4fed3d7ea -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029437979999999996,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,18bfb881-b641-4787-b1ef-5d818f6931dc -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029437979999999996,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,cae986bc-cd71-4ece-a087-12f6995de36d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.664119791666667,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,db4ebc9c-8447-4fb2-baba-cd241a02265d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.664119791666667,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,1726a6df-9f3a-48ca-a9ca-d2ed0eb2545c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.664119791666667,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,be600fc1-1405-43ab-846e-9fe91b8bf8ea -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.664119791666667,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,057f2a40-3bd4-44df-8f1e-57d10c3e0fc1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.664119791666667,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,19fa5ec0-c68a-4440-acd3-7e356d8351a2 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.664119791666667,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,b90d747b-fc5b-48cb-a688-4a23ec4b87a8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.664119791666667,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,76538994-d90f-4b00-a93f-3709a39d4d50 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.664119791666667,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,b2fff912-fdae-4df8-a76c-0fca89bc30ff -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.664119791666667,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d3d0951c-b041-4142-b332-6ca9742ec3d1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.664119791666667,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,dcfd3785-42d5-4586-9d96-ad817581b49e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.664119791666667,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,39d7aa02-d30d-437e-ace4-5cad11d7cc9a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.664119791666667,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,eecf492f-f1d8-43e9-9ec1-ee2936223e2e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.664119791666667,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a7a78fd7-ecd7-4a42-b0f2-130d61c904bb -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.664119791666667,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,a0cce15e-8672-413e-af09-3bf5b36c63ea -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.664119791666667,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,eeed749e-5479-4602-a847-6b9878649ef4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.664119791666667,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,3cd8ddf7-c4b8-4164-aa7b-e1a215985bf7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.664119791666667,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,2e426914-c237-4f9d-8b2d-ba28468f1cbc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.664119791666667,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.03828125, NCV_units:TJ/kl",,d05610d4-ac4d-413e-86e4-137d8b4576a9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029528546666666663,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,3ddda078-d8ee-46e9-9b83-23b7d26d9b40 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029528546666666663,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,23446f37-a31d-4b85-aed9-cd515a4d340a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029528546666666663,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,be0f826d-fb84-464b-9893-04785c4a94e4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029528546666666663,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,6af1ae2f-024d-430a-b43a-b7219adcf428 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029528546666666663,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,26f37561-564a-4b4b-8980-c9f8f4a625ff -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029528546666666663,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,fff32a8d-6a59-4d3e-b67e-a1a47534d118 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029528546666666663,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,34c17976-f54f-4274-95a2-263cb722f0de -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029528546666666663,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,b16cdcee-8959-4cff-aaa0-1ab79546f43d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029528546666666663,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,97b06d8c-63b4-4670-8d33-c99aba5d0170 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029528546666666663,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,cafc33f5-20dc-4185-89c3-7793358aa6d9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029528546666666663,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,dbfb494c-a768-49de-8fca-2b976837a024 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029528546666666663,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,a6a50b21-c9d1-4fdb-b60f-083e400595a0 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029528546666666663,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,f5d52995-7932-44e7-b782-90426acfc9da -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029528546666666663,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,00223ae9-2c37-4e4f-b268-1a4b632a2c20 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029528546666666663,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,6596c215-8fe3-4b34-b1a3-d734e7602645 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029528546666666663,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,85033c4a-656f-4ac4-a2a5-57676852dff8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029528546666666663,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,b9d8b569-afd8-4bf9-bfc0-b3b8b789ccd6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029528546666666663,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,f4c27eb8-3345-4005-81bf-d37b8754a318 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3340579166666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,bfcf3ce2-0e91-464d-9e39-3ad7789fffb4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3340579166666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,0cbaffd9-52ed-4853-9343-c0dab5c44679 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3340579166666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,9c768f08-c358-49c7-afb6-ea0b8f446b21 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3340579166666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,a28f7230-fcae-43e8-b98c-534a316e654f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3340579166666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,21c9bf7d-2199-48c4-989e-83e1c3b4b39b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3340579166666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,07d0579b-cc69-4bd7-aea2-1e5c543cc703 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3340579166666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,3d33b87e-fda8-48da-ada3-7209deaddd26 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3340579166666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,8f6cbfff-fb02-445d-8229-a5709cb2508d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3340579166666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,d4c58f1c-84c1-4b64-96cf-e9902241eee6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3340579166666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,9938dc10-7265-45b6-871a-3a47a65926e2 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3340579166666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,1f583cdf-c1a1-442a-b291-f0b5fbc94ed0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3340579166666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,885df02e-e517-454e-a539-ea8596343c77 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3340579166666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,f5b08a6c-089e-497d-b2a6-8decb11d8128 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3340579166666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,baeaa751-67c3-4b49-b907-f171a66a6be1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3340579166666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,6c9f8300-c355-450a-97df-f331428df4e7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3340579166666666,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,7b6e6253-b801-420e-acf9-b7d771cc8e65 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3340579166666666,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,9ff922ef-b0c9-47b8-b1d4-4fcc2c8e146b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3340579166666666,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:0.0349375, NCV_units:TJ/kl",,8d46d421-16e7-4981-8d99-b50ab6bc007f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030391276666666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,c2ee81d5-c1ea-410b-880e-a74365436f57 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030391276666666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,65466152-6270-4390-a0ef-d06943f152b7 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030391276666666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,fddbb186-972a-44e3-9423-a111ca63af96 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030391276666666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,b11a7f8b-9df7-4716-84d9-0c37eb598347 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030391276666666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,67dd8c78-308b-4e40-8bfd-4469e4c297a7 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030391276666666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,38ba53e1-47db-49d0-aab8-4af412587d2a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030391276666666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,b80bbbda-ea79-45dc-a1fe-4227772ddbd2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030391276666666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,b7fc01bd-a304-47f4-8076-f10c62d996c6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030391276666666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,774c8dd8-c73c-4edb-9d1b-2e14e60fd896 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030391276666666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,38dcda06-dcbb-47cd-831b-5b0fce813eb9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030391276666666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8b364284-1a78-4d83-abfa-39918c35c4d8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030391276666666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2a057976-2bf2-4212-a571-48d84f896ff2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030391276666666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,7aba34fa-5c7f-4690-a416-fb91a97a7ec8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030391276666666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,46908097-485c-4e6c-aabf-66245f7b01a8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030391276666666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,bd9eae31-3513-4257-b736-6e2222001874 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030391276666666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,0d6ac526-4cf2-4b54-89e2-6c96d0190234 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030391276666666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,bff74309-e4a4-42d2-9dbd-8d053e220fb4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030391276666666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,af548a80-3965-4394-9670-1f482f4b635e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2896362500000005,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,9177501d-0e79-4739-8fea-dbd67151ee4e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2896362500000005,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,af6c44e6-5f0d-4578-b914-ba568ca64291 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2896362500000005,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,373209e2-c6ce-47f7-9904-3a6378eacaca -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2896362500000005,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,d1afb320-b1fc-4ac1-89c3-58d4a38a1f43 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2896362500000005,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,7dc3a756-2e6f-4a6d-8252-ffde025191a4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2896362500000005,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,4baab66a-5244-4958-bc5e-a3a41cac6eb7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2896362500000005,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,5a899e47-3ca6-4612-bb89-21f692a86944 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2896362500000005,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,e49e265c-85b4-47c1-b6d8-97eeb788e4e6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2896362500000005,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,d3daeb0d-9366-4936-acb0-9c5a249aad56 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2896362500000005,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,70f1905b-3f55-48b2-ac42-e1fb92a3dc88 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2896362500000005,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,2a73a08b-3dd4-4275-8af1-288246ca6b52 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2896362500000005,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,e7acb669-9bab-421c-bdf9-579cb85773fc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2896362500000005,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,6fa528b1-407d-486f-834d-263f7d4e9baf -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2896362500000005,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,f4871289-0b38-4a9f-8608-9d8cea13acb6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2896362500000005,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,b40aba9e-bfc4-47f9-acd3-5576dc3fb8ec -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2896362500000005,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,953dff42-9d3a-410a-b3cf-e74cbbd2f213 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2896362500000005,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,c273f808-06eb-4b1a-9177-ba9ec825909c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2896362500000005,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.033375, NCV_units:TJ/kl",,7337428f-a479-4164-b00e-23633e52fa08 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029595478,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,7b84e779-0bf2-4c7a-82b0-19e4979317c5 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029595478,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,be7f9738-cd2a-48f8-851f-479d548cc08b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029595478,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d2231092-b0c5-44ca-b9a5-53fb20873393 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029595478,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,ffd3c7c5-fdb4-4634-ac3a-206cf07366d9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029595478,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,8a951914-1f72-4558-93b4-7dd42392d59f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029595478,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,7ed47aa6-b5f0-4494-bd46-cddbb2870984 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029595478,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,bbc88810-bd9d-4fb8-b936-95733c5921ba -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029595478,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,a9debd4a-e48d-4c8a-bdfd-006a04e6879b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029595478,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,376ed172-0baa-47e1-91c1-d5d0b8926697 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029595478,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,609a35ad-74b8-4bc7-b7ae-9961d65d4007 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029595478,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,41efcab8-2dcc-4051-a5ac-96fa6647c184 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029595478,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d81979d3-e1b7-41ab-8a40-763694bdf5c5 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029595478,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,d3a7e020-66dc-4756-b607-55868cfc38b3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029595478,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6b118c1e-6e9e-4d12-9e37-805a8ac3f9ea -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029595478,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,567c6377-b198-4df5-ac61-8aebc6af2d8f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029595478,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,2f58b9af-346c-44a7-8017-d4f6c5277ef8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029595478,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,ee2b1c37-78a6-4c98-bd07-6ebbe49a315f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029595478,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,4373a093-7b41-45d3-8d9b-1e7d17693e9c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002935536633333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,4a83a6b5-0e8b-43d7-b758-4c5651f93071 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002935536633333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e799a45e-b28e-4c4f-9381-be4a7eae1829 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002935536633333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,5cd5d81b-09b2-4f8b-9c8b-7816551e1791 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002935536633333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,de58a13d-a4f3-4425-80f9-f0ec809a015a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002935536633333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,dbf254ac-d426-4c31-a48a-22430da33e38 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002935536633333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,13089690-48b8-4c39-bfab-37d854a45bf2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002935536633333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,6480a440-0355-4ddf-aaff-bd7ce090d9dd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002935536633333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,9bb93f01-6569-44a9-9845-25e51346cf7f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002935536633333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,5afde8a4-33f1-4c86-847d-9b6734111dfe -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002935536633333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,4c1e5860-75e5-4855-9674-5812db09480f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002935536633333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,1e632319-92d1-4cb7-8cef-ab245f8866e8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002935536633333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,3b6d17fb-67e6-48eb-9a45-c733d6f37d1f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002935536633333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,ac5f4c79-df28-4e2a-a1f6-29542312e53a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002935536633333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,c2b62f98-61f2-49db-9ef6-eae026351131 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002935536633333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,f4cdabfe-bc32-409c-b10d-c3877454a980 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002935536633333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b7a21d51-74e6-4e9b-bc34-143f0d244ab2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002935536633333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,c0b5b957-74ef-43dd-a522-3b9a5c2cce41 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002935536633333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,94fac1bb-f40e-40b2-96d8-7db375f2aca3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029520014333333337,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,c475155b-2955-48d0-8b6a-125b015d6c50 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029520014333333337,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,a132a823-a34f-4914-90d9-3da046988708 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029520014333333337,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,f129fb8b-c031-47a1-ab1c-b1c65713cfb8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029520014333333337,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,0c6e1bd4-2d6e-46af-bd62-3d66c241f7db -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029520014333333337,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,23a24f62-2c06-48df-b420-7b7270a3046d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029520014333333337,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,799f1b67-3d98-4c5e-b461-9174968dc030 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029520014333333337,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,191be3a7-8217-41df-9021-87c3ef948ac9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029520014333333337,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,fa580b59-0370-4410-8124-89f9c1535e56 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029520014333333337,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,b9332973-45c1-431c-95e2-8986511bb074 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029520014333333337,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,d73e56a2-56a8-4150-8b48-cab8f648ad5c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029520014333333337,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,449c676d-a3eb-4c92-937f-2242fb01645a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029520014333333337,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,c2a726e4-ad6e-48a3-8660-1f1fed73c063 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029520014333333337,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,a8a49eaa-28b2-487f-9679-0ac7e5d86a60 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029520014333333337,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,0cd0f000-ec0c-4e99-9248-55713782cacd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029520014333333337,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,8b9b3d8e-da9b-4512-9203-66f98e3db40b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029520014333333337,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,67b82a05-9161-401f-ae7e-1aa7a76819c3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029520014333333337,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,fd5a6735-bc50-4293-97fc-89ab5a9e7f3e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029520014333333337,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,b4132ecf-2f82-46a4-b252-219906320926 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030060029999999997,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,09fc61ba-80b7-4ff8-8c7a-719b55ef9696 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030060029999999997,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,c890766a-9daa-40c7-b3d1-b378e1ac6b87 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0030060029999999997,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,334d2ab0-24c8-4171-a657-1b4b1c184799 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030060029999999997,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,1c3c3f3c-3cd7-495b-841c-068e94d231b3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030060029999999997,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,8f11185b-4998-4f1a-a08c-df27754cfc6c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0030060029999999997,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,64683fe8-2646-4e37-be3b-ebe37810f90b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030060029999999997,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,d1c7f9ef-0bb1-4e1e-b369-b5a37b35cacd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030060029999999997,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,a9463032-02c4-4bf0-a783-fbe915bcbcce -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0030060029999999997,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,c1cfff70-68b8-47c9-ab52-c536c81ef2d6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030060029999999997,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,ed84e009-6d31-4ef2-8a9f-50494db1f3cf -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030060029999999997,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,a8d719d2-7a5a-4f7c-9465-8d3299eefd13 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0030060029999999997,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,0cf97380-74e4-4f5a-b6db-27bd41faa43c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030060029999999997,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,752547ed-2c51-4731-b651-ececfba46e6f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030060029999999997,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,bf55d572-a599-47ae-ad75-0bb48596ff7b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0030060029999999997,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,5518392d-503d-4fb6-8d72-6c06f636ff9b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030060029999999997,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,31e842c1-5258-4559-b84c-2d67e6557e19 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030060029999999997,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,02c33b00-8994-4029-8d9c-72eaa2d645a2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0030060029999999997,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,3b94be4f-a573-4be1-86b7-dbd93315c4b6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.4773111458333332,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,09eff203-3846-4321-b019-fbdbcad4cc2c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.4773111458333332,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,26b86905-7f52-4eb6-818d-df5bd5ad4bd9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.4773111458333332,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,9b6eabab-cd83-4bdb-801f-b92d7414cc25 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.4773111458333332,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,2996f050-6681-4168-8ead-3d876b003732 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.4773111458333332,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,0869a5d6-6a87-48e2-bf3d-49bd5ad6ead5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.4773111458333332,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,3c54b04d-b517-4e25-8921-3da0e5f5f6c5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.4773111458333332,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,c88c91e2-8166-486d-a765-79bbf38172a3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.4773111458333332,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,1c08c5a6-9820-4ce7-81ff-e1960dc46882 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.4773111458333332,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,97fd3a47-7ae2-4771-bb2e-a91b8baf0714 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.4773111458333332,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,11d62c94-dc6b-4613-aa49-073d9d7d2802 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.4773111458333332,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,c13043c3-1039-4da3-8873-892ef1062e4d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.4773111458333332,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,9779d83e-8de9-4a08-8053-e1710436a317 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.4773111458333332,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,4415204a-d71c-4dae-9046-c5d461f75fd0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.4773111458333332,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,96035158-bca0-41da-bc27-b62bdf4d8836 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.4773111458333332,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,c6b66595-51b1-423b-8176-8d9a958140ec -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.4773111458333332,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,44913073-2bf4-4653-809d-990279105bba -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.4773111458333332,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,10e1e3c7-8578-4545-9e61-d5131238e01f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.4773111458333332,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:0.03634375, NCV_units:TJ/kl",,d9d581cc-35a0-4d5d-a626-f5cd83536084 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002961696833333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,84a91c9f-110c-4a10-9a15-d63d98684982 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002961696833333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,c8bf4dc3-bf81-46c9-a059-39e4e9b8f83a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002961696833333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,5fc9b7a1-baaf-4357-a06c-b2ed3d8ebf8d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002961696833333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,ff395c34-a1d4-495f-adfa-b4eb27e41600 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002961696833333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,c01160e8-cfb6-4592-9465-7095fc30cea1 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002961696833333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,d98660de-c0dc-43fb-80ba-70940abe6630 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002961696833333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,6c51f4ed-bbb4-4452-a992-2f4c79793231 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002961696833333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,051aae5b-488e-45d0-93fd-850091af9870 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002961696833333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,2034a2d7-4b75-432c-9855-e5020098c9ad -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002961696833333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,a4aafab2-c3c7-4e5c-bcc2-872cee18662a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002961696833333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,a4270854-ee5c-435e-87ed-b4f0c8e6c5ad -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002961696833333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,67d33d33-72f2-4a47-b2fb-40f1228038d4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002961696833333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,88f90d20-fb4d-4076-aac8-84fc0c422996 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002961696833333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,88601416-7d81-4fd8-a508-761769b91b3f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002961696833333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,95f007e0-2cbc-4961-977b-d3a7ccedd186 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002961696833333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,3b3dd5d9-0582-4923-b898-479d31bd65e2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002961696833333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,3412f286-654d-4020-9827-d60b3541b299 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002961696833333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,79ba0f38-4532-4cd3-b4ac-f3b94970e296 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029691948,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,7c770514-53c5-4003-a11e-4e91c52df483 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029691948,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,6df82826-2ccf-4442-b7f9-8d3ebd23c028 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0029691948,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,b9c47726-bddd-4da3-aad5-b7db43402645 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029691948,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,e88f0c17-6988-4441-b849-e9d900c2da7c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029691948,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,ac7c1bfd-c5b9-4dad-bb3a-43c27fb77a29 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0029691948,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,ad2f90bb-774f-4eec-93b9-ea687593b69f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029691948,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,29bdf6ad-88c4-4182-bdf9-d574a869f138 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029691948,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,8a6f26b6-bea6-4803-9952-937dda2e8f5e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0029691948,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,6e21564a-10dc-4716-812e-bd8bac15258b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029691948,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,d4ee0677-cf45-4542-b17d-e263411f570a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029691948,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,a37e8ae6-96ae-4900-9c7d-5452dbca642e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0029691948,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,b1d15614-1e47-4a63-bc45-20eaeebf067b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029691948,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,315646d8-c48d-4e35-a748-f094e1305802 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029691948,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,16283ecf-ee29-41e5-b369-29b68aec5239 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0029691948,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,6506d14f-c315-4e4a-be6e-686585e13876 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029691948,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,78309299-4011-4206-a642-754017b8df1f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029691948,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,7da259e9-d26d-4072-a904-6d3857eeabd9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0029691948,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,77784857-1f21-41cd-b00b-f2286b72792b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002967831533333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,8894940a-e8ee-4f25-9226-3a674f253991 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002967831533333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,0728893a-0b77-4fcc-b201-2c16820345c5 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002967831533333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,cb8a2eb7-944a-4d7d-8045-d56f9f6bd8ce -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002967831533333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,b0aaf432-d4ad-430b-92c3-6131ebb1e5dc -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002967831533333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,b25192f5-c934-47cb-a2fe-e45a0da98425 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002967831533333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,a950086d-a911-430f-bc26-3f0c6a8e524b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002967831533333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,97399a5c-2bd3-45a2-80f0-5cbaa3b49fc2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002967831533333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,105f2b9c-73c2-4a2c-a348-d5255707207f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002967831533333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,13c9dd28-0b7e-48ac-8e68-cbb3f04b6bcd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002967831533333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,97504339-fb13-4672-a185-7c61c3e0bb24 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002967831533333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,fc3e5aff-adc3-47e7-b1bb-4af556dcd4a2 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002967831533333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,523e3316-f36a-4688-8f53-0dbb8bb6681e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002967831533333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,a56eb2c2-a462-4e90-ad81-34b3ab0f527a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002967831533333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,20cffc51-c316-4cdd-bde3-db482b1a2a74 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002967831533333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,8a923699-8f29-45bd-91a0-8271500c3ebe -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002967831533333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,96d6cb81-fcad-4848-938f-0a55779bad38 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002967831533333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,36f039fe-b101-4d0b-8c6a-8093f5fcb378 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002967831533333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,dc272d80-876c-42ea-9db1-f79fd197c33b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.003062972,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,c050244e-8e49-4abe-9c71-33efcac19c56 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.003062972,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,d7b23b84-0b70-465e-b134-3f497d2bbced -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.003062972,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,361c4346-4cee-47bf-91d0-7376b813fc7b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.003062972,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,23e01a95-1d35-4042-b9df-da57dee68ab4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.003062972,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,581f505d-bce6-4557-8f59-147fb166a534 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.003062972,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,d7d65572-1e4d-4081-9f10-608a176dde95 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.003062972,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,4bd524c1-68e7-446f-83dc-79e52c6d3ef8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.003062972,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,a6f4075a-c1e0-4f40-9d0c-d954439de7a5 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.003062972,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,7943458c-8e81-4e98-8a14-e54dfb09d9d9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.003062972,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,2ab862bf-f7ec-4e44-ab90-d279c7a2bcdf -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.003062972,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,263cdfca-4d3b-4850-b8d6-d1df378c4bbd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.003062972,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,53d62d40-3dea-4f48-9337-0d81d64f5c7d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.003062972,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,fe3f1f86-346e-464f-ad42-367743071930 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.003062972,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,c835f320-75d3-49ba-ab07-cb51dd11c8eb -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.003062972,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,2fc89d56-8106-420b-bdce-a9358a47a497 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.003062972,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,c6962289-0629-4b85-beb1-a1e523801ed6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.003062972,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,00a8cc0c-899b-40b9-a0b9-b0d4b9d419fc -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.003062972,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,993524df-81d6-44a0-bed9-54453310a378 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.190214866666666,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,74eac922-2689-4945-9d39-42a2577ba133 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.190214866666666,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,6a50178e-9040-4d4c-b913-d5a38859c597 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.190214866666666,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,952f3e4b-f59f-4a25-8bb8-807d044c7f51 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.190214866666666,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,f030cf6f-c847-4b54-bab9-9968948eec79 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.190214866666666,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,f9c90d5b-95dd-4b8e-9853-2c74a1b6466c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.190214866666666,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,5d107487-4660-4f2c-aded-cccc37948358 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.190214866666666,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,1220d861-4fc4-4fe1-8ad4-e3a69f8955ea -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.190214866666666,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,aad8d316-7e37-45cb-a773-830521e4db5e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.190214866666666,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,50dbf1c5-9431-4d88-9fc7-f0c7bd5290a2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.190214866666666,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,66f59814-ef25-4277-9942-9174582e32b8 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.190214866666666,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,92e2e615-c6df-4b04-8561-43ead5a29975 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.190214866666666,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,36b2f926-d869-423f-a8b1-f105613d4fc2 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.190214866666666,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,edf2dfa8-0785-48ae-a03a-36ae18f198c0 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.190214866666666,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,675ac5a0-a4a4-49cc-a5e7-69ed2fef9563 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.190214866666666,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,86f00c4c-b8c8-4a45-8ff2-8474930804ea -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.190214866666666,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,172c6aa8-a3a5-44b8-82cd-4820f57838f1 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.190214866666666,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,de5ac87c-c7da-4ad2-8913-3dfeaebe6b33 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.190214866666666,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:41.87, NCV_units:TJ/kt",,06e4f7f4-e6e6-4c1e-b62e-21cf3ce20516 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0028391036666666663,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,171962fa-11cd-4b1f-b4f1-f93b8e623920 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0028391036666666663,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,d4913767-f08a-4add-8797-2f35c813a987 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0028391036666666663,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,58054736-efff-40f2-a72a-8e3bc91b2550 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0028391036666666663,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,549f0867-d258-4eca-9ea2-6c69e66f7872 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0028391036666666663,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,e7e86a7f-3e26-4030-adda-47efbd1e2357 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0028391036666666663,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,daffe2f0-203e-40ca-b8da-3f19762760a6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0028391036666666663,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,0d8c2572-b8c3-4956-9c33-a5dc78a8237f -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0028391036666666663,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,a336ea66-f195-40de-b783-4c3c12bd06ed -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0028391036666666663,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,72cf06e8-61a8-453c-8eb6-212ea4abb7cd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0028391036666666663,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,fafce26d-974c-4e5d-a460-071f4a3bfa58 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0028391036666666663,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,11e08bc1-a3f4-4a02-a7e1-449e1bba33b9 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0028391036666666663,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,3792c4b2-79b2-41fd-ad50-3ef650982c04 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0028391036666666663,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,585e609c-1ebc-47a8-8e1f-467af00f9d4a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0028391036666666663,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,84174e81-59c9-4f3c-a33a-f833423f7216 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0028391036666666663,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,e747d20d-80ba-4417-a673-9158b6ef0e14 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0028391036666666663,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,5cd08ae4-eeb2-4d92-b0c5-bd0a1a62c89d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0028391036666666663,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,761e8133-2e69-49f4-9177-496312afcf26 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0028391036666666663,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,2c78aa56-d1d5-42c8-bac1-d55b1bb357c3 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.004768066666667,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,dc8f0ea5-bec3-4b34-9b42-f59ee6d79626 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.004768066666667,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,b3fe0538-5422-4f24-a9b8-f84356eea6ea -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.004768066666667,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,f8b4e92c-dbfc-4760-9202-a2ce07005785 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.004768066666667,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,c4c51b5b-a5d9-4093-92e6-ee2133af6cad -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.004768066666667,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,5ada81df-61ac-4da6-a582-f29f8ab952ed -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.004768066666667,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,f4c0397f-a741-483e-b8ed-c7439d834ee1 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.004768066666667,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,27995f14-a8f2-42d0-b10f-abec5a62cc1d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.004768066666667,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,1ff5a338-4ad5-453c-8a23-83e2649aa3f7 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.004768066666667,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,e0cd319c-820e-42f9-b522-abc9f502023b -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.004768066666667,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,bdf37dfb-cf61-44d9-ac3e-66ba1af8de79 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.004768066666667,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,aee2e076-ed04-441e-aebb-f395a8ddbf0a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.004768066666667,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,7b4bde1a-dea2-4d51-9044-03c291396109 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.004768066666667,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,13e4c718-23e8-4500-a7bf-7db3a58304b6 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.004768066666667,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,5d3e5b2e-5f2d-4229-a077-a19597b2b989 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.004768066666667,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,7518ca7d-1b20-448c-8a4b-1308eee1961b -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.004768066666667,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,49daf086-fc7f-4fcf-825b-943cb36c5a78 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.004768066666667,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,35b94c66-4d4d-4f38-91bf-3e560a70e98e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.004768066666667,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:50.06, NCV_units:TJ/kt",,0922fe7e-db80-4fbd-a3ec-98e2a3e58880 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0024411199999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3397fab5-e72d-4ce1-90a7-ccdfc3acc317 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0024411199999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9e8bfc36-3246-400f-827c-b2e9124f8064 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0024411199999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7bf35280-65a7-49f3-b056-aaba802d99c0 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0024411199999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6f14c9f0-c18d-4486-99d3-f485a4001952 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0024411199999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ec6c21b-a545-4131-9885-a7081eccc5c8 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0024411199999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,50a201f8-0a36-4c52-828d-0610f090ce3b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0024411199999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c815e3c2-0e81-4491-b3c3-afae983af03d -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0024411199999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,db72dcea-be30-4836-891b-1bdbb6564a88 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0024411199999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,188ab6ec-f7ce-40c5-bfd7-6d948182b4fa -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0024411199999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e0df6d12-d8aa-415e-a926-0a3713687c3a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0024411199999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3cb66822-3e98-4297-a2ec-12db4d8cc03c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0024411199999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,205257ab-2bd6-4a9a-b9b2-ffbf70bcce6a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0024411199999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,77122200-1829-46d6-8fa8-a0ccc45b209c -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0024411199999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6e076c9c-0cc6-4909-ab31-7507060e25e4 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0024411199999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,580fe286-81ab-4e58-92f1-954d75c3a705 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0024411199999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8236d825-a39e-4c69-aef7-8e96f4f068c3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0024411199999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ee6b4527-4077-4e8d-bcb8-4363a52dd666 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0024411199999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d1f2a632-69f4-4c21-9fd3-2233bb505ea8 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.7706712,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9c220ead-0062-4edb-a389-cda904b02447 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.7706712,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4bd0d7e5-eec0-4941-a71e-7b1de9eb503d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.7706712,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,03543dca-d2b3-4474-b315-adc6c6b2d749 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.7706712,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f619ae03-dd50-4c58-8a60-8530e3be1bff -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.7706712,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,41ec52e0-5f70-4d98-b62a-73aa94488adb -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.7706712,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9eb2599a-9a24-4407-9e45-a4a567a21feb -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.7706712,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,70bb968c-6a5b-4bf8-b8c4-c819fb8fb9c9 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.7706712,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,af515074-d7da-4d56-a518-ed0665bc14ae -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.7706712,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,97d29297-6f30-499f-b60c-cee4d8aa1026 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.7706712,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,13bd70a5-330e-4af0-88cd-0fcb944e2a11 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.7706712,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5509eac4-2484-40fc-ac5d-a96119746b4d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.7706712,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,00b66e7e-4ebe-4b21-9dea-f23f1f89b70a -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.7706712,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f35b7dab-7f18-45c7-8384-a88695f11a6e -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.7706712,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e611b518-9214-4dca-9626-8ba279b9af71 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.7706712,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ccdbc1c3-c80a-4fbd-9f5a-93b9ada69379 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.7706712,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d13e6740-7e39-4131-8aa1-dff33f6d60ac -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.7706712,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ff452bf1-d7a9-4e51-8878-40e693213ff3 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.7706712,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cc1287bf-0d71-4e1f-86c5-b56edd5d5e07 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002042213020833333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,51862521-9ee6-41d5-90b0-0fc4cf8cf84c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002042213020833333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c73a91ad-dc2c-4971-b3e2-69afee5326dc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.002042213020833333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,33f0e4b9-2b34-4a68-bbec-81b7198e79c3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002042213020833333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8f188e5d-97c1-44f3-82bb-823cb584b721 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002042213020833333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1445566e-79ef-471b-bc16-e10d70365c65 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.002042213020833333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c6eab076-7523-4ca3-85ee-fa103f2bdb2a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002042213020833333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,28e65bdb-fcfe-475a-9874-51ead9e98a45 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002042213020833333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,df77770b-bf3c-4768-a0f7-14e54001b115 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.002042213020833333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5318ee8c-7505-4d40-b57e-741672f432b9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002042213020833333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9838137b-b6e7-4609-b7d9-01fb9faa2511 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002042213020833333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c6fa4620-2e36-4009-a8a2-909151c84d99 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.002042213020833333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6cf98454-b6d5-4931-ace7-df05c73ac486 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002042213020833333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7f61f01c-aac5-403b-a7d7-a00d61cbbe65 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002042213020833333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c22bbe8e-118d-4748-b962-c7b6775f358c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.002042213020833333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ef516a24-7179-40b4-8171-3ecff84dbef7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002042213020833333,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,735f9619-ee26-4e72-804e-ba38b25c1ea7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002042213020833333,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9a79d749-0c78-4f8e-803c-d60517e626be -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.002042213020833333,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,802af3b8-d711-4307-8a62-3c8308dcf56e -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0024481599999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6f772c2c-9d4e-4b42-afee-837b3ed57e9a -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0024481599999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e49c3f99-2017-425b-9271-76ebc2ae1046 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0024481599999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a735dd9e-1750-4f83-b2c6-8c3c93e1ba01 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0024481599999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a007b098-d7fe-4e40-b974-19b72d2e21a3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0024481599999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c5cd6352-9188-42aa-885c-9d554a435000 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0024481599999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,01c91187-2601-40cc-b6e5-6a13871a4c54 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0024481599999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,86dafb0c-660c-4fb0-b913-2de38104d793 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0024481599999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,00233f10-a4c9-447a-8032-fc9ba8afadfd -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0024481599999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a46f5b59-cd45-464f-9250-f185815f509b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0024481599999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,434b205e-1d95-40e1-a6c1-ff0065d37d0b -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0024481599999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ba59037e-e11b-4170-ad99-d3a1130a87ea -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0024481599999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,49633edd-e899-4525-86f8-4b836db773d0 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0024481599999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,869be452-567b-4725-aa87-4f93b5ce3bfa -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0024481599999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,50be7ce0-e034-477a-b922-fcf87d065da3 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0024481599999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,78227953-4a08-4657-9187-e4b0c772aa79 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0024481599999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,953c6606-476e-435a-bd57-4c998ce697d6 -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0024481599999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0d26a548-9c82-4204-ad92-3f5600d508cc -CO2,Japan,kg/kg,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0024481599999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f3cc8e12-11bb-4db7-a569-030d31e44183 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.7786615999999995,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0ec4de8a-b6fc-4e5e-81b0-46c969737dfd -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.7786615999999995,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c6176a9f-89a6-4bd1-a033-78f2f24b5be4 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.7786615999999995,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f1c0fcbc-98cf-4959-8422-abe4085aa6cc -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.7786615999999995,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e7a85667-ba2c-4851-ac14-fc1d0a5345df -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.7786615999999995,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,31080657-e8fc-449f-bdee-a601983fdb58 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.7786615999999995,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,45105701-92e7-4e2a-bcc0-e64132f0ee01 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.7786615999999995,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,61ae5e32-0320-4ac1-b8c9-1efadb518f1c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.7786615999999995,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2e1cc0d3-acec-4e58-9dda-d2773af07bcd -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.7786615999999995,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a90095cc-22f9-449f-b342-3dec89360b7c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.7786615999999995,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b3a692a2-3367-4c61-91d2-33224dfc678c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.7786615999999995,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,009c8804-1cfe-4377-94bd-68a3fe3a2f03 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.7786615999999995,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,88e21680-d0fc-4b11-85a2-d6e3fe88387c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.7786615999999995,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1b28f3c9-1446-4abf-8c29-d8afb6064389 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.7786615999999995,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a6fa98e0-4acd-4748-a36c-cbc7dfcecd07 -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.7786615999999995,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3faeda76-eb15-46ff-ab58-011a45c55a7c -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.7786615999999995,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e42660a9-fbb2-4fe7-ad44-de5e884cb52d -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.7786615999999995,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8b6b26ed-96c2-4e81-85bc-4c97cc35bbfb -CO2,Japan,kg/t,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.7786615999999995,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,34ac7524-805e-4628-8cd7-7ccac783dfa8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0020481026041666663,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c79f81fd-d54e-450f-98a5-8a3d4f118e96 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0020481026041666663,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,232a239e-2a54-4006-8b77-32faf6991d95 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0020481026041666663,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8da2c39c-728b-45be-9c80-b5b6d9585424 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0020481026041666663,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,69c83195-ddd4-467d-b5ea-a240fbf88951 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0020481026041666663,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,39d569eb-f79a-42ae-aec9-e88ee4d49e5e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0020481026041666663,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5636823c-b0bc-45f0-8da2-6a1d8763867b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0020481026041666663,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8c72002a-4408-4994-a541-e8f9f55625dd -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0020481026041666663,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d57ef675-3ce1-40d8-94c7-e7b6348682a8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0020481026041666663,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0e6cb93f-5317-475b-b748-f59cf27f601e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0020481026041666663,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0c5c2ccf-eb24-4bbd-b5b1-71ce6d1ea3d4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0020481026041666663,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,97633102-30cf-463f-a81c-ee0f8af5e698 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0020481026041666663,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0d0917c6-f261-4652-9ecc-ddd1fd6cbf2b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0020481026041666663,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,116b3b78-5b66-48e9-b3ea-d6f9e2fb3a0c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0020481026041666663,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,414ecaba-c194-45f6-8e21-a1a22b6fd118 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0020481026041666663,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,68e5594a-387b-49bd-b9ca-81d75f77ae68 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0020481026041666663,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7f0e20d8-8d86-489d-8ac2-4091d645db43 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0020481026041666663,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8c1f3cb4-81d7-4fa5-807d-8808c4c97dec -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0020481026041666663,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,64809214-e1a1-48b9-b7f9-9607964d6052 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a67d0a8b-ccc2-4a83-8ffa-040d0c488570 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0f3d03a4-ca80-42ee-833f-35b5110b1364 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,09266dff-6404-41c3-8612-9a0536eb68f3 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,26c85a11-4092-4a08-9983-ab2e61714707 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c34e44ac-84eb-4adb-93a6-0f2e00adef85 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d1d639aa-8933-4993-a355-c9d0b8b40374 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,60b564b8-407b-4fed-bf6f-a9037edb2f0c -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,479e6461-ff9f-4e7d-98f3-a9c60d020948 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,204e619f-dd10-4900-b208-a235b68461cf -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c5ca66a3-fd0e-4a88-aff8-37a5a803a92e -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c9ed4e20-2753-44f0-a297-b97f904d13d9 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9ecbb7d8-613c-406b-a560-6a1c9f5318ae -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3a56d5f5-b7da-43e4-ba60-afaa50d82145 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,eff79d4b-22de-41f7-96ab-e223fcec4494 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,00d63b41-6cb3-47bb-847a-37926fe17e7d -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9990b3c7-7ec9-41af-bb60-8c4d5cf3dae7 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,85a26d9a-adec-4e7f-a426-c8ab7b71ce60 -CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,97a5faec-1dbc-4bd3-ac13-e7bad43b8c88 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c2cba9ea-a079-4956-8361-fd23fd4564bc -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,06ed4fbb-5e65-480d-9981-5490a3613c4d -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cda19522-6be2-44bd-babf-7114d1d217a2 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,63dcc5a3-d363-4643-ac9e-a9c8744c883c -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d1cb5170-6ae1-4a3e-b6be-5de1dc90a8e9 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6e7b2978-ef69-4f74-b737-6c6676fae503 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f594753e-69e0-4b39-86b4-2bfdc9ae1acd -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7bf9f11d-9ba8-4a3d-aa63-e11fc7eee5bf -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2d5c2194-7bab-4d08-a999-c3e0d6fdc4e5 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2ea30f16-1847-4fe9-b19c-d8f1d2d7b020 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8fb91ec1-458c-496d-841e-099ad2b602b3 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9459c2ec-368b-47c3-a291-87d27c70a315 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e6f104d9-e51a-4a4e-b8af-7dd10d1dc97f -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9d96ef90-ff80-42e0-86d3-0ca325d7f1e6 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7c08d0a9-bd07-4570-aff0-6494a34a95fe -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b0458b4d-6a08-4234-aba9-18f6a04367b0 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5c297dce-3427-4fa3-8832-64518be50c93 -CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,32e6f785-1c9f-415d-9fcc-42be9010b774 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d769214d-0519-4a56-8fff-aacb490a6d5a -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9fd4aac0-bf07-4d9d-a13f-65b3814ddd9e -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1b3ee63e-a1a9-4d72-9785-0e630ac62e4e -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,92caa35f-7500-4090-98f6-eda1b89a24e1 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5512711c-720f-46f9-abb1-02102accf249 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5ac64275-ab87-4a71-bfcb-0a9ba7592120 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e2bee8b6-65b5-4e73-8ef1-f5805ea01fbc -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,df590e64-0bc8-4b1c-87db-718607ff9b4e -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0907fc11-6341-4d75-b70d-dc3e05738c64 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,dac08830-7e13-41ca-b58b-599c67b42a91 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,33b9bc13-bcb2-4c82-adba-1f32598e65b8 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d25a5db2-2b95-4693-9ae0-dcc8388aba20 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,3688c375-8023-40f8-ace2-c059b52db812 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,36afd4b7-7fa9-43fa-988c-3aa968d047ce -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f4bf3334-386f-41a1-bec1-fcfe10b14990 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ea6dbca5-cb5b-4ce7-a881-1722bd00ed32 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,04cd3100-3ced-4d87-8b3c-836c7ccce884 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,702b6048-c697-4977-9830-2649e7e019c4 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0007233599999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b1673649-b45d-4b2f-8e55-2af85e5904d1 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0007233599999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,39cff036-2851-4d3c-851c-b48308c0b6e0 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0007233599999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,68494d49-878b-4678-b899-75ec45920bed -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0007233599999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7737c3cd-7193-4ca2-942a-1a03b9ac1c27 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0007233599999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2d0be320-5330-43a9-a0ea-0aaca24b00d8 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0007233599999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e2ac8fb5-eff8-4657-bb26-8ffcd81799ad -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0007233599999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f8e42f2d-2efa-46ff-a10c-4a48fe3ebad2 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0007233599999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2f7513b7-7257-436d-893e-d8b29edb161d -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0007233599999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c149a29e-7448-4bcf-ac87-5e2e36be8d5b -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0007233599999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,64b785f3-6c24-43c8-b3f2-4d8112e42834 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0007233599999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,12a6b8b0-6c14-4c9d-b99d-61fc3eacaf37 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0007233599999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b79c11f5-adc1-4f12-8178-7d7da7978138 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0007233599999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5dec711b-0eef-4cb1-a8cd-9859d5cb4605 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0007233599999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fe9b6aee-ca29-4819-ba98-0bf3856b4824 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0007233599999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,488b72d9-9ca1-4944-bd76-165c67051f8d -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0007233599999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,54c2693b-715b-4fb4-b169-b6ce72489e74 -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0007233599999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,267f9a92-65ea-4f08-8e7d-76fd20b30dfc -CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0007233599999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,81dc66b9-aacf-4615-8b4f-ebca66e25ee7 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.8210136,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4d1a4013-341f-4575-80ba-d24d5fa53b21 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.8210136,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,73e7b779-d5bf-4904-b92c-3256689289a6 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.8210136,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c1a82c86-28b4-4659-80d7-242978e30fbc -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.8210136,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,01cd666e-df45-442c-86b5-62755aa6d4e7 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.8210136,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f7992b0d-012a-4009-83bf-039ce6555297 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.8210136,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,87fa6fd8-df34-426e-8956-f1d732eb50e3 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.8210136,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b5a6daa2-b1fc-4cd5-bdcd-00a80927c555 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.8210136,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,56106078-34dc-4b7b-9aa8-134bdc57008e -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.8210136,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac81526-a21c-4b12-8b14-983d056b0b06 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.8210136,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6c202e11-535d-4182-a21c-f610338abcdf -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.8210136,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d84d27e1-ebc4-424b-b085-fca23973e8a7 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.8210136,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2ed5767e-1499-4978-aae6-4a731029c76a -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.8210136,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1b15ee7f-a5e8-4564-b922-50cf03fea99d -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.8210136,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1e1dec5e-5243-4407-966b-23605d2250be -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.8210136,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e7627b89-721d-4b56-a400-0a730844bbc1 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.8210136,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8754e172-63ac-42ca-829a-d3eff9b16516 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.8210136,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ccc88927-39f1-42f6-bdf5-06cd15fd9225 -CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.8210136,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6a5773a3-b4ec-4376-bc5e-6d131a7aa1ca -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0006051546875,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fb477038-59d6-4158-a843-c29d04718872 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0006051546875,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,75699828-e877-4532-935d-56a7e36831a2 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0006051546875,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,593b74eb-7587-4eb1-9392-af97f86ecafb -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0006051546875,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,93d3ad0c-01ff-465b-884b-05935e9fd49c -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0006051546875,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9ceb2161-c34c-43a9-9287-3a3f7777ec74 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0006051546875,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,548ae92e-9728-420e-adea-2520b5d434a0 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0006051546875,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ba22a3d6-e6ee-4dfd-9387-b9bd7e14b1ac -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0006051546875,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,166ef41f-8933-455f-b21e-d2e1f754ed17 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0006051546875,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,601dd042-9742-45ec-b5c6-465d541db3e7 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0006051546875,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f9ddc4a5-ea5d-4b20-b85a-9f3523bb5e4e -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0006051546875,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e331ba18-5aa7-4779-ae45-b57e93bd3f1a -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0006051546875,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,509ff60c-5749-4b92-8eb9-fdaafe7d28e6 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0006051546875,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e87840f3-b048-4063-92b5-ade27c79d2e9 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0006051546875,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,3b7469e3-ed1d-402c-85d9-073e40cf9894 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0006051546875,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7600a5ad-2e3b-490a-8df5-caa9139542da -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0006051546875,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5f55cf67-499a-41f4-902b-bce518208e1c -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0006051546875,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,beda3043-1741-4d9c-9ae2-3c8546c01a1b -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0006051546875,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a25930c4-e2e1-4650-a5c3-f6259fd32fef -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2fd99f63-4351-427e-9ba6-3a484ae1c7a9 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f7e694a3-96cd-4b45-90a3-7030b4653278 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a97db6e7-5d53-47fe-a4cf-b3a7fd3c21c2 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,20edb57f-597b-4508-a521-98fb2139ee7b -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c06146c6-fa46-4b69-91bc-2f152414842b -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5d7cfb5e-c15b-400f-9095-d4fe6d758580 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e9b7de9f-a060-4cab-b9e5-ee6b9abddfbf -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5a25bdb3-bc30-4780-8d7d-f641cc60819f -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,861b3225-57ee-40c1-8ec9-39317c795a03 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,93978d72-76ed-4802-b452-941c4b06802c -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2dbd04af-9ec9-49d1-8a87-36cb1933ca28 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e27a3aca-c130-46f9-aa94-999d51fb34d3 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9bcbbd1c-ba24-4543-b4fd-8907df1374ab -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a66ee7ab-fae4-4ee4-9559-da12f2fe0b92 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7922be5a-1275-49e9-8e54-60c27bf217a9 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0007219199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7b9bfcf3-3a94-4b0a-a72a-6c6468fb8fd8 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0007219199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d9ff9964-6300-4dc2-96e2-8d32d3812988 -CO2,Japan,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0007219199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,036dfb90-889d-45f7-8b24-ad2c74afe99b -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,5fcf54db-860e-4fad-b2f9-02180a3d187f -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,caef0d3c-b3d9-4a18-90dc-2034603077ae -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,16b8da96-eb4f-42db-941e-e2b89ff47e33 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c226aa0d-933b-487e-b728-b1e420014901 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,044db3b1-33d3-4ba5-b3f7-d7fb7e51ec4f -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,22a028ab-8e6d-492b-a9b9-c80d4fd604ec -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e3aac6db-8aa6-4bbc-862a-e169bb2504ca -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4b955f33-e99e-44ea-beb7-fc9aeeabd11e -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,87f335b6-fab8-4f06-9547-af26625672b8 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2212c6e4-671f-4adc-897a-8ff82306045d -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,48872a10-4570-4b7b-babc-1c7299506149 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c7fbcea3-0ddd-4924-b6e6-28f37e885765 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,32f483d6-0503-48d4-99e0-2b4adefedf6b -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c0460b81-d2c8-40a3-ba80-af9368e77b69 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6fdc75cb-9616-407d-b9e4-2ee06864fb51 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.8193791999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9d384bcd-8e92-472d-8995-cbb6bb314356 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.8193791999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1fa2f060-789a-43b0-b19b-0e1cd4ad6a06 -CO2,Japan,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.8193791999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ba378cfa-7bfd-4b36-a393-b353755e5fde -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c0ab75bd-073f-483a-80ef-9bd1fbbd987b -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f7ff34ab-bc10-494d-b22c-2ab8fed81bcc -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,56a71107-d9e5-4e54-893d-8d040d8904c1 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6133da66-e2c0-40fc-8341-a24751f17220 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,276b744b-b72c-4654-bda3-3c41776305ac -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6d1e75a5-b119-40e8-ba72-6de0348efbe1 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1a124a0c-a0a4-46c0-bce2-c20404c3b639 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,30e88475-27d6-4a9a-9ee2-8acb96ffc2b4 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fde787f0-49b4-4318-9142-3dccfa8c166b -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,33c09a94-6e7b-4d8d-939a-805e146ea117 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,da9cb7ae-de18-4052-87e1-784ad4c8efd6 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4360c880-4de5-46ef-b7be-21fb2434eb9d -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,79f1c79a-6d79-404f-a1d2-b1da81d40326 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0680d43d-d668-4af2-b8a6-465ea9165a97 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5e18d455-f8e3-4648-b511-57e5a2a51664 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0006039499999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6dd20d84-f3fb-424b-b00d-492dc800f921 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0006039499999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a8d90ee5-1e1e-4746-88e2-cce34e7684bf -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0006039499999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6ab12665-f50c-4641-b0c2-73d29f7e47c9 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3a5cd571-9daf-419a-9471-75b7e1007fc3 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a15dcab2-4e63-4267-aaed-43f3aed277bd -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3d095244-7742-450d-b3d5-9176ff1f6740 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5833e208-8d17-4d31-8516-09cac293eba1 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,445bcca6-eac1-4c4e-aadf-bbd369ab3f56 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f901be0c-0367-499d-9959-d6a74af105c3 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a111d17d-1174-4ca9-8360-f00758ea46d9 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5823ae1e-fe4f-4796-81bb-91365371b422 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8a1a69bb-2b98-465d-9472-bb87d711cf59 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a2d55f6c-1537-43ae-a1b4-bbd97ecf46e2 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6bb7e2b3-1512-4487-b168-fa1d0a393a88 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c897547e-7be2-4399-842f-476f9c07c65d -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,72398aa9-cc5c-422c-ab6e-fa8fc7b43ad8 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5fe7533f-28d1-42f4-b963-c7b83efc4be4 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d74c55eb-05c2-4081-81f5-8de368a2bf44 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1c2afbc8-441a-4142-bcf6-2c33767bd111 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,dc104f4f-1ac4-4fc9-9df5-2ee352dfd254 -CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,50d7bc00-88e6-42d8-acb0-fd8f9d3f840d -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0750b2d7-1e1f-457f-b654-e8dabee1a677 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,07328c18-d159-447c-9f1c-dc277a08020b -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9e442f22-17a9-4b00-b127-9fa15aa3140e -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,05ae7046-e7f4-4043-9124-e7d217e5a1dd -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c561c39b-2368-400a-a4e3-cf183de3cf3c -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cf2e4e9f-abd8-4ab3-a188-dd1a3caebfe6 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f464364b-feda-4789-962e-48bf3104b05b -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,60d818b9-f886-40f0-83b6-0475f1dec173 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,66392914-0661-4bc7-8848-e1fa185babc1 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bc134a05-333a-4118-b2cd-847dbefb6b53 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,00727f89-e6aa-401e-9bca-d4e3b1bc347f -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,838a82bb-713f-489b-a20b-b697fca0c6b9 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e8edd280-715c-48f5-bc0a-90d8962239b4 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3a0c4dfb-09c5-44d3-9276-62942f8ceac0 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,27c720cf-89f0-4119-b22d-8854e75ee1dc -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1658f172-ac8f-4bb7-908d-df5f188bce97 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ca28bf70-bd5b-42ea-82a6-b84c15670514 -CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6df9a2a7-591e-4319-a4fe-85c6b199fe0b -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,93d4bac0-4054-4593-8a35-200b5d47f5d5 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4341d8c5-27ef-4b63-b18a-91cacc755016 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ea62d8b2-5495-4933-86f3-6aae7a001889 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,74eb546d-1846-498f-9272-0e87e150d108 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,59244b6b-bf26-43a3-a72f-e29c8d740240 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1fc40a08-9211-4db8-bcff-a1e0297bcc2d -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,03fa9fbe-49bf-47a7-90c2-d54d2e0d79ad -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1cf93a22-3514-4c13-b141-388e649f34cb -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,023fca3f-529f-4988-b86f-7ca1b0f4222f -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6b531e8d-43de-47a9-a420-49f0d777cba9 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6ae6fa26-2fd2-4762-abad-85daa634bcef -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,471b4da9-2eb7-48cc-ac39-ea926fd4d642 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,14bcb1a3-bbf5-4191-98ee-fa7d3b348aca -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,2ac8306f-fc4f-4531-9bbf-ffe6a8e1b521 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1d0b2c37-d808-4137-8b4b-3d408390f195 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,eef1cfcb-6e4f-483c-abee-d5406955d43f -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b53cac56-7b68-42bf-ab5e-2a0446266535 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,613d31c9-c12b-4d96-ab3d-cc2b19a8ac58 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.00072912,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d46ca765-5a3a-48bd-af83-5efcaa54b337 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.00072912,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e523f16d-2629-49ec-aa04-7cf5997545f1 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.00072912,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,215958d3-870c-456c-a6aa-49cfeedf6a5b -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.00072912,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,170ef9cd-d5d8-457f-8500-76d88e0d06d6 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.00072912,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,81cc6c93-61b0-40c5-a4fa-5a44a1ca777e -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.00072912,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8cbb3c50-9616-4743-994d-a17622b41636 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.00072912,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,09c9ce71-4942-482d-ab92-9b95bd873312 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.00072912,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f57ab807-c286-47b5-ba3c-b4b1c3111b03 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.00072912,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6d9f3377-1ab8-4a5f-b3a3-f6d307e76881 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.00072912,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8303a39f-7b25-4c7c-9739-6c4bee5cd64b -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.00072912,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cbad9e19-ffa5-4f39-bef9-754b39428070 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.00072912,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0027ff3c-9095-4dff-96ab-9b8b0aecd9a5 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.00072912,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7237d883-404a-4e68-a571-9a4f819e276b -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.00072912,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c6cf392d-c449-49c5-a20f-37b544e1c431 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.00072912,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,32167717-b670-4cb1-8710-1ad6205e1c34 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.00072912,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e184893b-7eda-4fdf-bb44-2e1d9e87ef50 -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.00072912,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,45c6fb38-3b4b-49a1-8e33-36e44ff7da2d -CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.00072912,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c05d5a16-d56a-4bf1-9510-dea4b69ea978 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.8275511999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ea8ff604-2421-4eef-9c9c-8fb6e976d27e -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.8275511999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,870d12af-aaaa-4056-a41c-57108c81700e -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.8275511999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,940e0cdb-bf8e-491c-a8cd-7e585c24a8d6 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.8275511999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cdfa1503-22c3-4036-989c-5b35759a4feb -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.8275511999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2e87b0b7-4660-4835-9572-80e2440e2262 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.8275511999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,66f8b1ab-fe5c-4901-b525-bd455abc8da2 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.8275511999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,41005b36-8162-49a8-b557-3764fcd11765 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.8275511999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e60574ed-91ee-425d-b61b-c5940e225255 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.8275511999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8d1dbb29-f61b-45ba-b5e2-929565434418 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.8275511999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,bfd39894-1a00-4108-9126-e9269054b58c -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.8275511999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9b5c58e3-271c-444b-989b-537b21e50970 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.8275511999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,06a8d870-ffcd-4672-a3ab-699ac1692ef9 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.8275511999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7a065e2d-5a0a-4cb7-b378-93debe776255 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.8275511999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,d71f8e26-7e3d-4b6a-85e5-bbd3a9efa81b -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.8275511999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,711e586f-e7a6-43a2-9ecf-33c6c63486e1 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.8275511999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9230a072-370d-48cd-9695-8e5c0a18a395 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.8275511999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,519b95c7-29a5-4efc-be88-3974a4c2ddf6 -CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.8275511999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,2cb3bccd-6bae-499a-98d2-2afa96169af7 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.0006099734375,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f18564cd-9f39-454c-ac96-f55b607eb584 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.0006099734375,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b018c052-3c9e-4b1f-bb91-1958f3c537ee -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.0006099734375,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,74ada9b6-87d4-4d4e-bd85-f268378ef58c -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.0006099734375,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4313763c-47eb-436f-b2b8-a97a28e038ef -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.0006099734375,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,792aefbf-d253-4da2-9b87-e5d863e373e7 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.0006099734375,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e4336b6b-a052-46a2-ac3b-003804035959 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.0006099734375,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a9d0c6fa-96ec-48da-a9cb-5addb653a2e8 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.0006099734375,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4e6b8e7f-125c-42e3-b0e2-3d276254bdaf -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.0006099734375,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1fade186-2cf7-4392-b332-18fbb69df7db -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.0006099734375,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e595599c-4089-4af2-b121-a180708bfda1 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.0006099734375,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,135c7f41-6a3b-4528-b4a7-b1597e38d647 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.0006099734375,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,962b5536-8c5d-410e-9742-92c23dbe3276 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.0006099734375,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fe83887b-002d-4e11-a30e-de48edc680d0 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.0006099734375,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,faf62845-66f3-490e-9a54-5db1f2682da7 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.0006099734375,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cf1abcd2-2824-4173-83e6-5b4da856ee8a -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.0006099734375,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,67175c82-30e9-4714-9d3a-49403c3a6751 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.0006099734375,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,fc2d3454-5b95-42d7-b9e0-8aa660b05551 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.0006099734375,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,24aaaa81-4300-48bc-b509-ce1b4f5dd0e8 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,10c0fd46-2579-4699-86ac-61d44ef7cdc6 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,46917c58-8bd7-4fb8-b34b-edf1790a74d7 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1356cd41-14d0-4da3-aa87-7c29073362a9 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f0c075e7-99ff-4043-bfd7-e2132d006ad8 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,311411f6-49cf-4db6-80a0-b2f6e78fdd22 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a0d2005f-7676-4c7b-b7b9-f75bd1cc618a -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a62c0451-0aaf-4f9b-a5a0-7c0473c5603c -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1a4dbcab-1045-43e9-82ff-ed780b65ef01 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6323b7c8-3ac6-4546-bf3b-76b25722ee86 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3844262b-523e-498f-b651-1cfe85792631 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,caa358c1-1eec-44e6-8d56-6e4003083b70 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,737c407b-33d4-4cc9-9575-5b0db6a52c69 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a238f9ff-36e3-423a-895e-933cdfa90df5 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,80e27308-c631-437d-b120-8e6f87c761c5 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5f090547-c5d2-4894-a8a0-cff672799ca0 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0007243199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7402b06d-c1b7-4821-9469-6938281113c9 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0007243199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b3295725-8bb1-4ba3-b30c-13fc9d0fa476 -CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0007243199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4b4f6fe3-1181-4a7a-81ef-0d47313b2be4 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b3253d43-09f7-407f-953e-04ec168155dd -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b6a9606a-ca6b-4bb8-b280-689c3a1a72fc -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ef4af0bf-a2fb-4d53-bb89-fdd4d7dbdba4 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a32c3d2b-9aa3-4076-87cd-8e1003657252 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,928c7b96-29d8-4942-b3e6-579fcd675960 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,30f5ca93-6fc3-4d8f-97a9-b7b5fde1ec7f -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,297e08df-116d-481a-8bcd-9bbf07222ec3 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f42953ea-188d-41b4-bb38-012bf8d97a98 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,cb27c8d5-da01-448b-ab44-07f23b644790 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,537783d6-3a71-4622-9fa3-fc1c61546704 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,73cbb5f7-b8c3-4dd1-965c-f8fa83126d6b -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ca00801a-af64-4a05-8b4a-4d03c773c363 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f35ae62b-7f73-4fb7-89bf-99140c148e56 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,73cdc941-5c2c-4895-9a8b-6d035246935c -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6f0d256c-8195-4721-aa8b-eb3c2247e684 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.8221031999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4dd9002c-9d6f-4e62-a951-ad470602bf42 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.8221031999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,6724300d-3b1c-4fae-a45b-80b5e63b8fb9 -CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.8221031999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,33c11627-4773-4a05-ad51-86c81cf49abf -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,015d67d4-1b93-445e-90f2-634fa45b8971 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,786a850c-2903-4b4f-9a8f-82413690c442 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0e772849-d9ca-4d97-90f6-2fff245ba15f -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f835b429-cad3-4d63-a2e8-e5f1225845fd -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,900f5c6d-81f1-49a5-8900-55db5f900d48 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5b56416b-9d2b-4bfb-845b-b2e6dc420c5a -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4813a0bb-3c3f-49cd-a4ee-e72f521d694d -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7ce51c0f-df77-49a6-9d5d-f1d59f1bed04 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e179baf2-236b-4f94-8b8d-2c6deb1e59a8 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4a1061e6-9585-4e97-b886-b95a459caadf -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ce680924-20f4-4638-9ae3-d0ecae454923 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a07baa9c-c648-4c92-929c-bc404e2ead84 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,15441795-7c67-4eda-9bd2-5b1cbaf6fea9 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7c555ac6-687c-4cf2-9850-39c4e0cb68e6 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,7f2c28a8-476b-4b2c-bb73-05ebe8e2132b -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0006059578125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6d38d5ed-0c2b-4fd3-bab6-57c40ef125f9 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0006059578125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,76732f7c-53ca-459b-84de-077a6c0d1cdc -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0006059578125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,742090af-3abb-409c-9334-c2150bc14035 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.00071616,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4c55b397-0db9-46f5-8edb-94ab9948c8ba -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.00071616,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,925dcaef-634c-4f4e-8896-961c9e992fd4 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.00071616,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e581eaba-d328-4fbf-b615-1a2d1df697a9 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.00071616,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8fc201af-8b09-4151-a83a-1e783df48691 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.00071616,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7b8dd828-5c22-4612-b79e-d88b8d9ea0a7 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.00071616,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2acd03f1-9b46-4de1-aa04-11af5701f17a -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.00071616,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b4bddf03-b13a-4203-8785-8380bd4252d5 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.00071616,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,42344ec2-030e-4e93-a622-3764d50cee24 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.00071616,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1e239cc2-fbff-4fc1-b29c-64b06e8ba711 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.00071616,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,414dd373-adfb-4845-ae03-c7929f85dfc3 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.00071616,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fa5544fa-2207-4e5c-b819-214255edccba -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.00071616,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b24abeda-ed68-4849-8f82-956ee93b20a3 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.00071616,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d0b9d4d1-c59c-401c-a72a-f4ff2f1221c9 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.00071616,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f79a41bc-b2ad-4528-999f-98e66cda53d3 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.00071616,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b5e5193d-b838-4a33-ba42-a9592de13995 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.00071616,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6b187e99-20f1-4dd2-94f1-3ea8e398ac80 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.00071616,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7ca7d631-4a95-4d7d-b41c-dad7f17e8821 -CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.00071616,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,436286d1-f09e-4041-9c37-278f0d58c034 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.8128415999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0d5bbfe1-307e-405b-9aba-22743176f6ac -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.8128415999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9cd983b7-beb3-408d-91c3-335e30f4e807 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.8128415999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,eed205b6-1db8-43da-a441-aaac92c31878 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.8128415999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9a5d87ac-6b33-4ccf-a1b5-d904579c1cea -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.8128415999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7e021c13-4f2f-4481-9ab1-265435c93406 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.8128415999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f46c99c7-11a4-4f21-b146-6b9fcb3b13b2 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.8128415999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9d568074-8c0c-4e7e-a55d-1d588916becb -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.8128415999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,713b56c5-719e-4eee-ba7a-667b7a5d66b5 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.8128415999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,b66f3ec3-ded9-4807-9302-624dfcf252cc -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.8128415999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,eef3ce74-b053-4de6-b818-b2440c2bffb1 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.8128415999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,421e5cf1-af6b-4f47-9808-270210778b83 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.8128415999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1276ab8e-dbdd-4447-8453-fc30b6bd4ab0 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.8128415999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,c968aeb0-7635-4d95-a51a-babbf157b22b -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.8128415999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,45f415cf-ebd3-47f2-bdb8-61c35203d739 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.8128415999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,de839b5d-0a56-4cd3-bfd6-a0eb01edb6a3 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.8128415999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,aee1d9bb-1e7f-4940-b608-8aef86cf564c -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.8128415999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3c163ee9-559a-438c-a2da-1cd4b9f3c5b6 -CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.8128415999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0f5d0d82-0dc9-4761-8815-9196393b0d7f -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.0005991312499999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,61cf41b2-b586-419b-a58f-a7f7069db34a -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.0005991312499999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,96c8bbb9-1357-469f-8edb-27f4df8629ad -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.0005991312499999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,8d576108-3458-4e99-9bdf-d27929822221 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.0005991312499999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,48eac9ed-eb68-4b35-aa36-0351df518192 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.0005991312499999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,a7e6aaab-6d5b-4086-8d8a-fcefc76f36e1 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.0005991312499999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4024ebe8-3731-41ef-8bae-35b751706f19 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.0005991312499999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,05416579-54e5-4112-ae22-02e98c64a9f1 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.0005991312499999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,9d39ddb5-8744-4191-a934-c6055375d782 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.0005991312499999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e9c5b80e-724c-43d7-ada5-6c4bd49798d5 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.0005991312499999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,083a0adb-bd0e-4a07-8956-49c96acfefba -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.0005991312499999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1633ea33-b8d8-4c85-9d77-731d3b890980 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.0005991312499999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4a73583c-6b9c-4d08-a979-d6fe03853954 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.0005991312499999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1cd6bd51-06dc-4323-bb66-aef6d6da4d43 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.0005991312499999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c3e85f03-af52-4c38-b589-12d4dcf4c753 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.0005991312499999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,e27ada29-de71-4955-8597-c7f2c1df6cab -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.0005991312499999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,10bd3a7d-fda7-4763-8d93-82e368e1d555 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.0005991312499999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1241f347-5a0e-4869-b639-fa3e7f66987d -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.0005991312499999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,1aec9207-6f29-4bdf-a926-ed150ee4b25c -CO2,Russian Federation,kg/kg,,I.1.1,RU,0.0007051199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c6712729-5429-4821-8a8a-934cbf5c870f -CO2,Russian Federation,kg/kg,,I.1.1,RU,0.0007051199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2daca112-7172-4850-9d0c-10a02230bb17 -CO2,Russian Federation,kg/kg,,I.1.1,RU,0.0007051199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a5f61132-70fe-44d9-9a56-a7d6fe030085 -CO2,Russian Federation,kg/kg,,I.2.1,RU,0.0007051199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,91926306-58b6-4789-af06-5a40bae3816e -CO2,Russian Federation,kg/kg,,I.2.1,RU,0.0007051199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7fffa724-a1d5-4cf4-bb3d-607360d53436 -CO2,Russian Federation,kg/kg,,I.2.1,RU,0.0007051199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9bb2ed86-1b3d-47cf-b204-1f9932fadc46 -CO2,Russian Federation,kg/kg,,I.3.1,RU,0.0007051199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0cce0a37-e220-4950-abda-9ad84af6bb82 -CO2,Russian Federation,kg/kg,,I.3.1,RU,0.0007051199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,54f6d356-2382-4aad-b149-a4e392c9ee8c -CO2,Russian Federation,kg/kg,,I.3.1,RU,0.0007051199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,040851f6-1b28-46c1-a177-e2bb5c55987b -CO2,Russian Federation,kg/kg,,I.4.1,RU,0.0007051199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,72ee827d-e01b-4607-97cf-63cade16b482 -CO2,Russian Federation,kg/kg,,I.4.1,RU,0.0007051199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2d01e05c-1be2-489a-b24f-25ba62bbdcf6 -CO2,Russian Federation,kg/kg,,I.4.1,RU,0.0007051199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9b43576a-8e98-48e5-85b8-dfc5111e69a0 -CO2,Russian Federation,kg/kg,,I.5.1,RU,0.0007051199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a6fc1069-8a46-4b6b-97b2-e4e4cad47be6 -CO2,Russian Federation,kg/kg,,I.5.1,RU,0.0007051199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4cf9d6b5-9bd2-4c2d-b5d5-c3d69650381b -CO2,Russian Federation,kg/kg,,I.5.1,RU,0.0007051199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,146e0710-4dfb-41da-ba72-cb30b7a43192 -CO2,Russian Federation,kg/kg,,I.6.1,RU,0.0007051199999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,53dae8aa-21d9-46f7-a999-4397c9a5481c -CO2,Russian Federation,kg/kg,,I.6.1,RU,0.0007051199999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,218c1648-b2a9-4db2-a9ae-067e3efb8e60 -CO2,Russian Federation,kg/kg,,I.6.1,RU,0.0007051199999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3471ec5b-2131-480b-9a53-046280f156f3 -CO2,Russian Federation,kg/t,,I.1.1,RU,0.8003111999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,1bd2cf24-4858-4b3b-bb49-a68da2534711 -CO2,Russian Federation,kg/t,,I.1.1,RU,0.8003111999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,156b389c-0e21-406f-ad1c-fb452270c28c -CO2,Russian Federation,kg/t,,I.1.1,RU,0.8003111999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,e3c71bc5-7418-4bf1-af93-ebd5224d1ea7 -CO2,Russian Federation,kg/t,,I.2.1,RU,0.8003111999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,141e01f9-588d-4c6d-b8f1-3cf547c2125d -CO2,Russian Federation,kg/t,,I.2.1,RU,0.8003111999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,7515a61c-1d68-41c1-9626-9d6e3294292c -CO2,Russian Federation,kg/t,,I.2.1,RU,0.8003111999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,4b9a1846-03c8-469d-9444-85258b004dc4 -CO2,Russian Federation,kg/t,,I.3.1,RU,0.8003111999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0601348d-9b60-4bfc-9391-72bd0123dea1 -CO2,Russian Federation,kg/t,,I.3.1,RU,0.8003111999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,0c0820c8-d998-450c-a718-9dbe858e2907 -CO2,Russian Federation,kg/t,,I.3.1,RU,0.8003111999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,daf14b32-d873-48d4-adad-5dc6c9bccadb -CO2,Russian Federation,kg/t,,I.4.1,RU,0.8003111999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,fefd0c7e-b384-4176-b1e3-72024f86531b -CO2,Russian Federation,kg/t,,I.4.1,RU,0.8003111999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,ef808060-ed76-4946-a859-d795afdc90b0 -CO2,Russian Federation,kg/t,,I.4.1,RU,0.8003111999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,55dafbc0-94be-45c7-ba2d-e98ba90f8e60 -CO2,Russian Federation,kg/t,,I.5.1,RU,0.8003111999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a05d928f-1312-445a-9d28-1a30a53b0afa -CO2,Russian Federation,kg/t,,I.5.1,RU,0.8003111999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3e992d4e-f1b2-4679-b188-3ee3486a008d -CO2,Russian Federation,kg/t,,I.5.1,RU,0.8003111999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9bdd716b-722d-4c96-8549-797f87b34a0c -CO2,Russian Federation,kg/t,,I.6.1,RU,0.8003111999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,73a2da57-97d2-432b-afda-2aad58c44f6f -CO2,Russian Federation,kg/t,,I.6.1,RU,0.8003111999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,9f62096c-59f4-4775-ab0d-1ede5848082a -CO2,Russian Federation,kg/t,,I.6.1,RU,0.8003111999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,a141c511-4ac4-4bf6-b927-8f9dd29b9eea -CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0005898953125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0e2a2314-1cd5-47b8-8b9c-77818f83c053 -CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0005898953125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c5dd1731-70a8-4a74-a316-cd5c4f767af0 -CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0005898953125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,d40037ec-6e3d-4ae5-8241-c114a1c64970 -CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0005898953125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,f017c3a4-1331-4131-8cd4-cea7af053bb1 -CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0005898953125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,58cb44bf-5f96-44ec-8ba1-3ef16cb1181f -CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0005898953125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,4538b298-f170-4e16-b47a-43dd34050bcf -CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0005898953125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,cb4e5037-8667-4563-96af-ba8033695e83 -CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0005898953125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,6919d3c5-1021-4026-82ee-e7b2c6b392b3 -CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0005898953125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,c6bebaa8-f899-4204-a8ea-2a6d6865b0d6 -CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0005898953125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,5b228e69-f594-4f66-b6d2-dd884cfbe991 -CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0005898953125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,955c04f8-4a78-480a-a5e2-9fa13a99a501 -CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0005898953125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,78cded8e-4658-4afc-ad7c-186cd69a0a21 -CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0005898953125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,b42ccf2a-a32d-4125-98e1-f55f80dabb1c -CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0005898953125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,0c0a270c-955c-4116-ae0f-bb9fa032e41d -CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0005898953125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,55e1ec08-4fc8-4dd1-bea3-39ccc40593ac -CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0005898953125,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,2cab1964-9fc1-4cbf-b409-dcc186d9d3a3 -CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0005898953125,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,ef92c4cd-d393-4c4d-ab1e-33893413a314 -CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0005898953125,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.015625e-05, NCV_units:TJ/m3",,863041c7-9a5e-4d9c-8c93-cc9ec3c3db34 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.951322319999999,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,b345fcd0-36dd-4188-a2c1-d76b2e52f9a5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.951322319999999,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,691952cd-c249-4659-b218-5d90c19540f6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.951322319999999,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,c4b96381-7848-4867-8ab5-7a833cb3dc87 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.951322319999999,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,9ecae570-8315-4eed-b51b-23a4bc75938f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.951322319999999,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,e2f62211-5e77-4090-9e29-176865b7900d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.951322319999999,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,db6021c1-f4fc-476b-9d96-1fd45cf22d57 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.951322319999999,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,1834525d-823d-465c-968a-ae0e9d5146a0 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.951322319999999,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,e63cf1a1-678d-41e9-84f1-a085394bd574 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.951322319999999,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,5a4ab742-a01f-4b6f-acf9-f3877b8effdd -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.951322319999999,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,056cb2f6-d47c-43ed-b9cf-cfc424bc0790 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.951322319999999,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,83af8199-d186-4374-9039-3b242b90e80a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.951322319999999,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,30cccf03-8d31-4120-ad19-558938070779 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.951322319999999,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,55ff26d3-6393-4b2e-9787-ff2806b01784 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.951322319999999,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,ff05b18f-197f-4ba3-811d-1a3436122bb3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.951322319999999,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,af890e7d-fada-46b3-80d3-d588ce097132 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.951322319999999,fuel_combustion_consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,87f27066-32c5-42de-be65-a5c5d61663bc -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.951322319999999,sampling_scaled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,2b359ef5-b1b8-4b3f-878c-42e908fd98af -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.951322319999999,modeled_data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,22ee058b-1a55-4e49-b9df-7a2c2a44ce9b -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,3.2469558,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,17f60ff4-c0dd-4d2b-99d2-dbdcb75cd180 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,3.2469558,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ad6d5d7-9eb2-46f7-8d8a-dc7195868a8f -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,3.2469558,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,cc60c23c-72c2-40b0-b5de-a1bca9348ba3 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,3.2469558,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,fb9d4ea9-c099-42b3-a3a0-cd53d71f1d62 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,3.2469558,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,20be3fcd-29a2-4725-865f-be897b863c5c -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,3.2469558,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ebbe0b2b-e504-42f1-81b7-b3741788b67b -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,3.2469558,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8da1c10e-f124-4889-aefc-710451d8b7c2 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,3.2469558,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2e1b6381-39b7-436d-8e29-b75ec84e822d -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,3.2469558,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,91f89576-19e8-4f04-a623-bd45fc53d726 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,3.2469558,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,44f93ac8-a136-4524-90f6-248c5b4dffc3 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,3.2469558,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,9b03257c-4ba9-44c2-8681-ef773aff2ed6 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,3.2469558,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0952ab5d-8a76-47b8-817c-5f3bcd8d1b49 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,3.2469558,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,dbd790c1-ffb4-4a64-950e-30405d563656 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,3.2469558,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,d307a1cf-e45a-4a9d-aab1-ecb96c51f12f -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,3.2469558,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,66c2b138-0ac1-49a5-89e8-de200e3b4ca6 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,3.2469558,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,77992b27-e0fb-4bfd-8ba4-d85c10a1fa7e -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,3.2469558,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,1f502111-dbda-44e0-9d64-05e072746911 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,3.2469558,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,14a89211-8093-41e7-85b9-7e224df8e6ab -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,3.0330090999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,180fcdda-4c6e-413b-a0aa-b85db9127d15 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,3.0330090999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ed4a0c20-eac2-4d56-8336-3771d2ebf366 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,3.0330090999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,d45be779-14ec-402c-8237-eea4e3921ff7 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,3.0330090999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c538c5ba-df7a-4671-b850-cee221b4a73f -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,3.0330090999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,cf2a2c0c-1409-46d2-9e66-12cc9c4dd9e9 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,3.0330090999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c9549a66-42e5-4394-b03b-13e4efd36a8a -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,3.0330090999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,42798ec7-758c-4aa0-b25d-ac02e5004f6f -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,3.0330090999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0135a383-670a-482f-8d06-cf373e289532 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,3.0330090999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e000c83b-e769-4c34-b3b5-6315668b7a73 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,3.0330090999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8cd85606-8617-49b9-b25b-2f099476f6c2 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,3.0330090999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8f2bec6e-1290-4c57-9444-e9cbd610f0eb -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,3.0330090999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,6ac27a22-757a-4c03-8e85-79537be3848a -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,3.0330090999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,400cf654-3058-4476-901c-c80986027f72 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,3.0330090999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,91f46690-9b4c-4c40-a56c-80083f82122c -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,3.0330090999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,cfa4407c-ddde-4cee-9ceb-94aa16d90818 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,3.0330090999999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a7f20144-2418-4fc8-86fd-9d582239c452 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,3.0330090999999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1856af2c-3b9c-494c-8a99-5aea2d7980f4 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,3.0330090999999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,67cb9465-becd-42e2-b4cd-828812759ba7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.234222639999999,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a0f6925e-acc4-4969-93df-c1de4e64ee63 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.234222639999999,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,d7dfd9e3-11c3-45be-a02d-56c306bc0697 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.234222639999999,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,437dc336-5d54-4f72-bfc3-5cad2b9adc97 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.234222639999999,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,d779f9ed-4844-4ec9-8be4-b39bbea9ffb1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.234222639999999,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a81ab8d2-efef-42ce-83c7-c8147b807c1d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.234222639999999,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,676f910f-7aab-4068-ba80-ed9c0232ff2c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.234222639999999,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0a61b6ca-75c3-420d-b318-b3da132929f2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.234222639999999,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,35b46279-b17a-4916-9dcc-1936f0f33697 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.234222639999999,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,26f43bfa-6c0c-4271-8372-389fbda8d936 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.234222639999999,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,6b8e5333-4262-466e-af24-6e6d475a87f9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.234222639999999,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,afc526b7-d54e-48b8-a1e9-c39c43646bc1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.234222639999999,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ea995521-a84b-4086-a22c-f1196b8d8fd2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.234222639999999,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,4101597a-ce0e-43b5-8cf8-5aee57f927ed -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.234222639999999,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,09437005-b95c-486c-a56d-519e1f8e3f97 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.234222639999999,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,4a656177-9867-4aa8-a94f-4a2cfc24d518 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.234222639999999,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,ddf1d0f1-a6ad-465a-aa4d-c7d127ea9e8e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.234222639999999,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,08118d0a-f2e0-47ff-9a28-d05345ee7a3d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.234222639999999,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,414e29ad-95a2-4799-bb8d-1e0b8291bf7f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.0211149466666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ff8111e1-b6e1-47f2-87e4-84685a921f3f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.0211149466666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,df046c7a-6bc5-4e05-93df-82a247024ff8 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,3.0211149466666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0300db43-f9c2-4ba5-901f-0f4335e75b24 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.0211149466666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c4f5e9d5-9307-442c-a410-186136234bc8 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.0211149466666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,b4b08fc4-0f91-4a74-a02d-e317ab868572 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,3.0211149466666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3253fe8e-8132-4768-8608-68dade442cc8 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.0211149466666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,331b83e7-ebe4-490b-b587-fbf884a0c02d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.0211149466666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,956279ad-c730-48f7-a3a8-daa4e62f6dca -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,3.0211149466666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,dcdda7f5-2aef-4508-bee4-aaaa43bbb9f8 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.0211149466666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,9aeac6a8-54b1-4e8b-a5cc-a71c00569d11 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.0211149466666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f8cdee90-be36-4335-a805-c9bd5d137c68 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,3.0211149466666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0a022ba6-b0d6-4a1e-9740-ea67316d2d9f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.0211149466666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a028c30c-ccac-447d-a603-3e1478aef4d0 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.0211149466666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,58d61a7f-7e82-4690-ba65-545d87bbb0d1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,3.0211149466666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,5a08286b-457c-4c38-9f9c-2f8cfe528337 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.0211149466666667,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,07b5f182-8475-4f02-8bc6-e306f3aa6807 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.0211149466666667,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,7f17c946-0587-440f-8bd6-addf107011c6 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,3.0211149466666667,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,a31e7eac-9855-4e64-9c23-3accc8ba88da -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,31abed89-fe39-431b-94d1-0c22772fab8e -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,17255ae4-ab05-48f0-a1ff-9700c853bbc0 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,20d5c1a0-f837-45c9-8d96-0c044e33afd1 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a7673534-fb22-4172-a370-415ee9311fbc -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,66e03a78-741b-4522-9465-922f9e826775 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,df66b9b1-1857-4c63-875b-56f6b716f0f5 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8cd16930-dbf0-463a-8311-3d21591a8767 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,aa0c35da-98e0-4242-b221-cdaed3d5ebfb -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,45cc2ce3-dc2b-46eb-bfc7-13f8d325d5a8 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,260ab9e8-76fe-4d06-be22-d187225d2101 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,fa6789b3-02d7-4819-93d7-2aed4881bcc7 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,b0594aec-2963-4d3d-a07f-65f251937d32 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,7a4cc6f1-d35a-42b5-9a61-58f11858c9b7 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2b716e6c-dacb-406a-8137-aef1e1aa8781 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0233295c-9575-4d61-af51-f233fe565506 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2d2d750f-7615-40e3-8515-85be4227bc07 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,52204d5a-adc5-4131-b019-b1dcf3d53ff8 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,442a31c0-0218-4b6f-a350-53cde9edf467 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,626a7baf-d71e-48fd-8493-164f106e0422 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,473410c0-3ccd-4dff-937b-6e5a11338418 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,7a011670-577d-487b-9886-c6fca22ab68b -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,aa5ddb83-6bcd-4b3a-816b-1d42dab47cd8 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,7d717357-81ff-49ac-93c0-aa8f14074a54 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,cb1a67fd-3130-4bf8-a772-1c9aefd2f275 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,d2cb1948-18ef-462a-8036-49e1938d8d05 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,52bed9f2-87a9-4472-a288-68bb65770629 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e5fc943d-bb80-47f1-82df-1e277e38ff64 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,465bae52-6133-4730-b63d-f5f2be7dbd72 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,103e8dbd-a220-4049-8322-290cc58c1c6c -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2bc06a5d-98ad-450f-8c7a-76c6c2aeb413 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,d5622f48-e77e-45ae-bcfa-41571c686618 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,5531d32e-fe14-48e9-b407-28d96e1fa8e0 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,2d2ea487-d860-404c-8e02-bfaf5bded674 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3eec654b-6f64-4855-8fa4-7231e13f3df2 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,fa207752-56ff-4e06-8a3b-0e710c2acb35 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,d1768154-3a1a-4038-88d2-f47222d7d899 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,b53d8e72-8f77-4adf-820e-f8e0c416a662 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,6a40d411-83fa-4bdc-a574-832f8c8893c7 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,cb2af2e5-6cc2-48c0-8f9e-633b4d62b9a6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,da089190-9f40-4538-a7db-c5fe3bcb30de -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,d6074c44-57d6-438e-9b92-87ddb2a914fe -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,a49446f6-48b5-463c-939a-840e5431a5c8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,33c17aa1-2152-4cb9-a9fc-7214125d9a86 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,be3ff926-c45b-4fc3-aee7-5a6368c9f82e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,4195884f-c990-4eb0-9cbe-580c9a3027cb -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,5a0541dc-4b17-437b-8147-704575be879b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,16cabdcb-29fb-4998-ad55-87a328acba62 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2b4b2acf-93c0-479b-9579-cac7017dfdef -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2fbce85c-fa95-4e31-ba7d-59777d53ea08 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,c8064305-73f5-4bb4-870f-bbd47d12d274 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,e02846c9-01a4-4470-ad80-1d7ec069666f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.2851552799999997,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,2b20a3e7-4e26-4a56-a229-6862c6b0f938 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.2851552799999997,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,46becaa2-9f9d-46e2-8946-27ecd5abfde2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.2851552799999997,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,611ad1c7-765e-425c-9e1b-de0db85b09dc -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,66436d4c-f7bb-45f3-9daa-1f88c16b6ef8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,39cb7021-d65e-425c-80fe-96c6640185ee -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,0f894130-22b2-4a84-93cc-275a10831c0f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,52cbd43c-b327-4c73-a32c-70d63a9ab7e7 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e60a0e95-4b7d-41ac-b199-fb546a1d279d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1fbe270a-5e39-4fcc-a579-77af407c7227 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,9d3d25d2-5ece-4747-9fcf-c53e4769f82b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,4b1d17e1-eb2c-4a8c-a9a5-502dcdc77949 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,105b497d-92a8-4a7a-925e-1c79b283d1b2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,78edc774-974d-4770-82e4-f151d74d9817 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,fdd88fbc-216f-40d6-872c-44ec38f25774 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,7fd0633a-690b-427e-9e41-ae7d19408104 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,61370a23-f880-460a-9248-92bd39146367 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ae12e3c7-3606-4b67-9a04-a8c1d68e4eb0 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,30abec0b-5574-4330-9d6a-d645ace12e0b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.06869156,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8344d6c3-6be1-437b-ab45-66ef5516e4dd -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.06869156,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,ba62b4b7-612e-4de4-8961-66460cc4d035 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,3.06869156,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,fcaa5e5e-5e97-41b9-af34-e3dbe7ab2d5c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.4817119999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8c8b843c-fc2b-4f66-ae4f-515c76c3959d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.4817119999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,6edfe8b4-8ada-43ba-a7de-e27b61facc71 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.4817119999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,afc8f41d-4d9b-4744-aa8f-48fe0b32a1c9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.4817119999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,bd2532a3-344a-4bf8-ba5c-5c54f3364bf4 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.4817119999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,ad38b8ba-6507-4475-973c-2c804fb27b34 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.4817119999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,9cec6e5a-fbc4-4ed0-92c4-a1235aee8588 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.4817119999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,bd448b96-ea13-4b46-9143-41b57fad0a9e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.4817119999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,b065bd89-710f-43a6-9260-8bfcdf181840 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.4817119999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,d49d4ed4-61bb-4a5a-ab71-a563329eb63f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.4817119999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,99800515-a0d6-4982-a269-4b35cc2b8ac8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.4817119999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,95fd7259-4508-4a03-89d6-254c5f1e36db -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.4817119999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,992b2a05-4605-465b-9732-b8fa18f48640 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.4817119999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,38940d5d-e2a5-4760-a662-7d6a56c90652 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.4817119999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,defa4f38-4a32-4d46-ba1a-bf633a012c0d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.4817119999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,11d32d2d-1b56-42a3-a476-dc3911572728 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.4817119999999999,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,cf719ca5-b8f5-4d8a-8f0f-3bb8047e616b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.4817119999999999,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,eb16e7ca-c809-4258-944e-7d99aec7ac66 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.4817119999999999,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,63c62196-13d7-4792-9afc-793398f2d296 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.5991040000000001,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8a776a74-ea4d-48d0-ae41-673545a4712c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.5991040000000001,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,91000cf5-76e6-41a0-9a31-e6fc87ad2f37 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.5991040000000001,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,018e278c-1e35-4f49-9cb1-10ad2a4a3ff2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.5991040000000001,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,816738c8-cea9-4da5-be7e-806953463de3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.5991040000000001,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,dc71d43e-28eb-4d2c-b736-adfbf1f4a9ed -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.5991040000000001,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,acb86543-cda6-42cb-8258-38b46d331d22 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.5991040000000001,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3678395e-54d9-4977-92ba-5cc23a135d84 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.5991040000000001,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,19298c53-dd65-459b-b2a4-b69eae7889a4 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.5991040000000001,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f5e59c8a-21f8-46a0-966d-3c095118de03 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.5991040000000001,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,abda932c-5c2d-4a7a-8978-b2db76aee893 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.5991040000000001,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,344ef6b7-8f29-4208-95f4-126ad2eebd34 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.5991040000000001,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,6b2c089e-5022-4e36-b339-f83bbeee5377 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.5991040000000001,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,385c28b0-450b-42fa-8437-34eaeb78fa78 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.5991040000000001,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,64ff468f-ea34-4084-b863-df8dcaec05da -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.5991040000000001,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,75783e62-0e87-434b-aceb-8f1a21c030bd -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.5991040000000001,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,18edddbf-f3b2-4d6c-9e4e-9b59b2183695 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.5991040000000001,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,a6c25fb3-d268-4bfd-ab6a-ed32f9a1cb95 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.5991040000000001,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,17ee0af1-6263-4bcb-8eff-5f70696fe330 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.41369386666666663,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,5aa1bf7c-aebd-4ca5-9fb0-8d12cc9d438c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.41369386666666663,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,efaaf988-0ce2-4d1b-8fa9-135983a593a6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.41369386666666663,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,491aa582-b4e9-452f-aa9b-161aaeef09cc -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.41369386666666663,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,4af7406d-36ac-4aa6-9d90-fb2e71fd1ddb -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.41369386666666663,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,7294d533-5bdd-4676-a4ff-73042705189c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.41369386666666663,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f67d9727-6004-4e1a-b38a-33241ee085e8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.41369386666666663,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,4b675025-9d37-4461-aa19-660cc6c6eb62 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.41369386666666663,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,51f44c5b-ca5e-48ff-968d-9759c7ce3be1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.41369386666666663,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,9e721d03-1151-483b-9f50-961acd90e05d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.41369386666666663,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,01be324b-78e5-41b1-b914-391f70f22142 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.41369386666666663,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,88d75c3a-0017-48b6-90b2-277e6c650132 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.41369386666666663,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,39a67499-4279-4efe-8347-19a04d7ea8ac -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.41369386666666663,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,5da801be-06f3-484b-b98c-6ca5eba341d4 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.41369386666666663,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,2ebe0eca-9a80-4560-9c4f-8ef9d610efc7 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.41369386666666663,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,4fbb6748-5ae1-4e8b-a76d-097dc6254c8a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.41369386666666663,fuel_combustion_consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,ae737cb1-f772-4022-a12b-e745764d46c4 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.41369386666666663,sampling_scaled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,007212ff-1a15-47e5-8bf1-e0890d7c602d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.41369386666666663,modeled_data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,cc1bcd4b-7114-4847-a5eb-30f65f17e244 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,b6577304-688f-47d1-9b08-b0f60079bbe7 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ae4a510a-2430-44e0-a4bc-5b6d250bb677 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,429ffa5d-fc89-46b5-a850-c17883c0214e -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e95697d6-d5e2-428e-91cf-1ae40663ddcc -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,a557f9c1-c576-457d-83bf-c7d6f4feaf89 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,069ecb57-cb60-4e7d-b6ae-3c8a1dd76d61 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3e65b332-536c-4465-8898-b957df99f084 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3adacccd-a914-45db-a7d5-db1cffb9b383 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ea62ec1e-8db7-4a7b-a569-3b63eaa62ac4 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,9b3c6d6a-5432-4604-b9d4-4146c81fe9c3 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f507c9bd-6a99-4878-9b83-882fdc68e752 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6d1337c2-2b5a-4513-a7de-86fb7018de84 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1096d36c-ab52-4ee1-bbfc-caedde08bfec -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8a823cb3-a39e-4b95-a5e7-fd42bb8cd7b0 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,91408490-c56e-455c-aed6-6e8c8f218f15 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6b9bfe2b-fd73-4d19-b5a7-8b9604ecd972 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,79f491a5-2d2d-4ff0-b8c4-a93369acde49 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0498a5d9-ff91-4e79-bf4e-f93747fb693f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,becfe74d-7746-4d78-b64b-ab5c5d50d023 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ae579b7d-7e10-41b1-89cf-12743eeb1797 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f72c520c-40f0-41ba-a84e-e26dd0f255f9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,2d202c4b-3561-4471-87e1-b2e19f43f0cb -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d5cde1f1-04a1-4c45-ae7b-a5db98a1bfcf -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,16589050-11db-4bc3-86b6-3abc044e0489 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,a94bcfd4-949f-4cfc-938a-84c605559d20 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,9bd87609-a9d8-4ff1-829b-026102b0c9b1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,487f7229-6d09-4752-a7d4-9a6de2c42466 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4b3cce98-9b54-46ab-bd0b-bc85fa1bb698 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,60dab209-e572-48c4-a377-0928c0ad9509 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f61ff794-843d-4640-994b-bdbd0dcfed03 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,27cfe4df-17d7-441e-80a1-eb1ad65f5c19 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,dd40a0f2-cadf-4fc5-a328-5919ec636339 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d143cf47-cd59-4089-8c92-bdf839609d5d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.60568,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0f18018d-6244-4900-8c6c-6bfe347ab1f1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.60568,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,326ac386-b7b7-43bd-b93d-541dfba3bc2f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.60568,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c6b2de26-c569-4d52-9a43-2ec1dd49bdab -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,37305636-9b9e-4961-981b-2e659c72992d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4d4ab780-dcda-4ad9-a3db-d46580034efb -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0f53577d-21a1-48e3-b0d6-37d65e193844 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4e39bb3b-0e4c-4af2-bdc1-312ff44ac12b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,0b6e14ce-94ee-4105-a69d-a79b95c4b6ce -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,88c30c04-c65a-49af-9ce9-fddd6917c14f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,df8df4c2-f9a3-4809-8bd9-de0a263d87f8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f3dbc16-3b00-490e-b32c-2b265ff3bf99 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ba060395-84da-4b66-bd99-b8635d798dab -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8a3dc85b-f37d-4548-b0c1-2d665edf8d80 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,bc591e21-d182-442f-849e-2e6f30df04a0 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ae513ab6-9108-4b71-94c0-89a294610853 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,6a51d595-de06-497f-9223-54544a1a2be0 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,d9d1e2c7-31c3-46f0-8e78-034bf83b6c57 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,9afe45f9-9990-44ec-a373-dc276f996fb9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,629c100e-d924-485e-a5a2-6d7207bfb9a5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,c4566896-26db-4f5f-b2b9-cf47554f3b0f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4fd8e5d2-6165-4feb-8cd3-8094bc82b1ec -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,81409198-9b77-4ec4-b481-8c96a093a2dd -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1bd46ec8-5482-442d-8e5a-117357263eb9 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,afd19572-4c8f-4b4f-83e2-d432bead4026 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,289ec255-4e7e-46a5-9836-8c087b397184 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8e9c990c-5083-46e1-8285-dc2436960205 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,dc984e3a-b6d1-4b11-9bfe-cffabbc98372 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,da9fd12b-1669-4111-8274-785a5fa7eb43 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,9977f981-11bf-4f4a-9e75-610b3b97c279 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1dab0f96-e79a-45f0-9bda-1930b1545aa3 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ab43ef62-09aa-42f0-88cf-024b9df135a8 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,81eb0448-edac-497d-b3f5-82ff28b0ae33 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,fd7a03a0-b861-425a-945d-bede9d6e8a88 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,082d9371-9500-4772-b773-7ad52a31014e -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e8e9450e-d53d-46b3-90a6-93e6bb5fc1a1 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,996e3823-23f0-48e4-bf8f-95de9a2349a3 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.4815999999999994,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,1b48a3e2-51f6-443d-a5c2-bc3184a31b3e -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.4815999999999994,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,89b7b29b-f9a5-4891-8cb9-ffa17b05336f -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,2.4815999999999994,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,a163ce10-9beb-405a-8ea7-8cafc81cea03 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.3318929333333327,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2a62effd-7277-4738-82dc-948db28c73e0 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.3318929333333327,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,9c25fbe2-e473-45d0-909f-0ab6f15b7f39 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.3318929333333327,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,7b18a9cb-dbaf-43c8-8e6e-196cc7d3b041 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.3318929333333327,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,901a8106-9157-470c-8097-589a81e2eef5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.3318929333333327,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,96dd03e3-0f1b-461b-8c34-5d4b8bad145e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.3318929333333327,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,bec0824c-7f1c-454e-a278-e06d78ec6dc9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.3318929333333327,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,6d097d74-d1aa-4e70-a181-b14aa4ff79d2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.3318929333333327,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2c7798fd-8a57-4f95-8163-bed12f0b7d4c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.3318929333333327,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,250ad47d-1da9-4844-bdba-33de373b3050 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.3318929333333327,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,eae737e0-92a0-4c79-b2d4-11089f29d2d3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.3318929333333327,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,d919c9f4-0d2c-4f72-a188-f16e9c0a8f12 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.3318929333333327,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,77d3c772-25f7-4882-a9fc-814aba9cd473 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.3318929333333327,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,eaf66868-69b0-4955-be2e-e6bb4a24bdbf -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.3318929333333327,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,45555af2-856e-45c4-960a-9276f31bb746 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.3318929333333327,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,aaa86fc4-c320-4a7b-8cf4-6566e81a2534 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.3318929333333327,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,0cb45448-d963-4ab3-be3f-7ff02c30e170 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.3318929333333327,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,eddd4027-7e07-4321-8205-b88a2598c7ac -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.3318929333333327,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,a4d83d61-0b35-40e8-9fb8-85d9cb103f20 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.27083208,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,58d63dee-d5ab-432f-80b6-f4c6ef85566b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.27083208,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,8361c561-b2a5-48a6-bdef-cd8141633361 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.27083208,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,ab58e64c-5cca-4384-990b-79222a00d26f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.27083208,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,32e01ee7-1cb2-44f8-b9ff-65216d6103cf -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.27083208,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,9203c8a1-72fe-4088-8fce-ab1a8d9349ed -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.27083208,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,ac057c60-5c47-4916-b50c-a19ffff5b1a8 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.27083208,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,c44dfbe5-7263-449a-94c9-3d8fe79c656f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.27083208,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,8b33179f-418d-4297-bab3-1528d9220a1d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.27083208,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,5aad5159-f6a1-4e85-a2c1-4aff17b1fa44 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.27083208,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,403f45a1-2dcc-4292-a919-b826752c5228 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.27083208,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,c0c6d856-0c60-415f-b95e-7a8e685e773c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.27083208,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,0d9aa14e-b6c6-4d1f-b904-d21f28e331ff -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.27083208,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,c1c37320-619d-44bc-90f9-a49f581db3f6 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.27083208,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,83dee837-a2de-40c1-81c1-d4f0b865f8de -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.27083208,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,339ab715-43ee-47ee-b305-69636b95d750 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.27083208,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,99447464-8db9-4a1a-85f3-24770ee2a78c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.27083208,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,771a4cc0-8dcf-4673-9970-920f84bd6c9d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.27083208,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6beb8003-4215-4a7a-ad52-898c0d4df1e1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.252408546666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,85b07973-c3e0-4ebb-aa4a-51ad652d43aa -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.252408546666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,be53c814-f978-4b15-8470-6c0eeaaaeff1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.252408546666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,375c2b4f-bf7f-4d8b-9315-2f6d752424f6 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.252408546666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,d42c4bf5-9302-4cbb-8876-c2568c5387fc -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.252408546666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,6ee2094b-8ce4-4c5e-9d14-63a8ba2d63b2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.252408546666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,fa65a023-6d9f-4206-b75e-879f3b033458 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.252408546666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,32bf9309-58d0-43fa-a889-2df599e3aa84 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.252408546666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,87ff6081-c295-4284-9770-2878cf09e6f5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.252408546666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e09a3cff-9878-4aa7-9c00-9b5756eb3a64 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.252408546666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,bdaea095-778e-44da-9fc1-f229c425c933 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.252408546666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,a0e50c1a-9f1f-475c-a2ef-8f33112fa351 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.252408546666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,94b5e3d2-2604-4147-93a0-088d3f18938f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.252408546666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b2513ae5-b1ca-45f4-a3f4-a986a2d48fdf -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.252408546666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,80541a3f-aad3-42d5-ade6-266a44d15b0e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.252408546666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,3f5c5c0c-4954-449c-b158-4d76422d48c2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.252408546666666,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,22b1c912-c838-4b7c-b227-d07cb004b43a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.252408546666666,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,237bfd42-5236-47e1-9522-cdf6acd8f962 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.252408546666666,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,ab3af958-d331-44c2-8044-0d1107e1b754 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.2650418266666663,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,0dc2a60a-4444-4e41-9637-f6e40493441a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.2650418266666663,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,3bb3828a-c11d-41fd-845f-ce0e79948a31 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.2650418266666663,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,75677486-404a-4f2a-a9cf-8b75ff78a5d8 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.2650418266666663,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,3bef4893-a3c6-40b0-ac47-c24c96f615cc -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.2650418266666663,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,7798467c-061e-4cf7-a308-712685306996 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.2650418266666663,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,e01fbf59-fb0c-40ed-91f6-4c8871efd9b6 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.2650418266666663,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,99c37335-7fca-4528-b4f1-def0f765b655 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.2650418266666663,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ae2f555f-2a9b-4a63-b713-0d5dda0f0006 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.2650418266666663,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,7aad678f-c1ee-4450-8608-eeb7523ac324 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.2650418266666663,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,30cedd03-2feb-4447-b844-9982d1eb16fc -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.2650418266666663,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,5af17a1e-f5de-4556-a4af-3f11e9568f28 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.2650418266666663,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,b3176949-dd3f-4d75-847c-f35823368bda -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.2650418266666663,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,053ed471-f0a0-409b-a396-63318b537f96 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.2650418266666663,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,7e3e49a0-f23c-4a8c-aa30-cc2db6305019 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.2650418266666663,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,93e3621c-5958-437b-841b-c4faa406316a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.2650418266666663,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,361baea1-9221-4b35-bc50-83a2720b465e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.2650418266666663,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,c3d9afa5-5a50-4c78-8f0f-fa15fb2cddab -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.2650418266666663,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,57858634-e01f-417c-99f9-764982c21088 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.2717925999999995,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,52b1dbef-f1aa-4771-a369-e4a78f59fd6c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.2717925999999995,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2063d569-057c-4f9c-949a-4cb26780815f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.2717925999999995,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,613336f9-6706-4519-b149-8cc9f349b782 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.2717925999999995,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,dc946480-5780-4e29-aa4c-ee5b707087da -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.2717925999999995,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,e871e3ca-b65e-43a0-84ef-18e4b97ab18d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.2717925999999995,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,1cb03a6c-352d-40a9-b4cc-06b558a96cfb -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.2717925999999995,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,79f12914-b896-4759-aa34-d062dccfa9c7 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.2717925999999995,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,a6ad79bf-565a-470c-a909-42dc92acc57e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.2717925999999995,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,4c6242b2-7fae-4e10-98f6-fdaae7c31cff -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.2717925999999995,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,425f94b2-b2fd-449f-9bba-b0da72b79257 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.2717925999999995,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,d7aa70c2-bd75-4ef6-bf97-85a11966c9a7 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.2717925999999995,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,5516db9a-ec0b-4296-9f5b-467a6e104144 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.2717925999999995,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,936cfb2a-8ba2-4c4e-bb4d-ed4becb8cf54 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.2717925999999995,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,4c764585-73da-4894-ae4b-6e23dc50426c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.2717925999999995,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,529b4a7d-2b1b-4113-9762-41340b17c22d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.2717925999999995,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,c3c782ed-9da2-4239-b9a9-44ca16f91f94 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.2717925999999995,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,6fe16647-80f0-45b6-a17a-6f71c42d9f1e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.2717925999999995,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,5d5e0852-7a5b-4c1d-bf4d-6fd4355dfd6c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.21230548,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,335abe12-cf34-476d-aa72-2e37ac891fd1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.21230548,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,4e100509-6593-459f-a832-75432015a82b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.21230548,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,2da9cd69-0813-423e-9cb6-89906efa2c3a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.21230548,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,373175fa-528a-4566-9849-a9d52879cf31 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.21230548,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,f1ff9148-fcca-4a85-bfee-eb16a3e54605 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.21230548,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,51a3387e-d82e-4750-9549-c1a45951237a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.21230548,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,15854031-1850-4647-9416-5a24ee634813 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.21230548,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,540339ff-ee7d-42a5-aad7-58eb2b03b0f0 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.21230548,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6c201ed9-f2dd-426d-82c9-721008b1f6b8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.21230548,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,6aa7a50f-44eb-4dba-baf0-3b104897c34d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.21230548,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,20a48bd7-ee84-4c7a-9257-9829e2edfb57 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.21230548,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,86e8c7fb-f193-4702-909d-ad103e26d9ac -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.21230548,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,2256df90-8399-43ae-b41a-6962433517f3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.21230548,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,994f0ef1-f75e-4980-bd38-858f33d122bf -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.21230548,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,48993a01-b7c7-4864-b63d-840a087067c6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.21230548,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,4f5d1997-f20e-4cfa-bbc7-3eea77382979 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.21230548,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,20fe363b-7ffa-4f15-8098-3fb17dff3947 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.21230548,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,520eaa8b-dc21-4fb0-aa3e-c6dcde952f4d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.1943567799999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,dfa7e473-8cdd-41ca-9b36-52dbb343b937 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.1943567799999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,faec93bc-8d75-4637-8014-cd236486693c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.1943567799999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,43e64101-3a47-45d5-9804-294ef3ba0c22 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.1943567799999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b4aa236f-f633-431d-a73c-7e6970737756 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.1943567799999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,fb294ff4-abb6-4b1d-8c00-367686d6c65f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.1943567799999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b8a51e56-1e8e-4fb5-8e8a-9bb429a9075b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.1943567799999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,8c1c3ac4-01bb-4990-be52-12a90dfe8e72 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.1943567799999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,9f6ecad4-bd68-4791-93b7-eba414e820f7 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.1943567799999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,6b93d6df-1bce-4caf-807a-2756a52013d3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.1943567799999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,3f1fe9e1-eb88-4b0b-9973-a5474cf4c5c3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.1943567799999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,76901332-d7ad-49b1-8f59-7d724b444ea8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.1943567799999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,7efb9b29-b13e-422e-af48-91fd2620b39c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.1943567799999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,533edf46-c138-4003-8acf-734d9b9b0584 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.1943567799999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,7f407ba6-3880-446b-b358-cbc02e9cf714 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.1943567799999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,0747db86-9b91-4435-90af-7e9496fd8ac9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.1943567799999997,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e40095c3-83ba-4983-ad3b-5e4453be309d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.1943567799999997,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,9de8475d-2c14-4360-9039-28dbeececa45 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.1943567799999997,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,ef629bff-4e05-4f7f-9c74-f725d93c1700 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.20666446,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,fdf9e425-5662-4a26-92f7-b539572c8f4a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.20666446,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,2571e95e-6e4b-496d-962e-c04908b8894e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.20666446,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ce5ed8bf-de9e-42b1-abe4-52aa1d9b28da -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.20666446,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,3b0017f4-17a0-4ac1-a673-2b8c99d3e26b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.20666446,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,b3bc9493-c61a-49ac-9ef3-9dd183c0eb89 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.20666446,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,0c2108b4-38c4-45dc-9cec-30baa4e82621 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.20666446,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,a074ffeb-7609-4cae-b964-3f6fb267a876 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.20666446,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,02bf20d8-e852-4012-81aa-9e543d69f6e6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.20666446,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,64659e01-0889-4a08-8672-78730436397f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.20666446,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,6d8c7898-230a-46f7-8c4b-c0a5e731f5ae -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.20666446,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,631143ad-727c-408a-a218-3461bb4dd7f9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.20666446,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,04e783b6-5b20-4039-b658-a334f0077e46 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.20666446,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,ece46836-61e7-44b8-8a5f-4fb2a938cc68 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.20666446,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,64ea6035-29d8-4349-8832-5728a68c5e9c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.20666446,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,1de9c16c-3732-4899-a360-b133896a2913 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.20666446,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,35a117c0-a742-4bd1-acc6-5ec377e59a23 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.20666446,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,877682bc-6eed-4dff-9523-b80a138d5b19 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.20666446,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,f0e8f0c5-385f-4c0b-8ccd-27bde4a9954d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.4925119999999996,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,de695ac1-3a96-4b36-a741-5b4da6e86eb9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.4925119999999996,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3a9af866-2042-4a08-a4b4-d075f125cdad -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.4925119999999996,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,6e4c930a-0d3c-4534-aefe-6ff607c4f2dc -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.4925119999999996,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,c5af33c3-d23f-4812-bc9a-6a02e80e7fdd -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.4925119999999996,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,448b248f-eebe-46f2-9020-74788faaa324 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.4925119999999996,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,c413014a-697c-4aea-9151-12cfdd9a1c7f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.4925119999999996,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,9cbde3e8-1f43-4bdb-904e-e84e8a784e9d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.4925119999999996,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,aa8ac0d9-ec9c-448a-94d6-b135c974dc97 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.4925119999999996,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,5f622991-049a-4e0c-aa65-3287253105e4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.4925119999999996,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,a9fa6f19-dc92-49a5-878c-04d9b04769d0 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.4925119999999996,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,06134d5b-f592-4129-b804-7d0e7c4f4f83 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.4925119999999996,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,2d9b856f-83be-4353-b998-43ec17ee1413 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.4925119999999996,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,b781367b-593f-421b-8763-b1ca9d6d8123 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.4925119999999996,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,03d58e03-1d73-475e-b281-c9549e21f575 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.4925119999999996,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,935745ed-e8c2-43fe-8d2b-1f34754d9cdf -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.4925119999999996,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,ef228399-44fb-44bb-a196-1ec16f31237e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.4925119999999996,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,056221fb-bdbb-44af-8976-31a4b9ee4750 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.4925119999999996,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,c5616190-0d71-45cc-b3c4-e1291a57cfa9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.50536,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,d90c5ff5-2784-4d3a-a282-541db5fa4c39 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.50536,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,fbffdd58-9b55-4921-8673-47f7acabe3b9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.50536,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,796cc039-f064-414e-9039-57e8a95df45c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.50536,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,59b2e330-afd5-4fca-b604-c21d297b3dd6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.50536,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,e8f3429a-7f26-4197-9aed-118d967c3076 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.50536,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,4391b4fc-5153-4c26-b8ee-d509c85ac0ca -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.50536,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,c8c1701a-e6f3-4e9a-8f70-7dd85e0aa5f5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.50536,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,c2fdabde-2ff0-46d1-8d4b-b864c907e484 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.50536,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,714e2c29-54a8-4e62-90c7-20f724bcbed4 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.50536,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8c665131-49d0-4c0c-abe0-6db3031f5d4c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.50536,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3b934b8d-cb9e-4640-9ad9-c82d3fc7247d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.50536,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,1654052e-63aa-4b3a-bdea-e03d3b44a00b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.50536,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,9669843f-b09a-4b2d-b57b-ab9c73f0c552 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.50536,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,81e43a93-b4ab-4869-b431-17d88f6a9083 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.50536,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,6844b0f8-8586-4272-859e-20dde2c88064 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.50536,fuel_combustion_consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,1a709a62-1713-42a2-8d4b-2abc7bef8f2a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.50536,sampling_scaled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,cda7bb3c-ade3-415e-bd87-bbb8393d856d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.50536,modeled_data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,255a2360-16da-4958-9fde-36ac933e1d1e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,43c0ca6c-e6f6-48cc-a549-6cbe4570ed48 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,bae69822-863a-4a89-bd60-3e0e1cd3ff23 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6355559999999993,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,d1f8f18e-53c7-4ee6-a4db-c857c85572ca -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,afca2b8e-8590-4c21-b4be-9e21665b6122 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2e09e81d-f966-46e1-b422-0f14aea2050f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6355559999999993,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,02d14a13-053b-4372-931c-1806fe86d114 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,7e3cfb1c-0bea-4b2f-9a87-766c10900b6d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,cba24320-1646-4cc4-819a-61f7621370a9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6355559999999993,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,13240a75-dabd-4963-a4a6-540e1c991fbf -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,d95105b1-2bd3-4958-ab4d-0f0c4a4dc1e0 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1fdcea5c-8deb-4a0e-ada2-eea7116ec48c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6355559999999993,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,610ab459-591e-4063-924b-814e794f3ad0 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8f6311d6-bf13-45f0-a71f-6d5a833e566e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8b6de4ca-84b0-4985-afa8-0d9ae97e6cb1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6355559999999993,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,ec813772-1775-401e-b7b5-da7f44e0624e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,88949fc6-839d-4117-a4b0-9d10c6842c61 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,cc558110-e7e0-4007-b976-345862817eb2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6355559999999993,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,0914aba8-d91a-46c4-a967-23fc2b65f616 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3efb0256-1e25-4b72-a473-607a84ef82e2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,15bc9e2e-d4cb-4e25-ac38-9953e1371794 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6487999999999996,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,25136b93-9d09-4d91-a255-e0956db25c09 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,d55653bc-7b61-49fc-a4e7-dc76852a0032 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,14728855-f5b0-417d-a911-d4d1535b4e4a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6487999999999996,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,319b97c4-6c4b-4d34-886d-c9834e3560b6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,ad9c0234-869b-4476-8da6-b7fe33147d9c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2186bf1c-1de3-4740-82ea-44de0e9af4d6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6487999999999996,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,9104289f-9f5e-4ffd-a179-c6861f7a9c9c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,afb26c45-523f-485e-a88e-43589b5df4f9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,ebd8c408-84b2-4499-ad0e-1458f480f8ff -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6487999999999996,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,07dbab28-12a5-43e2-ac43-a5bd3845588f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,49a01dd2-2068-4609-8496-9c0c86a8602d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,39315327-eeb6-4d88-83ef-1da26d121ece -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6487999999999996,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,818aa262-64d7-4613-9f35-07edc2093142 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,96dfe7a7-dc79-42f8-a8d1-77494c78c7ab -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,49bcf50c-de77-4026-8c6d-24e8ea2e928d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6487999999999996,modeled_data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8b076bfc-4fb5-44fa-b888-c432ff6f229f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8d40d079-4942-41e3-916f-357aaeefbdf9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,2e1514a5-10da-4eff-bc57-edf6af5ba423 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6355559999999993,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,d7f6e479-3cb3-4f3f-b15e-f01203efc7f9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,6ab5f5c0-da48-4ef5-9cde-6172a57b9fa3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,a1ac0762-377a-45e1-8f97-0508f2e0d54e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6355559999999993,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8308e96b-bed1-4759-a182-91e3d36e3fde -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,9ec49c9b-afd8-49b5-b45c-56f86b60bdae -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1383c2c9-3bb2-41d4-bbdf-a62123ed6cdd -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6355559999999993,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,ada80173-14c1-4b5a-84ee-329faff99a7b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,45a1ee1d-c1a2-4f58-b16b-b4abae90fb32 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,c4c6479f-66f0-4cfd-a664-7d8b600b0a5f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6355559999999993,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,ae626087-6781-4530-9761-a6ed987e9702 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,e4d7866f-dc5c-425e-81e3-af4d4ae46bc5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,fbc60183-ba93-4c7c-9152-2f523133831d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6355559999999993,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,5a042605-01fd-4f97-8f97-e259349dcba4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6355559999999993,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,fc199776-191a-4771-93ef-1b1dfe55fb33 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6355559999999993,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,373dc978-b604-4b49-8fec-d92ab7a9c611 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6355559999999993,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,6380ae02-3b81-4fe0-b352-91b6211c80f7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.62207176,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,557ebbd7-6d17-4146-8270-230da39db0f7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.62207176,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,9906ecd7-89ec-4724-9322-8b236d6c0e4d -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.62207176,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,e1fd3f96-b283-46c3-91e1-9cabab7a138e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.62207176,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,173832ef-3356-4d1b-af82-3681ec3138fa -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.62207176,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,347f50a0-64a3-4527-9e47-39ca1c972718 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.62207176,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,c1732e55-8e33-419a-9455-0ec85adf2e00 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.62207176,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,9901bb12-da6a-455e-8d8a-a8f491142287 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.62207176,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,4f12f04c-1896-4af6-aad4-8df5e7243004 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.62207176,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,89a6a8b5-5ffd-43bc-8b96-853a690c05f4 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.62207176,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,083a9869-3ded-42af-8720-83bc6979ffc3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.62207176,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,0e53cfd0-422d-425c-b346-77c1bcee14fd -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.62207176,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,886577d3-3787-48d6-86d7-eab51a41c274 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.62207176,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,cf0d2a83-4065-4b9e-a5ce-55c60703cbc3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.62207176,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,628346e1-effd-4c52-995b-00d683789b76 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.62207176,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,b66bd06c-5f21-4d5b-8ae3-9001d90004cb -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.62207176,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,93342d14-313b-4a92-8e40-9d0fee78f120 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.62207176,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,ab965fcd-f3fa-44fd-b89f-04dc78519e1b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.62207176,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,74da2cba-f108-46d2-af01-47270d54133c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6085875199999995,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,c63953cd-7942-451b-9bc1-0be93439c6e2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6085875199999995,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,ddafc1a7-c824-4efa-a998-7384d65f4674 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6085875199999995,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,5c140468-c128-4f0f-8dad-ed4d3a6b96ee -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6085875199999995,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,ac409c3f-7773-4667-9f65-c02b323a3e3e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6085875199999995,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,9d9ff719-472c-43bc-95cd-a949981b824c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6085875199999995,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,40f5ff5a-244f-48a4-a08c-eb8a4c6c6240 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6085875199999995,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,a47e012f-e3d4-44de-9585-f3e1a673c7e1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6085875199999995,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,f9610b0e-2ab8-4e7f-87fa-2a0496107b78 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6085875199999995,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,94e543fb-9c84-4150-b082-70c5b1e7af2a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6085875199999995,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,d4768838-5438-497d-81bf-048a4c911b7e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6085875199999995,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,a90a0574-ad7a-4221-8f59-b612cb5ee9f1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6085875199999995,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,14a2917c-cf3e-455c-bd60-3f2ea488a513 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6085875199999995,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,64d114ec-1a3a-4923-b6f3-e01adac06840 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6085875199999995,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,6eb6b11c-d64a-4966-84d7-53fc8fe8cebb -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6085875199999995,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,5a43b232-188c-4801-b925-45a06f1adb0c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6085875199999995,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,dcb939d1-d866-4fc1-ac78-bb4c0af6088e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6085875199999995,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,31cbe76a-3df0-4708-b046-e38501a2420a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6085875199999995,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,47a337d2-a11a-4af0-99e0-fd9ccb009622 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6196200799999994,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,7de42190-522c-4ff3-b86b-da833bf0e516 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6196200799999994,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,0f0ed243-9377-41b0-94b1-ce329e149f92 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.6196200799999994,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,d2d8f40b-6e20-4868-8fed-a4c27da26395 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6196200799999994,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,3b68461a-cb3e-4b75-8b8e-51e4662abde6 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6196200799999994,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,e7477390-c222-4d63-9ac5-e39c3c4fb6eb -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.6196200799999994,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,8c7e5cd3-52d1-47f2-b4ae-62488a167f5e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6196200799999994,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,536f5afd-de2f-482b-8f72-0f948f5488ef -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6196200799999994,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,2e7f8aa1-a0ce-4dc8-a368-8500aed1e61b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.6196200799999994,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,817b8991-b2d3-48bf-a73d-4c0a74bdc97a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6196200799999994,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,e147590c-c711-4906-90a6-c39cdb19b72c -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6196200799999994,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,9fa92241-d13e-4bb5-b9b3-94267673db29 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.6196200799999994,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,eb93723b-04e0-42f2-b88c-c3b69077aeec -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6196200799999994,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,b3eaf65e-aba4-49b8-aacb-f294578134d3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6196200799999994,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,6c0450c2-6091-4b42-a6af-bd1cb824bd33 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.6196200799999994,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,c5e88fc9-e4f7-4fb6-ab0b-e919b4426385 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6196200799999994,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,666a5a7e-20c7-43b8-b19e-b6fa18c1c144 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6196200799999994,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,2c207b8f-1da8-4c6f-afcb-c0f634070738 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.6196200799999994,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,1338ce96-ac2b-4350-b8b4-2573fc566860 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,eb85958d-d76e-4bd0-871f-1966ce878c15 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1b5e5b97-0b20-4ecd-8fde-11bc7d415257 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6487999999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,35e8be92-1909-4265-8530-19908c98db73 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,9bb887ed-45c4-42c4-a735-d994441f7bc4 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,742f61f1-148c-4a41-945a-ee4ac9d25765 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6487999999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,e4d44050-5dd8-4551-990f-2b18f5000f0b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,0d0ba069-c30b-4fa4-832f-f725f4b10ad6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1a6f9e81-d056-41a4-b8af-2e32c8c767f8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6487999999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,c4ba8081-356d-4090-9990-b6d1a5a72681 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,c384ea51-d3eb-4cfc-8343-1a54a80df7ec -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1a2bf6ce-3f19-45be-9c4e-c4ab7138f066 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6487999999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,584db0cf-af85-4a82-b7f8-30fa21813478 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,9fe24885-fddf-4234-8d72-f0817b22d5fb -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3182d852-6d01-492d-b11f-56d56abdbc5a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6487999999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,617e507a-3e45-4a57-89f2-1dff9f20ceac -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6487999999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,a5e3367e-c3f5-45a0-884a-37d20f1204e3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6487999999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1b5b4591-ff6f-420c-a325-948a295730ed -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6487999999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,1a910f92-d7ab-41bb-9825-7cc9b5b0d511 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.635248,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,73360e6e-963b-4ff4-8cef-566b9f57076d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.635248,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,8df69d40-e83d-46da-9818-1dda1bcbb340 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.635248,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,eb3dd6ca-336e-477a-a710-d1082f7cdeb7 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.635248,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,3bdcf15c-3a0d-47b3-b81e-e7059c435c14 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.635248,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,5b24fe49-6ece-4b99-be76-d4081f44fb3d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.635248,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,14372dc8-4c63-4731-82dd-6e65950b8521 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.635248,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,d81e6673-b971-4537-9841-528150a7f21b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.635248,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,90d3f4a9-eabd-4563-afea-7c45b01ff28e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.635248,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,4e954d01-9f5d-4165-864a-a00b3e41a2cf -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.635248,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,99baf18e-d251-44cc-89a7-2889ae681a01 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.635248,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,5d733d91-cfa7-4b67-af40-d7e8d77aaed1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.635248,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,30ad4512-ad75-45fb-8e30-fab528f9917e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.635248,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,a24ac674-169f-41d9-97b6-f733c6dedb05 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.635248,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,8fd3b549-d3b3-4680-b658-eb5a0fa01dd9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.635248,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,a7c58cc5-a666-4a7c-bdec-67cac3823dac -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.635248,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,14616fa4-fdbd-4d19-87b5-e99fe0f6df55 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.635248,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,58ba9a8a-f9b3-4447-9289-d7b0c2735107 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.635248,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.278e-05, NCV_units:TJ/kg",,5b91ad65-74af-4f85-bdf3-69e70da45999 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6216959999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,aab892ee-011e-4264-bb71-585ec2dbb6e6 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6216959999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,2d12a89b-1418-4ea7-a0ac-42c021047fce -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.6216959999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,2112d8e2-5157-439b-8fcb-51a9f27a7c99 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6216959999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,d6dbac2e-0dd0-49c0-a8e2-227ceadb854a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6216959999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,d9c1fc29-17d8-4bcb-a359-06288d832bf3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.6216959999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,95065133-e709-40ab-83ee-6bbac064740a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6216959999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,4c4e8707-e2c2-4cab-861c-fe31bdebb79c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6216959999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,02b2e1d5-5450-4fe9-9020-3ecb73e279bf -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.6216959999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,67b0fb37-bb5e-4c2f-8f51-7892140adb75 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6216959999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,68ba8fd9-6e97-4335-a557-94c617b3019a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6216959999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,f11b75f2-4613-41d0-abd4-3b9d61275bbf -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.6216959999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,f09ec6c7-8c19-4252-9de2-41cd70062da9 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6216959999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,8f62e9ef-2a3f-46d5-81d6-344f7f23038b -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6216959999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,d0bfde38-f089-434d-a3e0-8b41edd1095c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.6216959999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,439c75c7-3963-487f-896b-64122c496677 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6216959999999996,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,4e094b62-8115-4296-904f-90a01075e43c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6216959999999996,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,3d01ee86-525d-4b5b-b913-98373733ad75 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.6216959999999996,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.256e-05, NCV_units:TJ/kg",,f89b8eb6-d3f3-46dc-abc7-9864c03818bc -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.632784,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,df8da08c-1420-4065-869d-53847e643c22 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.632784,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,1eab0d9a-d0c6-491b-9883-0186c3b28f60 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.632784,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,42cd3a7e-8b95-42e3-a876-5ca1782c5a06 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.632784,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,d2b4d948-9d93-4df3-b706-231c62431a57 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.632784,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,4540aecd-69ea-492f-a242-4d2f38d60f59 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.632784,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,ca386b5d-0d93-4241-a217-eeb0cb80b5d2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.632784,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,67846e07-b957-4298-bd4d-a1b570076b56 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.632784,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,8fbaa0d7-74b5-469f-ae51-8dabe782f584 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.632784,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,e9c97368-e745-4754-8fb5-6ea2190e5118 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.632784,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,e7d3dbb4-039c-40b4-9176-5a8a5652a564 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.632784,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,6746f99e-a374-4885-85e9-f5f4ee18ea94 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.632784,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,b461a012-cda4-4a39-afbf-abac09807747 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.632784,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,c892c8e9-8ad4-43b8-b128-33b8bea9f81d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.632784,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,574ea670-7ccf-4297-9e14-98ff3bf86461 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.632784,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,9e3ba001-0c31-417b-94c0-d8b304e0e03c -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.632784,fuel_combustion_consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,6b28e138-5d66-4659-9ee1-9d2035e045c2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.632784,sampling_scaled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,fce9d64a-f996-49fa-84df-61129e1f5256 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.632784,modeled_data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:4.274e-05, NCV_units:TJ/kg",,5c0b8980-8e61-4eec-b82e-7c17c2556b93 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.1165290666666663,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9aa63ba9-d77b-4ab1-8cb3-3dd057545f9e -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.1165290666666663,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,87e7c4a5-17ba-451e-968d-f1215056462d -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,,2.1165290666666663,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,6a1f0fe1-4964-4880-8fe6-133d6e086767 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.1165290666666663,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,0ade802a-c35f-49e0-9b35-d3d6eb6e27f6 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.1165290666666663,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,6733426b-96ca-4c39-84d9-4a790b417a41 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,,2.1165290666666663,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f96e245c-d290-4d07-b4c3-b0bdd9b228b6 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.1165290666666663,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e6aa724a-ef72-4f2a-87d8-8646dbefc92d -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.1165290666666663,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,b0a8a9e0-bbfe-400a-b48b-72131c88fb12 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,,2.1165290666666663,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,98117265-9652-4c51-94db-3f0c0647c753 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.1165290666666663,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f57c631c-285a-4a23-a124-40515cb96508 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.1165290666666663,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,7d7d6da2-fff2-4159-8fc5-b669742f70c4 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,,2.1165290666666663,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,da6009eb-ba99-49dc-bf7d-a26f1baf2b33 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.1165290666666663,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,eb583b63-f232-4ab8-b093-c42c3680f790 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.1165290666666663,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3469e012-d0ec-4c2f-8148-bdf83e2ce74b -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,,2.1165290666666663,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,ef79c21b-a8d7-4ace-917f-83790eab78b8 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.1165290666666663,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,b900ec43-6433-491c-9e57-63519e58d72a -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.1165290666666663,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e631854b-741f-4c7e-ac6e-c5e1c53a75b4 -CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,,2.1165290666666663,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,9bb41af7-b8cc-42da-a71d-37144a70ab65 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,e4433651-e261-4731-a231-731b6ae0b6fd -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8cc6350a-3c44-4da8-b653-196a3926e9f9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,6f490500-4153-4a99-ae8d-ceb894351344 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,a40337a8-ff47-456b-b2d6-c047ee42bd2a -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,c0f04df5-9398-45ee-8140-91118855833e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,ecbee56d-6a73-4f3c-b581-08c6304ef292 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,feac84d0-d156-46e0-85de-f927853b4e99 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,197aa1cc-52ec-4ddb-afb2-95f4b03b5ef3 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,15805655-1daa-4f13-a442-3ac4da3f3559 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,70ff050c-8ff3-4a99-a235-d484938ff86f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,5292a28b-da71-487e-bbe5-4a29efc0601b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3ec41686-bcbf-4b4c-8c96-f95dcd125633 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,de4bee26-b300-4b3a-98ee-2b6abcd40267 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,16357c8d-bf5f-46a8-b6b0-0a978818f112 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,4bd92787-d2d7-40a8-8292-0c013a5c988b -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,55984f59-1079-48b0-9565-b064518d7ea9 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8dc9df8c-7f77-46d5-903b-54a6038aedff -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f18094f-8f20-4ce5-a4a7-cb85e8669cff -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,83150093-5170-43dc-8891-6815855dadaf -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,7e4ea073-8d97-462e-a657-61b9a7ce6969 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8d526228-e3d7-480b-af55-9b1490c1908a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,47a1174e-9463-4684-8046-43dfa7280fd3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,ef05a4be-1031-491e-ac9d-12a661b66643 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3020cb0e-bc9f-4f8f-8534-935925aff257 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,29e7eb88-a3a7-4ce5-8bda-4462db5e3310 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,bc68b1ad-ef83-4b1d-9892-1aae2857ecea -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,abe3c039-1e5d-4876-81d2-cd915275d2fd -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,0adb2f15-6fa7-49ea-94f8-92d4f222c8e1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,43b477c2-66e9-4817-ac2d-31319b67dc12 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,a4450517-be15-4f59-9ee7-1874cbd11d41 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,0850e77e-a810-4cec-a968-fa257a1f4fd5 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,cd1a975b-3387-4381-bdaf-f0c39047bcee -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,459f26c1-c8ed-4a8e-9c1b-50b4cf8db87a -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.938076533333333,fuel_combustion_consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,341da53d-e7c3-416a-9fa3-57f829d6a2fe -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.938076533333333,sampling_scaled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,4492bc4d-4574-4741-b483-213603947502 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,2.938076533333333,modeled_data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,dce160b5-66bd-451a-8f6c-39fe0e96efb2 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1f386061-e799-4a0c-9d51-7dc8cfbc9f7e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,255ae739-4e83-40b2-acd6-6a82714be843 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,85cd2edc-8319-4da5-bfa0-38ad134b94b5 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,930a52e9-f6b9-4235-b819-039015c580bf -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bb7a3863-c632-4b82-896f-7e9d7d38602e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,27bfd2f3-e8eb-4076-bb37-539d9384dcd7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,95008e78-6c17-4e3d-8676-fb752718bec7 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1b689dac-f679-4a68-8ac7-dd092a9d3d85 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,34d50e73-5e9f-4771-ba33-55f731fca90f -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8681e421-6806-4e17-9c68-0e49fd1f2117 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cb084bb8-40f3-447a-b421-6ac7cab0b21e -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,099ca87d-3204-477d-b485-e576b5bffeee -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,735a08d2-0aac-4bdc-80cd-ccf31c124459 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,595ecdf8-e1e5-470d-84d8-c465c175d083 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,003cb109-5e86-4085-8906-49828ab700c1 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7f0a82b7-d359-444a-a05b-867fd4025802 -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,18c9d244-b5d7-4054-bf88-948aee030dfc -CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2094e184-e272-4af6-9351-2145dde2c72f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6401f2ed-d06c-488b-b99e-b9a76b645039 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,919497bf-fd74-4bcc-a233-3a81091b0398 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,04abc053-b9c2-474d-a045-963d5bbafb9f -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ec15e7e6-f66d-4734-9093-cf6ccff766f0 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1480ea51-f27a-40b0-bd15-9e81f0ff082d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,93418b7a-2ee0-418c-bc4b-ccba24431ac8 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f62b99bc-94e2-4a8b-b53e-ff540e4002f1 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fdd0e3ff-6017-45a4-9f81-46db0bd2542e -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5bf912da-470c-4c18-bc67-147501d8b0fd -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2faed04a-3138-4fc7-a89f-dd1612014997 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0f9956ca-c513-4f55-b703-90621be41c63 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ce5b5dc0-3eb5-48fd-afde-ae6ae9c0acc2 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0eb44a4c-5889-44ee-8721-0221eb8fbfb3 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,58713a01-f7af-4564-94da-6496cada7783 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a6be7415-4720-490b-92c5-4e48f839f518 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8275a541-c370-4c60-9e68-f9b3e9cf3e07 -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f91b54f6-2dc4-408c-a1c4-b3761022239d -CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,66364173-6727-4c03-ae62-cf56e3cbf63a -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a7c6eb01-4072-463f-bcb8-60fa4cacd128 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,810f7951-d318-40b5-9e5f-dd4e3e6f2e36 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,409ffea1-2684-4e3f-b6fc-c4b7726aab2c -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bdffc4b8-64d1-483a-a546-a3521a141dbf -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f290c75b-e3e2-4e3a-b6b2-24925afc534f -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ef5f1497-a169-4f48-bfea-ba3c23a2ffab -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c3e580ed-9640-4c81-aae1-9a0c01fd8a56 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e79b3a21-e130-41aa-8527-b96410fcbc77 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4099aafb-fe83-40bd-8cc4-08fa002fc51e -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0dd5819f-c8d5-4dc7-a050-3bf6674f35a7 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9e82a0be-1b04-4815-b8f3-8dea0f72e1b7 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b1356478-3d7b-49cd-9993-52a40be2427d -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3a5e4205-22a8-4498-8ed3-f543478c9de8 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4cc8db7a-6467-4921-ba47-915f5e1e7553 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1badab3b-0ff8-48ba-9738-3882e16452f2 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0018849599999999998,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f47937de-6eec-49c4-a387-9bd81f0a0ef5 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0018849599999999998,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bb6f98fa-2882-4a7d-ac97-4199160bf2a0 -CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,,0.0018849599999999998,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1c79500c-e5b0-4ea1-a77c-c33e5d8c3e71 -CH4,world,kg/m3,,I.1.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,e096778f-018f-4d63-b396-ac43b1202719 -CH4,world,kg/m3,,I.1.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,1d5e9d66-e3f9-4dd0-9121-ecb2201cb747 -CH4,world,kg/m3,,I.1.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,cd731689-3b80-4f3f-be57-1cf9135adf36 -CH4,world,kg/m3,,I.2.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,109a0939-c3f2-41ea-bf3a-ad412530e6a0 -CH4,world,kg/m3,,I.2.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3a1d0340-0b48-489b-a29b-1673bd401cfb -CH4,world,kg/m3,,I.2.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,96f32ce2-aa9d-4dd4-b377-1224249606bc -CH4,world,kg/m3,,I.3.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,7dfe4347-2d7b-46cf-af03-3be449909654 -CH4,world,kg/m3,,I.3.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,645163cd-0581-448a-b472-cf244d4a0df2 -CH4,world,kg/m3,,I.3.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,cb447b2d-37e7-4c36-b6de-8a009df76a35 -CH4,world,kg/m3,,I.4.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,cecf25d5-fd88-494d-9584-1ce2274dcecb -CH4,world,kg/m3,,I.4.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3908ba4a-e6ae-4d8f-9042-0e33d7ff5f4e -CH4,world,kg/m3,,I.4.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,be4933a3-1888-4dad-90be-81670da10ad7 -CH4,world,kg/m3,,I.5.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,b04bd6a7-ac60-47f0-89d6-d2fbd7b8977c -CH4,world,kg/m3,,I.5.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,0a4bd0d0-aa44-47c4-816a-dcc5f592aa57 -CH4,world,kg/m3,,I.5.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f3770837-a343-4650-ac6e-7a803cac7a91 -CH4,world,kg/m3,,I.6.1,,300.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,aecd9ead-8436-488c-a5d4-c5116f3fca2d -CH4,world,kg/m3,,I.6.1,,300.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,2dc92fd7-8507-4ecb-90b9-0c4da994b080 -CH4,world,kg/m3,,I.6.1,,300.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3bb34354-5d63-40e7-8718-52167aecedd1 -CH4,world,kg/m3,,I.1.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f33349d3-341f-4a31-b1ec-fa2a6912ae76 -CH4,world,kg/m3,,I.1.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,0a00a02c-d6a3-486b-9ff8-f2e178656599 -CH4,world,kg/m3,,I.1.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,2c78de45-9010-4808-bb61-79ce33aac558 -CH4,world,kg/m3,,I.2.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,aef22350-ec99-47f0-ada9-97b283fb3d37 -CH4,world,kg/m3,,I.2.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,61965089-8ebe-49af-8ae8-4b01d346bb21 -CH4,world,kg/m3,,I.2.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,7bb4f501-fa6e-4a92-99eb-22ed009e6558 -CH4,world,kg/m3,,I.3.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,2180782f-94dc-4446-8a13-d7cfda2b3616 -CH4,world,kg/m3,,I.3.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,edf3321f-6038-47b4-a64d-4bca1576544c -CH4,world,kg/m3,,I.3.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,0952db65-cf97-46df-b298-c441e7f19439 -CH4,world,kg/m3,,I.4.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,0dc789b7-1a05-46c7-8904-305b2c42c2db -CH4,world,kg/m3,,I.4.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,7eba97fc-bd8e-47c2-82ad-96a5f7635e53 -CH4,world,kg/m3,,I.4.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3fc8cab1-03bf-4dca-80ea-e9b8b896040a -CH4,world,kg/m3,,I.5.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,40a63475-508e-48bc-a0a6-7d1f280e81aa -CH4,world,kg/m3,,I.5.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,79405eed-bdd5-4608-828a-90a6d52cbff3 -CH4,world,kg/m3,,I.5.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,a8d0ea8e-a81e-4077-a60e-0f508f409813 -CH4,world,kg/m3,,I.6.1,,1000.0,fuel_combustion_consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,16a7cc63-7f62-4cc2-b118-7348539ae868 -CH4,world,kg/m3,,I.6.1,,1000.0,sampling_scaled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,b99dea68-56d6-4326-a3d7-b4908e99e850 -CH4,world,kg/m3,,I.6.1,,1000.0,modeled_data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,9a9e39f1-d24b-4448-8dd7-472da8fc6bd5 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,86cfac5d-aa49-4874-8a48-d9087a02eb13 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2f174f29-27e5-4bdc-a9c0-50d42b917f3c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2119ae3d-7284-4452-9aa6-1d61d4f33695 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,fb173361-6a00-4c19-ac67-f49a24fc7c40 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f07c0db3-364d-4566-be29-ea9c89e21366 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,e1158564-aacd-4230-88d7-804ad844dab1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5b7763a2-65ba-4bc6-8b92-6a2c2aacebd1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,377c1e57-4868-4dbd-9399-38bf2449d658 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,b1fc7bc2-d383-49a7-91bb-eace42d0ab73 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f84768f1-533f-45a2-b1cc-68ab1318a877 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,435639c3-fad9-45c9-a11e-bfae24c1304f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7f38f316-7f4e-4acf-9c8c-a3840e463454 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5f5a05e8-5c93-4e07-bf3c-3303bcb6beb1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,054ab3ac-0553-44ad-bad2-c1516e62bfc6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ff370159-eff3-40fa-98e7-f986d9d14bd6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c688eb7e-0123-4d9d-915f-3c7741ba9d9d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,91437516-603d-411d-81e0-9445e8f794dd -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,faad68be-895e-460d-b97d-14436fda893c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3fee5f88-ee86-4c91-9780-b064867fbd7e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c76fcb28-a6fc-48b2-b5da-ff11e1549931 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,452daa89-76ee-4d90-9b2a-14a55fdf648b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,47679cf7-a8f5-4f3f-9b2f-8691c2856542 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,eb3b03c2-4d42-4816-9ba3-bdd494d74b03 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5bd15d49-6d82-4885-8ba8-4408f96852a7 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,64546ede-f98c-4baf-aa56-e599c15e9395 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,e68a1a7b-ce1b-48c5-bd39-4c0db6fae077 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5bb1c782-945c-41eb-989d-88a05ebe4e0c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,dea4e2bd-8b81-4a50-85fe-68e6f989bd24 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5ac95b46-7e9d-4f94-b3bd-40b0cb1c7e4b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,79996b55-754f-4b6b-b0bb-8bd541a1e93f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1c7fa73f-3fe3-4b37-b082-2d9b1374001c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7b34695f-69bf-49ba-8417-65742a9eaf7b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,254dc41c-7c0c-4d92-b4aa-8283670bf78e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8fc00c96-b2f0-415d-a6a2-31d45cec4005 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,781914bc-9c01-4be6-8ea8-767bddf2eb03 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,36c2eb30-2745-47d3-a4d2-fd6458406191 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f03c02d4-70ed-4858-95af-bdb9a9859e2d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1091d66c-0da0-4084-9053-c72ef5518b72 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,61566321-7de9-4351-9f00-d003f984315b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f7ff334a-8505-414e-b2c2-733d73d434e0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1b71555c-9027-413b-8a7e-65e45126773e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,6fdf4417-bbda-4fbf-ab10-c170b603d6e3 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,6177bb27-cecf-4fcc-b8fa-40dc23d7138c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,350af37a-2e01-4aa5-9051-6222a873d1b3 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,b58fa81a-2a44-4785-9fa0-6caf9f96d129 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,6c1c59d8-9b03-4650-be1c-0468b29c7e32 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,541bd230-05c7-4ea4-aa09-f1bcf16f031f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1b65e027-05fe-4b4a-a81c-b9eb54dde0cf -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f0685b5c-4f00-4cad-908d-7fa5b64aaed0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7faac318-1990-4c8f-a50a-b6cfd21d1f9f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c8195baa-ae6b-462e-ae91-db7eeed7ff5e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,86bb48c8-0f98-4820-a53a-211fd4642048 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5ebfc9bb-e1b5-4aaf-b62c-4bb65279bd53 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ab435034-c4b9-4397-864e-defec7b17335 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f4f0cd3c-495f-426c-b200-4c9cc65070d0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,74697289-e2ee-4e2f-b4ba-8683db649c79 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,6c2479a7-dafd-4cc9-b54f-123936a55643 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,71f08401-6e48-486d-b8e5-1057856cd1b4 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5c34ce3e-4a1b-4974-9117-c2bf84073f71 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,262f80dd-2b70-4b24-8324-e01db67ed8f1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ce06d320-a6d0-4b6c-9587-45c5fdbe9513 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f0138461-a1db-4bdd-a1ab-7266c374721f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f385891e-82b4-4a96-849c-e0be36a1a5c7 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c4f28d45-f488-4589-ba0a-79ae3edfc377 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,1b7ceed3-738f-419f-9258-e876d6886739 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d25f1f67-122a-4cf8-9a5d-ad835c892099 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,16c8e285-5eaa-4b5d-bf24-e29895dc3ca8 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d912f072-6f8f-494b-a564-2f2fde17203e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,9e05057a-58bd-44e0-9598-a60b17da1efa -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,197310fb-7388-4840-b70e-4aa4344fda94 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,70fbc54e-e7cd-485a-840e-1534fe1982c9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,c091535e-a1c8-4b21-951d-0a674f7dd381 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,d6f9484f-1ab9-40a7-9b84-55a89b7996c3 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,7e9f569c-a598-481b-a34c-57ba2b9ac04e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,4ce1c1b8-a711-4abb-9d43-63a856a2dec9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,aac73245-5cbe-45dc-9d48-57e9d67d253b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,a098f2da-ec2a-448d-aadb-35512cb3136c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,0d96d721-b61a-4280-82eb-186fd70ff647 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,2228a353-d0dc-4752-91e4-e0007fdc9c84 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3eb2eb67-b44f-4008-899f-739b3dab923f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,681a1a8c-b2a6-4e17-a168-812d374ef359 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,86766a6a-726e-48aa-8125-70cb1056f124 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,70a20860-580c-4728-90d5-d4efd8409dae -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,ac8e605c-df7e-4f68-9822-4e08058eac25 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,0cfb6f94-b428-41e1-8106-3ff03c36b03d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,9fdad459-98c0-43e0-a1a4-db1b79aa373a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,5206db86-7aff-4239-ad8e-59ccf1b25d81 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel_combustion_consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,b3b2c2f0-18b0-45f4-958e-dd3b9cee5e6d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling_scaled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,dc9e2487-845a-4d7c-9671-f1de7d1b1f9c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled_data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,e5dc16b9-bc20-485b-a06b-4a91fd0f213e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,45f7d2ef-be30-4f71-994f-70ab724eb46b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,ab7bd093-d4a3-4117-b60f-c2bc0eb37f69 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,17ca72f5-71a8-44b1-8312-79a22d6a33bc -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,c34a7a70-3be6-40fb-8761-a43facdbc975 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,0b306a2f-a04c-49cd-aa97-e201f60848e9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,ebbf8452-03ac-4934-9787-66627cf53239 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,56c6391c-e408-4e4e-98ff-231f867a87a7 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,85ffaf5e-d7c9-4075-96b4-0051debb0005 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,322a5d80-9d6e-4ae6-b1bf-84cedd444dd9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,5acfbb96-ca58-4602-9bd7-9c9da973fea3 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,ca66c678-8629-46ea-8bf4-6366ea5f9dab -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,7d35d950-4d7b-47d8-9390-7edcb7582d76 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f86e0d80-627b-4739-a3ea-7bbb6b674bdc -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,453dd2ec-58dd-4c41-9680-d9c532b01ebe -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,e6992eb0-f1e1-4c45-985e-7724f658a2fe -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,c04745f1-9c4c-4476-aaa6-318aa843c11e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f379261d-9a22-4f0c-b689-5ca8600b3bd9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f3f2283-0934-4c41-b824-01fdddbdfcd6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,4b2df722-44fb-401b-8f11-b5831057c11e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,cc9c237d-d39b-4ad1-b06e-ebaaf904ad2a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,e770f3a2-e797-4e66-9b6f-3eaca94e901b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9b35c598-fc4a-46e7-b7dc-83fc2058217b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,597ab9ff-1cc5-4ead-a54b-9dace81e2dc1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,a1d0be5e-a0b9-43da-a403-d9b60db1632f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9432ea5f-06a6-4e54-8acd-ae9cfdce0aef -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9dbeef94-7062-410f-8603-f3273378890a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,51e4d75e-1fef-4c45-8db7-0e379e2c6db0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,7689ec71-4597-41ed-99cb-9055d46f152a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ebe0e80-3614-46b0-9ea8-0c267a4fecc1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,0951bf7c-e17a-47e1-955d-cdcaa138bce7 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,d83bbe7c-935b-47fa-aa7a-29fce08fdb95 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,d431c20e-7bfa-42e3-8f8d-68c1968e31be -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,e14f2f7a-ecd4-4226-a6bf-5cf28368be31 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,17409637-be52-4bec-bf21-f37df3789108 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,c8a0bfe1-c0e8-4466-92be-762a3b114fd1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,90abbdb5-2bb3-4938-8808-5afdc38500b0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,25914632-6612-4d3f-9cab-7100640eef76 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,28143cff-12ed-44e7-a4ea-77af031ca4a5 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,567cd747-228b-476f-ae6d-24a67d28f338 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,1edb7406-54c0-4f3b-8783-a877f3b3feed -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,1a82d197-ab33-49f3-8d7e-1130c620a679 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,9f6297fc-f844-4b80-b7b1-dfddf3bc7ab3 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8a11c8d4-af7d-4331-a83b-2bc069620b24 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,dfaa777a-17d2-43e0-a790-f8c052b168c4 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,dd1cf10c-b4dd-4b86-969e-70a83abfb73e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,0ffd1fd1-35bc-4cf0-84ea-d39689358906 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,12d70e43-dae8-4c2a-9106-a61f2699ccab -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,6e3bb826-d165-4e0f-8545-30b97e5f1e41 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,24c7aa06-3cbd-4ede-8fa4-a9c338ff19d5 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3b9dabf8-d024-4d5e-b020-1e4b9644e204 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,d56954ce-11d6-4167-adca-b18a7d587414 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,fuel_combustion_consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,4600d661-2ba6-4e7c-812b-474a01c4e5ac -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,sampling_scaled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,fdafc4b0-e0b2-46f5-bd9a-42ffd2a69fc6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,modeled_data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,dad13fe5-4cdf-40c6-9578-6b9cf501152d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d624799b-8aa4-401b-bdda-c05619f08108 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2ffc9220-af2a-4152-8838-1d39c153417a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d8b5aaf0-b844-444e-ad1f-1a09e0ebca4b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f26d6412-f158-4e6e-b473-5442dd896c17 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7af21a8d-2357-4778-a071-c57a953828f6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b7c1176e-2646-4cf7-9cec-4032ec32bb62 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,cf802fd7-6194-45e9-b2f1-4c78a4efebc7 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,dc171720-5c32-47b8-b92e-2322817b89f8 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e77cc021-aa93-48c4-bb82-7b4e996c4271 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b6b0827c-705f-44df-98ca-693a28bfbc41 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f1521ea9-35c7-45de-8fd1-ccb343730f1b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,38a6e4df-af3d-45a7-a38f-e9b30f57c811 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,602ca492-caec-45a0-9505-9126922242e4 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,84163d78-6ddb-41a8-84e2-a60ad2a8ac2a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1d54112f-505a-48bf-98e8-174c29711d80 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b513b710-f356-409c-9e67-6732ed03cf00 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,beef3bca-d33a-46bb-8bd4-79b93de94414 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,4f61d4eb-3e21-4e4e-baf5-9a0148c89ffe -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,9a5dba69-cf39-4151-93ae-23934dc53436 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,df9ef07d-48f7-413a-9575-4aca935bf7b0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,fc4a7548-a96b-44c1-810e-092cf173dcf8 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e3ac9fb6-2aae-4c32-b54a-08c88bdb92dd -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,33532977-53f0-45ad-a217-7b847061e01d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b001fdea-98e2-4e2a-8432-cc48aa60717c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,325589b5-dfca-4571-b7d1-e050fd719e31 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,26ac6af0-1a0a-4ddc-936f-3eb22db9b922 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1c42fdfc-c6f4-4ddd-a4a3-7edf93a74640 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,fb06812c-b979-4963-953f-34513ae00e87 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e0110bda-4159-44c7-809d-f07011c69188 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1ddaf177-0528-496e-ab0b-fa98e406a455 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,07532f7d-20b2-4d06-8148-d742f08d7c8f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d4dd9069-fddf-43e1-856b-03a946a45ad6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e8b52baa-1b9d-46ae-88d5-9d5fcf8626c2 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5432bb8a-8c6b-447f-8cde-97536b01ed0f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e9e38fad-f3b8-4323-bca0-67165e64296c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,700f90b4-b890-4193-a694-10049594be80 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,def6400c-2985-47ea-801a-7ad14bb9d8dd -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,74bf9c26-ce41-4bf5-861f-48bae2fd4612 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f2ab5afc-c40a-49aa-a780-954a24926211 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,a1b98b4a-fffe-4f23-a6d4-c5568de22dde -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,a89f4f3e-40c8-487b-8c78-2ad24673c4e6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,09b60705-686b-4bd2-b01f-d99f85f4a17d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1d65620f-33db-421f-b64f-59760c2ede81 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,681d6f34-b4eb-400d-a061-b78d246e6045 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d9de945d-5830-4406-8976-aac441f92092 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,0c38f9d0-7eb2-4bcf-8f3f-bd910372e565 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,563802d6-f1d8-453b-8881-03c7a0f89fb2 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,dfde579a-1afd-43b4-b51d-94773adce0d9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,bac7ec66-1e12-454e-92ba-37c058eb0c7f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1d4498d3-05a7-42bb-9f9e-38c8824cca99 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,e59dca8e-780f-4d11-936c-fd118a9d006e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,758d43c4-599f-4f4a-94e1-00478a76de31 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,57bbfbdd-8405-4dde-b9fb-5930d3d379ca -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,912ee523-a6bb-4a83-afb3-0e1a594db471 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,be4c30eb-7cc0-40a5-bf91-edc77e23b230 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,46d4a6f7-010b-4dcc-b72c-ff89a9780415 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,0783aa9e-143d-47eb-aff2-bb8785e323d9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,096fbdd7-685f-42aa-b11e-77f4e5286f14 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3a817a2d-b70c-4a07-856e-e169dbdc5c96 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,06d39ea9-014a-4270-808b-7f6e7597e994 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ebaf3396-5697-4a46-bcc3-83fe185eb30a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ff169057-c8e1-44f0-9572-ba0df0e00a91 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,77c9a1e6-7bee-49b3-b04b-47e7707742b0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ca4c1e93-8399-44ab-8b33-0323e5fa59d2 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7180cd66-5f68-48bc-953f-a95386aaf7d4 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,dd1125c1-9de9-4fbf-83db-3f8a83999ef7 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,5e4ca04d-3867-4c80-880c-7e1616d74fb3 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f96720e8-3218-4d72-8525-ffac719822fe -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,fc52ed86-7e4a-48fa-8234-1e5ea8ea345f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,60bac6df-3874-46b3-ba22-78e5d43407dd -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ee28da28-d862-4a3c-a710-3a63103a9188 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6ae4738e-5833-4414-a2de-b0e2ece8ba6f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,813b7ac1-9d88-4526-b132-8d69e99a06d6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,15e36543-8755-40d6-9a80-c0899f0d2dc0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,76bf39c1-80ee-4037-b80d-ee1872a7a499 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3b6bf031-1405-4eca-8198-5325db3a4b20 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,225b3f2f-d91b-44da-ae20-4e783bc4fa5f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2e5ae292-0944-44ba-8d3f-70245e079664 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,a98e117b-46a5-48af-a88b-824918f6114f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,55060223-8f27-48f1-8438-5442f1778cae -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ac18f521-2b6f-468c-a6d5-0100115824ad -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,b2ce3198-449a-43dc-9ed9-b2adc1004ade -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,06f343f3-b76f-4e38-af4b-ed51ae22c373 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2869f76b-0956-4584-ba5c-479e38b86300 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,0481d98d-a544-4404-8ba2-ebd83e6aaa29 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f0f5bc99-ec90-40a7-9207-78a76aa64043 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,988ac7dc-2da2-4429-937a-bdccb80e7025 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,65e81b6c-2210-421e-8f39-b35d640f0fc7 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,bd1f6fef-4c9e-4607-92a6-4b7559edcabb -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,af93e152-71c7-46d4-93c4-bff2240f3743 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,ef0ebedc-4bbf-488c-8f0c-54546a08e89a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,a96e3b32-3762-4aa8-a0d6-d8fcc055509c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,2c3ed7e4-2d6d-4260-99b1-184dd1c8f9e1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,981db5bc-2532-46c6-9736-161ebd7f1800 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3a29b7d5-4366-4bf4-bc88-6a5b9631905c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,43c0d887-db2b-48e3-a352-31e726946c46 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,25bf49f4-41b1-48d4-8b3f-d9ef0c66612b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,de9cde11-a63c-49c8-a8bc-2c8e41de1482 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,6086ac80-5056-473e-a378-839c8e29ee85 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,7d80179a-a094-4a34-be08-a1cedda1fee8 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f6e1bf2a-0b7d-4375-b414-468717b6b590 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,c7546959-36dc-4cb3-9ec3-179af02cd05e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,1e85ca46-dd07-48d6-a2bf-c9f29f3c2eed -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,d10d2a97-7db9-4119-b8d3-9def606983a2 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8c6ef8bf-b8fa-4410-8af8-3a51b3d835bc -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,749f6011-341f-4748-8313-958f8ddc6e63 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,88e4d772-6539-4f34-b3f4-a240665ec3ea -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,12ff874f-735a-4868-ac19-0472d357141e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,03669ef2-154d-44e2-88b2-29a793892e44 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,d2525ebb-fb69-4af0-b91f-4cd2da0bf37b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0bd88db8-bde3-4615-8dab-23d933791871 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5c6d7287-150f-40a0-9fd1-972ba7d02ee3 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,1a7f2c6e-4ce0-4303-b20f-aabd7a3d4d89 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,331a935a-95ab-4d13-b251-b5b386b34582 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,02c06758-652b-4e82-be81-b10e2a6b20c9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3491ee61-3d4f-42cf-9b15-c1bafd0d9003 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,608c1939-d7da-44e0-a2af-cfd7c76002cd -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7109efc6-fe24-4404-b198-cb772342e94f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c72813b2-4bc0-40c3-b843-3d1a51666b0d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8d31c1a5-b142-42ab-88c8-56359c6e2614 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,6cc72973-cfca-4546-8965-cfc6525532d0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,429ce392-5982-4bcb-b172-b9e12a0b644f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,487fe0a6-a6d6-438f-87da-5a32ca245147 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,46f9800c-9e6c-41e6-aded-50587a0fe01a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,44e55af4-fc58-4e37-b9c2-db03da553f8f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,04664c07-8345-449f-8d11-9cd62c6f255a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e59b9b0a-1145-49c9-a807-9d5872a84859 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,30b084a4-95be-4939-a53b-d368a8c8f906 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5c3197e4-a577-4839-86ac-7ea5175c92e6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5f412533-1823-40ae-954c-f21ac5265abf -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,b133d668-3b6f-41b7-a858-93cfe3efba14 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7e2f2b77-ca35-4077-929c-4eb449bc2b7a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8c812d89-220f-4b98-8c86-4d359af2e987 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,11f1d22c-b23b-4036-98f6-7aa6eb2b7762 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3e82eef0-286d-40cb-b9e7-f5929a724f50 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,206da86b-74f0-435e-beb7-2ddee493bf1c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4f114a1e-33cb-487d-9cf9-ee6126de5cf9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9c35cea0-6c15-4964-a4a4-0cdd3e31fbcf -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,aecc89f9-61ce-423a-a87f-ee786d5405db -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,2fc5d92f-7e1a-4f7d-8293-ab20c881f6a9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e9848bdb-9f5b-4fcb-841f-4539a0e26ea6 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,33ba41bc-3740-40a5-abe9-bf236733acbe -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5dcd7f7b-31ce-4fc5-a443-e38546695d4b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,95a4b35a-b10d-49e6-8013-ec848a19b385 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9a388933-4941-4427-9a7a-64ba344ab1af -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f9414dd1-68f1-4b95-b555-6336b55f7319 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4be04585-a5ea-4560-8802-0af452d511b8 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,9aa710af-3bbb-4c66-b93c-712312f0037d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,031a383e-9265-4842-a997-791444b88d48 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ff0e7d6-d82c-467d-8fa8-aa7ad523e39d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,d4997335-b38b-4302-9458-f624e911814b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7f6a1f18-3505-4618-8f03-9186f25fad46 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c00ea0d6-9159-49eb-888b-974b69b69f6b -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8b7e0a5d-68af-4100-87e7-ae4bf53a35ee -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,36ba6dd7-bd02-4a92-ae64-2dbb0a50abf0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,17e3078b-0c67-4219-b73a-6614ea395b64 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,e451ad37-be5b-40ac-8025-0288a7579009 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,04f52810-ca58-492b-8656-f973b3573d0c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0cffdae7-0c9e-45cc-910e-98e1028dd1ae -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,dcc3c654-b289-4d41-9008-d3c01c512f66 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,ca207275-38e0-4eb4-91a9-ec8ba9982e8e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,812eb121-256e-4f79-b69f-89f3268e4288 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,b5af9f0c-d000-4aed-a5f6-54f4c64205b9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,ad2ee45c-17e1-4ca8-a72a-efa3a0f1c075 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0537c95c-ee91-4c62-b6a3-082644aeb041 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,94593ecc-2b20-470b-926f-7c072e4d579c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,72c649b5-15c9-462a-a041-29adc30b097d -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,fd501275-174c-4266-8bd8-89e603d09cef -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,c6730eda-09e2-48a1-901d-76a90cbd8d4a -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,bf36b50d-d7e3-4c77-8645-1c0cfa0d52ed -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4e52d3e7-196b-4b32-a31c-f6aa9aff27ea -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0faa509d-eb71-4057-adbd-b78a91ddf705 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7780cc5a-b672-48a1-aef8-67115beca522 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,30f10fc0-2750-4797-8604-34bd1fc80fd0 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,0ca51907-0fe7-46cb-86fd-36bd74cbbd9f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,fe56e7c8-b6b4-4dd1-807a-fa6e2e8ed2a2 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,4c48c582-7bc2-4db4-a731-4cbaa59c3017 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,a7874d27-03bb-410b-9021-adb0d034a7df -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,5ca0f55d-0b4a-4ebf-9a7e-bfdca16e916f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,b38e7b8c-c3a8-476f-b941-24e324efb814 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,49a8d356-d26c-4af0-83fe-2a4a33911d5c -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,2b049d94-5968-4db3-b73d-d98895789010 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3a8d778f-a05b-4437-b23d-66f15fb55644 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,34301dcd-5304-4552-bcc4-7477ae5d49c1 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,7767440b-0f52-427a-9791-5af3a68fd327 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,87d6161c-5e7c-4c37-9e57-c6aa2ed58016 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,fdfae5ee-d64a-4865-b782-d153a3431d58 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,75389343-55a7-4d2b-afd8-02189a9ed78e -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,08236714-bd1c-42b8-b574-f28a819ce541 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,063e4e1d-7f43-47ba-98ab-2fc345dfc118 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,96248dbe-3f12-4377-9163-530f026688d4 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,56295a6b-6ed5-4437-a5ed-c4f9ce1861b4 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8c93c07c-4a35-402c-a3c7-f5dfe1d2ffe5 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,15ffa9e6-2d61-470f-a157-f4e1e079089f -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,52c1f1a4-f1b5-436b-96a2-9b9d63367bec -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,bed38849-5631-4f54-8a94-1d82cf4f9105 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,09a7d1be-b999-4f3d-b4fb-74e87e0b0ca9 -CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,44eeaa0c-c3df-4bf9-94e6-3dc00c032cbb -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3189219c-a4ca-4602-b817-9444ffe8f458 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,2ddc3b02-6e10-409c-b0eb-499ef77475c2 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,76f84ad6-9f3c-4d20-866d-2dbba52e9dc7 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,88324684-5a63-41ca-8a7f-8b50689547e7 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8ec84808-b959-427b-88a9-432c697c950f -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,9981488a-a48e-4728-98e4-c066843d6c2a -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8aeccb58-a68e-4e47-83e5-b6dd5fa008b3 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,064d5662-517d-46af-8be5-1602278314c6 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,0b3e3bdf-9f2e-4255-91d7-110a85c361cc -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,bb695414-56bb-4067-b2df-ee8105750510 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,e2e7b167-cf51-48cf-8ee7-8e06c8b8bf06 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,72bdaed3-3429-456b-8512-3166bb388995 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,76294642-a95e-4169-b7c8-6c5330d8bf1c -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,90ff198c-dc27-4918-9d64-4dcc82827723 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ca9eb5d4-4e5a-4c93-bdc7-d34a5d37006a -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a424e0e9-b7ea-4256-97cb-6bd6cecbb563 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,7bd229c1-d28c-4688-9e70-038a31825d56 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,aac33d0c-c5be-4730-b074-be2e394fb11e -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a65feb22-4683-493a-818f-2bf81e25fae5 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,cb06dffc-0b7d-416b-83b8-9b06be3131cc -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ad1e0638-21e5-4219-84b6-41e25d0d7bad -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fa59a060-8e8b-47c5-ac42-13d2fd8eb3dd -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,0e5c59b5-6397-4ef1-8716-fea6d68df58d -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a1fdd0f3-fd96-4f76-a36e-9a3f29c9c542 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,61f91a8d-5d2a-42ff-8f28-ee4c266e724d -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,32a9738a-48d3-4428-9a5f-457c585f34d1 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,8d045505-57b5-4505-a376-4195e43b6cfe -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,bc56bd71-4127-497e-ae3c-11c8c01a9d97 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,50b62092-9afd-4167-ae51-15098fac4665 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f8aedf01-e9f8-461f-a4e6-d95d925b46d8 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,96383396-b153-46ed-b384-06488f026bbe -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d2aa39d9-f0bd-4148-9ab8-dbd2c207d233 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3bb5e937-0f67-4b92-9f29-4dc6f4f10984 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,af25a11f-c7ca-4c69-8a18-e7d840e68b13 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,351e8d85-f848-449a-bb3b-c7b589d953b7 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,1d1c16e5-f0de-4f25-958f-20dbcff94ab4 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a08e80e7-e659-4195-b01d-b5a884967468 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,95b84db5-1be3-47bc-83d0-e04c8b7bd83b -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,df763eaa-b6e9-4c06-a24f-e1b42a04a928 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,782016b2-198a-4442-877a-7f0151e68881 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,852dcabc-a5b4-4edf-8790-8e75c4d7f3ba -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,a133814a-7500-43dd-b3c3-5a30988ee5d0 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,9e3ec8fe-48fc-42a1-933e-dbfffe34b91a -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,1e9e7fde-8c04-4381-a8df-73d15ad61378 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f26a6639-12c9-4b6d-ab37-be85e004c137 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d4f5cf3d-e1dc-4325-8524-ad738452292e -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,298e952c-1588-4672-8858-88c427244ac9 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,efef9698-9e25-4a4e-9b44-673cb0730bc3 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,84e3cc38-efdb-4662-885e-ef8c7c5878f4 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,13a274d3-7c03-47c3-b480-6362c307e2fb -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,49b83b90-b57b-4143-abba-c078462f4359 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,21e24358-b4d9-4b73-ac56-7ef13bb0b6eb -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,57041cd1-6a94-4f53-87f6-cc35d4887a23 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,ba37648b-c4d9-4890-96b2-fdfe46420ab5 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,6fd6c2ad-68f0-494c-beef-fd3f0b2e5d35 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,fd7c97a3-08a6-48a5-9f61-6229138d4e25 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f03a736c-6d2d-426c-992c-8410f6300054 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c485c909-1737-40ce-9d3b-e87ff1a71d47 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c91fc5a1-d0f0-4180-9fee-c4b6648301c5 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,79d6daef-f8e6-415e-8fcc-95d7405b51ea -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c3c9cb37-97b4-4b1f-a680-c1b0191acf2e -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,619b0966-f871-4fcc-88d2-a4e2299b1b04 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,7d516385-57a2-4a99-a638-6312b1fbd796 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,279c91f6-b6e3-4209-b552-9657b90bdf4a -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,561f00d7-e057-4581-b0b5-416031106aa1 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,19c2aeee-2dd5-4f9d-bf46-1d909e432d1c -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,4a29211e-d5b7-4d3f-95be-3977f4f36f46 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,9f7ad65b-ff9a-4fa6-8f0a-ff059fdd3e42 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d56de03a-8d32-4717-a2f4-e8631d2b8bf1 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,cac58d31-643a-4508-8029-a905c7fa58b9 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,45bfbddf-df66-4352-af03-a90c6c86972b -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,70bfee5e-e184-45dc-8439-8e77c9038661 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,57b11633-9664-478d-8e58-d29714d0bdc7 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,66eada3d-6b2c-4855-813b-fce2b3084be2 -CO2,Mexico,kg/m3,,I.1.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,4ec60e9b-bac1-4d01-b619-239b13960868 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,361d796d-cc4d-4c2d-a615-c0d0fdf8ee64 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,21eb05d3-6b96-4ae4-b4c9-7b5ffcce9097 -CO2,Mexico,kg/m3,,I.2.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,01b52eb1-ec9e-4f6c-bd8a-0ebf6e9348a8 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,3bacbdaa-a165-4a47-abf3-e0c1f5a7aea4 -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,d62d6f95-eca8-409b-931b-298e8abd2f1b -CO2,Mexico,kg/m3,,I.3.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,6e604e0b-e7c9-412b-a72b-404423bf13a0 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c23bd245-e6d1-4f1e-9431-5ec7c10bcddc -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,1e012059-a9e8-41fc-86e7-af75e85a5f84 -CO2,Mexico,kg/m3,,I.4.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,f53aa666-2ce0-4e73-a0d1-1e32faa8d4ab -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c562a505-cb32-489e-8414-dfb7a41449e7 -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,acc16ea6-58fc-46c4-b662-8ca2d9a8092d -CO2,Mexico,kg/m3,,I.5.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,c97e325a-3731-41db-a645-690be07c6335 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,85aece27-876f-433b-8b14-1fe6d102250d -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,7a3053fe-2d17-476d-9289-af736892dff4 -CO2,Mexico,kg/m3,,I.6.1,MX,2269.0825555025917,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:3.0079999999999997e-05, NCV_units:TJ/kg",,57ee50c5-ee88-4e4f-82b6-a85242296b4f -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,1ce6b82c-c1d0-40ff-92b6-b132a05b1a0b -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,ccfcdada-4b45-4872-b7c3-2d2448b6f9db -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,b773b78d-34e9-4830-9641-82a3b4aebda6 -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,0a5a561d-5903-47f5-995b-89e47205e59e -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9deb9b7b-5a56-4623-ad40-a4da9354b04b -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,daa851dc-c4e8-4092-b54c-20d6f3bf6f7b -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,218728ea-47b1-4dba-8268-9a975aac8387 -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,1b1ac3fa-8e82-44b8-8b7d-61d03f420483 -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,2f490b7c-1132-4c5e-988d-1cb9ef11d29b -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,24dcbed2-c0a2-4839-90dc-8a1a5f59b303 -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,fbefbac5-7b62-42a5-a50e-cd98a96993b6 -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,56f04e98-8553-4967-a776-0d9040b47a25 -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,b050d1b3-9d79-4289-9321-8961501f4d66 -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,6908de5b-d589-46e4-be6f-a9564027c863 -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,e397d9ee-251a-42db-880e-ad4982f2582b -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,50af44eb-c671-461f-9f21-de51f34c6ab7 -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,a42b85f2-0691-41e3-a44f-7b7d6d5865a5 -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,e14b3c12-b7a7-4bcb-9c00-aea65d78cd00 -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,38b408cd-657d-40ff-98a6-8f9cf491b890 -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,d7702dfa-2649-4063-8d38-9f54c69624ce -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,e4014aae-85bd-4643-a852-802ce5d8ae99 -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,618e5f17-de04-4f51-a765-fffc2b5d8643 -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9cdb07d2-4f3a-4207-9064-05b5cb8c81ca -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,f90c63ca-a71f-4b5c-a221-bc662657caa3 -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,eb1b2bc6-22dd-424e-a0ec-8e2504017f31 -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,cfab2e99-8ee1-4cc1-95d3-e056f6994e51 -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,4674504c-7ab8-4791-b059-80c47399f413 -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,5ef0e9e3-7786-42df-ae80-ed633853082c -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,977e9362-0db6-4f53-ab30-f25a598bb1cd -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,43bad3b2-9326-482d-a46a-00b3f0daa180 -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9fd5503d-c02d-4da0-a84f-36ddd41bf081 -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,58fc1486-f467-4a02-9281-c19ce217d3f5 -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,98092ef6-cdf7-4bab-8a63-995a49711e13 -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,fc2022eb-94e4-4a89-8dfa-0044fdb97f71 -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,f62a0eb5-3f17-408b-b8c5-16942698f5b6 -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,899fb552-ee40-4568-8b1e-6d4f1236d5db -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,3a4cf867-da37-472e-b255-c1bfb8d9f2a7 -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,3de94eb1-04be-40ff-9674-6c11450e5801 -CO2,Mexico,kg/m3,,I.1.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,cbd5ea76-1b72-4854-87ab-7ae36894fb2a -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,c2658f5c-1236-4660-bfae-387af412ee7e -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,c9303250-44f9-43ad-9790-20a44e34e0b6 -CO2,Mexico,kg/m3,,I.2.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,3483d065-bf83-4e34-8a84-f3b839164fc6 -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9b2b85ae-4b9b-47d2-92dd-d8d92abcedb2 -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,eac4ec4c-6df8-4af0-a6f1-9c8317422a85 -CO2,Mexico,kg/m3,,I.3.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,5e766c70-b19d-4df3-8559-08f6da4fd875 -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,e2ad2485-9319-412d-8821-79a4f9f5449c -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,4b39b8d6-d6cf-469e-9539-0cc01841f270 -CO2,Mexico,kg/m3,,I.4.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,9568e951-b3f9-4e53-ba1c-ccdcf6e5ddae -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,2910b1b8-51da-4b23-bc12-23121b616509 -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,774a1f47-5829-4a70-bb4e-90e1148fad45 -CO2,Mexico,kg/m3,,I.5.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,0cf0123c-2df8-4089-81f0-262ed80f5df3 -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,066ce29e-8152-4c29-8fc4-35aada2d9c1a -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,555cc36c-5103-4cf6-b28c-4d0f66e57ac8 -CO2,Mexico,kg/m3,,I.6.1,MX,1110.0086452799999,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:2.5319999999999998e-05, NCV_units:TJ/kg",,2b1be14f-d4a2-43d0-9592-09eea783cc25 -CO2,Mexico,kg/m3,,I.1.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,a5e22935-924a-47df-8f8d-6a388b94b016 -CO2,Mexico,kg/m3,,I.1.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,37965d33-029f-4b93-bdb1-32ac1781360f -CO2,Mexico,kg/m3,,I.1.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,885dc1fd-e862-48a8-afc6-686a24538bc0 -CO2,Mexico,kg/m3,,I.2.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,2ea14071-fb17-4299-baab-4a9418deba55 -CO2,Mexico,kg/m3,,I.2.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,07f6b4e9-cb91-42da-bf9d-3a949fbfd950 -CO2,Mexico,kg/m3,,I.2.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,8eef2865-0fc2-4358-8356-4fd70462c523 -CO2,Mexico,kg/m3,,I.3.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,15d7dca2-ffaf-4ecc-ab39-126b654321f5 -CO2,Mexico,kg/m3,,I.3.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,433bcfc3-9e9a-49ab-a12e-ee5f91f3bde5 -CO2,Mexico,kg/m3,,I.3.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,bcd65ef2-a36a-4d6f-b6fe-4f5d35aa42b5 -CO2,Mexico,kg/m3,,I.4.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,d900090f-a1fc-4303-b89f-0b1def71c782 -CO2,Mexico,kg/m3,,I.4.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,2b69edd1-361c-4490-93b5-7ad172785bb3 -CO2,Mexico,kg/m3,,I.4.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,6b786613-cb5e-476b-9f2e-dbde95502ff2 -CO2,Mexico,kg/m3,,I.5.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,2f0366aa-0a67-4e03-bb51-055da8654154 -CO2,Mexico,kg/m3,,I.5.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,342dc90c-3c14-4e41-88e3-7a8049da2d7f -CO2,Mexico,kg/m3,,I.5.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,ce37b48d-b803-43d9-ab39-3303124296cd -CO2,Mexico,kg/m3,,I.6.1,MX,84442.58,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,ccbff8ed-077e-4b75-ac23-7cbf3ddd37f9 -CO2,Mexico,kg/m3,,I.6.1,MX,84442.58,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,f0e78b7c-2e95-43a8-aba9-c373486a75d4 -CO2,Mexico,kg/m3,,I.6.1,MX,84442.58,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:3.637e-05, NCV_units:TJ/kg",,f4ca103b-6d35-45b3-a69f-edffc611f821 -CO2,Mexico,kg/m3,,I.1.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,a1c544d8-e58b-4593-9018-c43e536dc219 -CO2,Mexico,kg/m3,,I.1.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,0e34548d-60a6-4620-b12b-8175bf4e0649 -CO2,Mexico,kg/m3,,I.1.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,aa321c5e-30cd-45b2-ae4a-0fb6ae367554 -CO2,Mexico,kg/m3,,I.2.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,f87ff0a9-8ff4-4cb3-bb80-ede45aabaecd -CO2,Mexico,kg/m3,,I.2.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,23a76d22-f343-40d0-9f10-6231238c0fe6 -CO2,Mexico,kg/m3,,I.2.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,b2ce647b-d972-41cc-9a93-ddf86e1bb12f -CO2,Mexico,kg/m3,,I.3.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,6c35c325-f6b0-473c-a774-61129c2e54f7 -CO2,Mexico,kg/m3,,I.3.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,538ae0ce-fc42-4ded-ad9f-91e66ee1121e -CO2,Mexico,kg/m3,,I.3.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,517f680f-cd20-44f1-9f26-6ed9e7b39296 -CO2,Mexico,kg/m3,,I.4.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,988d30cf-970b-4832-bd3c-e629ee9a33aa -CO2,Mexico,kg/m3,,I.4.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,641a8a5c-ccdf-489e-9f40-5c35fa39296e -CO2,Mexico,kg/m3,,I.4.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,78e56afe-74a0-4a27-a60d-231a951fe44c -CO2,Mexico,kg/m3,,I.5.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,b306c107-60d5-4f39-8239-3f7d073efb48 -CO2,Mexico,kg/m3,,I.5.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,9f3f358e-8f52-4eb7-b12d-f4afbef6eadf -CO2,Mexico,kg/m3,,I.5.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,7d0bb11a-b6e2-459b-89ce-e3a7aac822bc -CO2,Mexico,kg/m3,,I.6.1,MX,77722.89,fuel_combustion_consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,992824ad-9139-4434-bd06-8c502103d526 -CO2,Mexico,kg/m3,,I.6.1,MX,77722.89,sampling_scaled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,faa3997f-9980-4148-9a19-c797cbe0e8b5 -CO2,Mexico,kg/m3,,I.6.1,MX,77722.89,modeled_data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:4.203e-05, NCV_units:TJ/kg",,a6fef482-eb63-4a23-9a67-9fcf904ddfa3 -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,0d465fa2-3c2f-4a18-82d4-489fa52d2d32 -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,b610ff63-6ef3-4a5a-a45c-7d1e9d850bb8 -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,5fcd0ca3-9c04-4a16-bd25-1c8c953f0663 -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,122ecbc7-c751-425b-9c53-f7ecad18fa8f -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,58ff82de-cf57-4581-b3e4-02c5c17bc3dc -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,91d31bf8-4b7a-4248-9813-63b52ef6e4cf -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,dc6cccb0-8e75-4354-8239-2b7f4fd9fc3a -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,cc52c4cb-0bbb-488b-80e4-ddd97e64d42e -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,fb25dcc1-f582-4201-9f55-d7ad8794b9b3 -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,dd0125fc-96ee-4634-96a8-2a932ea4c0e8 -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,19e104bb-950c-4616-bb41-2753678a0ca0 -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ffa8cba4-d91f-48b2-9e99-a6724fb511d8 -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,8e6f33c9-e479-4052-91c0-d0137bfb3d0c -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,59e7effa-bf0c-403f-9700-aa0681d565a7 -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,c293f440-bc9b-4f1f-8db8-141d5b479490 -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,9caaba82-457e-427e-8387-dea403501e6d -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,3b9c582e-2d14-44a2-8110-662e1f1f7734 -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,3672e186-cb15-438f-b7c8-414206b99c9c -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,d9b0d3f2-ffdd-470a-a959-b3e4407ad094 -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,9361254f-0f9d-45a0-b686-c81e26976833 -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,59738c32-45dc-4f6f-ad99-2fb186a9f704 -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,f10b6e2d-85a2-4c25-9ae2-14dcfaeef8b4 -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,251898f4-8aa2-4c19-be67-1925e854ab75 -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,9692d2b7-f1cf-44a1-a9ac-cab1a2c2e7d4 -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a8c83110-056a-4c03-99f2-94a3a55a6765 -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,960ea918-ef7c-4f5f-84dd-98e10a10c51f -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,73e0599e-5844-44b0-a347-ae7e3d442898 -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,4cbdcd76-a6bc-4de8-a7ca-5ab72abb79f9 -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,1d8ff927-7428-47c6-ac3a-ff31c7c03c49 -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,83098ee3-cf89-43ef-82fa-3d11d2cedbb1 -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,31dddfb9-8355-4736-931f-e74a1c61e260 -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,de7657d7-2c5f-402b-b7c4-30a0b4ae60e6 -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,be7f9dc5-d020-42bd-85ab-7985215354e5 -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,dca7485b-eae4-468e-98b3-65bece6a93cb -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,49c25dd3-09fc-4142-a761-bf42a5bd4131 -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,7375cdae-e018-49cb-801c-36e46769af4c -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,f2678b66-dc40-4070-94da-046592c2d646 -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,96f1bca4-24a2-46ed-aaa9-ce4f831d87b5 -CO2,Mexico,kg/m3,,I.1.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,b65043d2-5f54-40f4-a15a-655035a4f97f -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,e1ff3bd7-3435-49ec-8b6c-d5b22ddc3b47 -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,9b3b0918-cebf-4a07-9ab5-9627187a4cc7 -CO2,Mexico,kg/m3,,I.2.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,1599ddf5-5693-47f0-a837-49f8267934da -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,0c4dc58c-5dc9-4047-8546-4bff2a460ed0 -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,ccd78648-2e1c-4287-961e-69a7c1d1e76b -CO2,Mexico,kg/m3,,I.3.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a687ca77-3758-47ee-a688-0d96f7a49b5a -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,e7d7a39f-d9d2-44d5-bdd1-372e631bfd4e -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,35158126-6fcb-4586-a3a6-55d83b10a96a -CO2,Mexico,kg/m3,,I.4.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a7b46158-021b-4ce7-be7a-66f0dd0cfdaf -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,dbad5a9b-8c38-41cd-b583-81d37830c7aa -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,33e01fbc-5b29-40da-8fb3-b9c37b5eba64 -CO2,Mexico,kg/m3,,I.5.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,a0292bc9-aa44-4843-a56b-8e84db1ea610 -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,fuel_combustion_consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,96950b5c-14ff-4f45-b59c-50740514a75c -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,sampling_scaled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,2a18ea0e-ef60-470d-9da6-3f0346487300 -CO2,Mexico,kg/m3,,I.6.1,MX,2421.783630574,modeled_data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:4.522e-05, NCV_units:TJ/kg",,61515d94-2eee-478d-a0d2-27bbeaa6bed3 -CO2,Mexico,kg/m3,,I.1.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,3c813eb7-9f59-4998-b961-4fe452cf9ab5 -CO2,Mexico,kg/m3,,I.1.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,6c491cc5-7c75-450c-a445-eae8e189d29e -CO2,Mexico,kg/m3,,I.1.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,6b6f85ed-1b25-40b4-8291-e87301196457 -CO2,Mexico,kg/m3,,I.2.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,91445ec1-2b8b-47b4-801f-aec1d421454e -CO2,Mexico,kg/m3,,I.2.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,33417abc-ca3c-47c4-a7c3-e91cba2361ae -CO2,Mexico,kg/m3,,I.2.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,42e51cc8-3d65-44d4-b52c-da3967936deb -CO2,Mexico,kg/m3,,I.3.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,ccf4aedc-a92a-4a68-8181-8f0f7a1f85a6 -CO2,Mexico,kg/m3,,I.3.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,7d929503-38f2-4d96-81ca-b7d2c9aefd03 -CO2,Mexico,kg/m3,,I.3.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,b25e6ff4-e2f5-4673-8385-13bcf755c4a9 -CO2,Mexico,kg/m3,,I.4.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,de3e3f99-d397-4ca1-946a-1ca3c9e957da -CO2,Mexico,kg/m3,,I.4.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,3d24aef4-7683-450f-ac2d-0a332c318a0d -CO2,Mexico,kg/m3,,I.4.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,25147e4a-0c98-4b78-bdc7-83a6535e4059 -CO2,Mexico,kg/m3,,I.5.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,271e14fe-9152-496b-9bc1-f8b3a33628fb -CO2,Mexico,kg/m3,,I.5.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,416b5b69-cf8c-4c92-baec-b07f4415a5ec -CO2,Mexico,kg/m3,,I.5.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,7f9ea55a-0330-48a3-80bc-f196a5c507fc -CO2,Mexico,kg/m3,,I.6.1,MX,78225.78,fuel_combustion_consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,482a3817-e02d-4795-b675-c14b442c8b78 -CO2,Mexico,kg/m3,,I.6.1,MX,78225.78,sampling_scaled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,7faa8428-f03f-4e85-99f2-3c5bdf655a13 -CO2,Mexico,kg/m3,,I.6.1,MX,78225.78,modeled_data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:4.095e-05, NCV_units:TJ/kg",,c8272f26-199a-4cb9-a7cf-111e9f354f3c -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,85fff5ac-1481-480d-955e-88940a1f4dcd -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,07561d88-41a4-493e-83d9-109d66efaf96 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,114cd6ba-60af-4de6-aecd-8f398af8ffc3 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,2aaf1b82-1240-46f5-8c0a-fbb78e9b210b -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,017e36bc-46e4-4af8-801c-787782d5aba7 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,2c6319e7-5718-4b3a-b004-cf8904b30e9d -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,eb228a54-d478-4062-93ec-f3d457e77c40 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7a44e87e-3e2f-4d3c-a6a8-3a11d14e3580 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ed7a9216-2126-4a56-b342-69c538de2c81 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,a9c2ce52-f3a0-4ae3-a6b5-fabc2ae3eda2 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d98f6905-d68d-4344-88e2-2a122eb4c785 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9e792e5a-a35a-4ad9-8677-90ad921caf7b -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f2c49634-3548-4d32-8ca7-86f72581a6f6 -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,75fc3503-6374-430a-8222-bafc925f7f6c -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3347dfaa-e6ff-4280-ab56-f84e4e75472e -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c5cf9823-fa87-43d5-bc69-3091c58c00bc -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,291a2fa5-94a2-4c10-aa7a-3906d5c771f6 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,136437d0-9954-4fc2-8d7b-08663f75418c -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,fa8cb2c6-89aa-4598-b2a4-c1a2ea37dad9 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e325b22c-c7c9-4c28-9a35-f305d7efe439 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,21f0a0df-51e4-44eb-bf3b-d75cc1f1193f -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,561928e3-a3e7-40a0-b8fb-a60843c27202 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,168907a6-2f54-419a-9529-a45910768133 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e500aa73-2e38-4166-906c-9c4879cd07e1 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,a3581efe-9c3d-4f43-93f6-5b40062fa44c -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e40566eb-4bfe-457c-8458-47f3e6c006a4 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7f404b17-86aa-4043-9c10-e1f21a43154d -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,733c6491-75a0-488f-8b12-4360ace0c1c2 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,474a8a4a-e080-4c4b-b2db-86d84e5fdaa5 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ac612498-b96a-4e1f-a8c1-363da2a56359 -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5dd211b2-2bf4-46ed-9d39-65fe8b8194af -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,abb0240e-ea0e-438c-b887-d9f44928e7f4 -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,bdcdc3e8-100c-4037-b9af-c0074d2da7e1 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,18b7628a-5c9c-45f5-9ba2-8c1d91f8e745 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,226df84d-9075-4257-81ae-1ebb2473e193 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,12f86120-01cb-4c53-ad97-4914269257ff -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,80e1f509-7fa9-49a1-9bb7-630dbf818544 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,2ddd94b7-7bf0-4d03-bacd-e3219baba1df -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7e0734b7-ffd9-4e80-a592-15d1f1d33a62 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9706f844-7403-4e49-b38d-78985552a03e -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3106bd9b-3f6c-4c49-b3b3-6e2bdcaa2194 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d13274eb-5926-4af3-ab5f-69f5796c6628 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4a18455a-37db-4798-9456-6fe02f4663d5 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ad3a96b9-32de-4b98-82c1-0a0fe2828bd5 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,75988206-cc02-42b8-8ed6-f803150f00d1 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,1fd00564-e4eb-4419-8ba3-2cfd3037b48f -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,80057adf-d358-496c-9594-cf14ca3209b3 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,576f25c2-77d6-4e5b-adaf-b790bfb62275 -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,52985590-d55e-4c27-bf33-4f6e844d2dce -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,4feab31e-5595-4c7a-a7d4-4c8901cfdfab -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f9b378eb-1572-4b26-b635-108baa471602 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f882ad1f-60e7-41e5-87f9-c2a67f41460c -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e21058d4-81a2-4198-ad21-c1a6fee9a24e -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7f2e10aa-6b81-457b-8949-aa690fc5bd49 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,371ae880-7e1e-4cb1-9a8c-9d270255ac18 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9788ea75-2a9c-4fa3-a1f1-ecb0dcd87b1b -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,b9d08a91-1f2a-468f-901d-040b835009c8 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,fad2c24f-8b24-487d-a568-54c901d54bab -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,bdbc0b88-398a-417a-a4ed-3927eb8b7dde -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,8535324f-b4cb-40fd-bb8d-44f0bbf5d13d -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,20352992-316b-460f-b802-63e19b8813d3 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,902f57d4-f296-4ccc-bdcf-2590c25c25f2 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,7aed1f8c-aed0-4acb-9510-a45dc924e12e -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,429a5312-63b7-4d10-a6aa-9c4ac1083976 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c2526af9-b586-416c-b866-99e88bf55c83 -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5e1d2b7c-1312-4e01-92d3-2c54d6b9ae97 -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,a67a40b2-6212-42b2-ba4c-3fe9df8580ec -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,b2264910-e98d-4e85-a76c-3878f288afd7 -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,8f2f69ae-a50b-4a26-9d36-b1c25d4c6038 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9e1fcbf7-e2a3-4dbf-99e1-683f475ebc8b -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,9b657a37-80df-4a6e-914f-61842d9feea9 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,11a1a400-cf15-4193-a6d2-bd43a8379571 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3f5b734b-5c78-4f13-94c1-c10c72a80686 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d6d52790-1b6e-402e-8389-68ad30a02ff9 -CO2,Mexico,kg/m3,,I.1.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,e16e0840-3945-4770-84c0-1f3b02e98e43 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,6e5cecec-566c-4ec1-b991-436e4cde2e46 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,c7094d8d-7acc-497b-9c1c-4749c6a68893 -CO2,Mexico,kg/m3,,I.2.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3611c6bc-b06c-4a52-bc5a-b88ae9849eb6 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,5e6a7dcc-2b59-40d0-8923-5dded01e9241 -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3ae212ad-ee11-45a9-a190-e9138fbc578e -CO2,Mexico,kg/m3,,I.3.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,15cac2cf-65bc-4c39-9424-c6794f0e867a -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,3784bbda-77a5-4372-89f5-5e8c365ebaab -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d0fc6373-eb99-4327-ac3e-97188fef049f -CO2,Mexico,kg/m3,,I.4.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,cef5b272-b307-4e91-8068-280725c446ac -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,692c841c-6b69-403d-a6e4-675e89225f79 -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,80bbb348-1013-4f2f-bf00-ead86cf5ab17 -CO2,Mexico,kg/m3,,I.5.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,f015b2ee-7d89-494a-9b1f-9dc92372c473 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,d15d58a8-d1e1-4151-8db2-c232489c84eb -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,fea8a039-36d8-442d-beaf-cdc7b472e0d7 -CO2,Mexico,kg/m3,,I.6.1,MX,2.2783882699608,modeled_data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:4.674e-05, NCV_units:TJ/kg",,ba88be36-e500-4e54-a974-dba2591a26b2 -CO2,Mexico,kg/m3,,I.7.1,MX,2.350636947918,fuel_combustion_consumption,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,2f16cb51-09db-43c4-a331-f7737d078145 -CO2,Mexico,kg/m3,,I.7.1,MX,2.350636947918,sampling_scaled_data,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,d7a0e751-0f06-4871-862b-83b2e149cd3b -CO2,Mexico,kg/m3,,I.7.1,MX,2.350636947918,modeled_data,"fuel_type:Refinery Gas, density_value:0.885, density_units:kg/m3, NCV_value:4.565999999999999e-05, NCV_units:TJ/kg",,14f9ba7a-f752-494e-94b8-a6fff4967621 -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,44a6cc3d-83cb-44d4-bab8-15ab50fd1203 -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,29837565-93d2-4fdc-b8e4-c465a0071992 -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,4a5b4a85-d4a2-45b9-a75e-27d2e8545603 -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,6724d91e-7562-493d-a22c-a6641d0519cb -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,49779b4e-e327-4512-8dcd-721f2768657e -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,28c8612a-0465-4f85-a670-4c33b340cdc2 -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,acf93cf2-36d7-4cbd-a6dc-5209073eb558 -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,89aa70a8-fccc-49e0-bab0-2af9331915cc -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,c3cac8b5-a45f-44fa-97d0-6c6952831807 -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,8c03183d-e2da-4820-8c1a-471b08ce7936 -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,85343b4b-1547-4fcd-b768-efca220aedec -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,ffd371ee-233d-4c61-9006-64a34d062011 -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,f25a26b7-cb4b-465a-a524-2fdf7a5c834e -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,d09d3606-d7a5-441d-a7e5-8eb7585aed34 -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,d0b5b361-b089-40a5-99d4-d5af1c38bbac -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,dcbd8dd6-dba4-40c7-be6b-c9e3fc5275aa -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,4fd83ba3-8646-4605-ab3c-a17ff387aa2d -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,1b52b37b-5210-459f-a60c-4a418ebc8c4a -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,db1e3076-ca62-4cb2-96a6-38356de8f81c -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,40cd0e2e-b36b-4826-9ea3-36cafa9660ff -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,1046343a-f56e-46ee-8160-e51295835a7b -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a0f0cdef-1a7d-4203-9f71-a310647ecc0a -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,f8e263e0-6cc8-4a39-8e3a-6c08f186a3dc -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,ac017a59-7279-4778-9ec6-bc64853c0ba2 -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,ff4a5e51-862f-4664-bac1-fa77242864eb -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,74c5309d-c33c-4c01-825d-0420812bcd64 -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,5ea45a66-ac33-4e42-b5cd-adaa0a7e9037 -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a91fdb00-e7fb-493c-9110-8f40d01bc58f -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,d516d1f7-7d04-4da0-bef3-d85a8323540b -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,6af06ce0-c066-4a41-8b88-23f7e1ad6788 -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,220baadb-3235-4c75-a320-e8ce15d237fa -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,bf7b9717-8a4c-4561-bb40-a6e2c2f90c91 -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,cfe5acc5-3822-49ad-82ef-2ff58a984093 -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,2c126085-32f3-430a-a662-1255183e89d6 -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,8aa1c24d-4bb3-49fc-8b64-2949b44d939d -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,163a582f-1bb0-47a6-9487-766b73938709 -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,2ce6c7f6-555a-4c7e-8686-0df5306f588a -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,a16cfad4-4625-4d5d-b30c-c00cacd401a2 -CO2,Mexico,kg/m3,,I.1.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,95851d43-0c1c-4f4f-adc2-2c219d265c75 -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,ce5a017c-ef0b-43c8-9e28-9d71ea01605a -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,1bc6ff8d-5a6f-473f-8f44-3311f13680d4 -CO2,Mexico,kg/m3,,I.2.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,e2373cce-586d-4c02-a03a-e3ae613231bf -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,74f47c95-be99-4b85-b4c8-d68987a33c37 -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,f6b9f6aa-1e79-4e86-84be-04283216340e -CO2,Mexico,kg/m3,,I.3.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,4dda62c9-dd42-420d-a004-86cc68aebf5c -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,7d2cf051-95a1-4e58-bc7a-ef226868bb35 -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,47db1d2a-7422-4926-ab12-df04129fd845 -CO2,Mexico,kg/m3,,I.4.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,316bd8c8-8bad-413f-940f-fc649ee83345 -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,b8a0a558-833f-4299-a3d4-2c707038a40a -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,b5e5af58-e69d-4dbe-a7c2-7df7bf6003b6 -CO2,Mexico,kg/m3,,I.5.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,532127d4-77ee-4c21-9228-56245efd8388 -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,178822d4-1b25-4c86-8f94-a65dc509766b -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,058f9029-cf92-4084-9b49-7e1c14daf48a -CO2,Mexico,kg/m3,,I.6.1,MX,5.888284261439999,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:4.615999999999999e-05, NCV_units:TJ/kg",,e5db7da2-8a6f-4b7e-a596-85df1034c455 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.0985991206399994,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,29f68a9d-3e59-4bc0-920c-155ae3a29fcb -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.0985991206399994,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,c9d072b7-3137-436a-8a2b-79e4583950aa -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.0985991206399994,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,80ab2b8d-82ad-40e1-91d6-5c09a69451df -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.0985991206399994,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,520de724-f2bf-4367-9f12-45f4acad2286 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.0985991206399994,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,b795d7f5-546f-460e-9602-95507d167632 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.0985991206399994,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,376d62a8-168c-48e7-8d51-3632e1141adc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.0985991206399994,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,c7274e41-4fa6-4370-a833-1c26d5cead3e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.0985991206399994,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,c673adff-4b78-46ac-a56f-280c0470b9ea -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.0985991206399994,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,037c9624-e908-460d-a2f8-f3c4b23cec16 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.0985991206399994,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,5ed7fce9-0b45-4efd-9a84-887fe0b95db1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.0985991206399994,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,4147da41-6909-46a7-a859-c5ae0a0cbe23 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.0985991206399994,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,de2ac499-6fe3-47c2-bab1-00e74aee89e3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.0985991206399994,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,d50e5124-0153-4ef4-bfe3-df1c1f1fcf89 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.0985991206399994,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,846e0c9a-3cf4-43c3-b2b0-ee9915e72218 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.0985991206399994,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,28196f43-1c98-48ca-8cbe-95ff1693918b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.0985991206399994,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,238672a3-a0c1-4a16-bcf5-a142a0bb04ef -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.0985991206399994,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,0ba28291-8771-4403-9f57-dabae7ddf3a4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.0985991206399994,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,bc4807e8-50aa-47c2-9278-219f48f89e2e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1209246432,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,49703fcd-7833-4b2d-8fa3-1b4ae2828658 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1209246432,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,bcadb830-635b-43f9-ac71-563b578f9ac6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1209246432,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,407f4132-c1ca-4576-906c-a5c7060c3b90 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1209246432,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,ca479df6-aa77-482e-b859-f54550bf5b95 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1209246432,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,1f520b1f-a934-4d6e-b686-f1768c82af31 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1209246432,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f0dda40d-2309-4d94-8371-067f5c8072ae -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1209246432,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f00bd575-72b9-49d5-bd06-152ecf275000 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1209246432,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,2a1f664b-d887-41c8-acb8-27f074b30f66 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1209246432,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,c28eb868-5ba3-4e75-9cb4-6dc026f54bf4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1209246432,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,d31c4188-4e3f-4d7e-88b1-f7f330f1f6be -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1209246432,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,e54b9ad2-a5c3-4da7-b819-7dec93d07fce -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1209246432,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,a516d535-0116-411b-99a5-afee079671f5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1209246432,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,c36e9a46-6508-4ff7-9f09-6225708256bf -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1209246432,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,05a2638b-dc53-43a4-8b62-1997408c9ec5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1209246432,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,250cb8ee-c093-4668-9d50-1878c55fb5e2 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1209246432,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,08966480-9238-408a-9d87-a7f6fb649441 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1209246432,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,d4835ef2-201b-47ba-a8fc-438553c273b9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1209246432,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,e4972a48-94a3-44fe-9ac7-09a0fa3d9a73 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1526513465599995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f5942bf2-f844-4976-a25a-bc139dd59823 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1526513465599995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,cee771ac-3505-4121-8834-0ea102ead79d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1526513465599995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,4841792f-1ba7-49c1-9bbc-9ec7ce6332dd -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1526513465599995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,5b9afe67-cef6-4d91-849e-d207b4a1696d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1526513465599995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,df776b7d-ebc6-478f-9cd1-eea7e4da4353 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1526513465599995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,859976e1-123d-4e20-8b37-819fd63909a0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1526513465599995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,fbd477eb-4df8-4a07-ba96-160f16e11a30 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1526513465599995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,eabd08b1-1db5-43fa-b28a-a3ea19250de1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1526513465599995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8778c053-1226-4785-b1ad-056b59e2b5e9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1526513465599995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,a7e16ae0-d6a8-42da-bca2-1da7e02cdc09 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1526513465599995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,381df8b2-b6d2-4c19-a063-1876f9096445 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1526513465599995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,89be543c-6081-44cd-ae7c-06b07df54fe3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1526513465599995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,57a83a9e-eea3-4e79-a0bf-47b203678351 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1526513465599995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,5c8fd66c-1113-41bc-8ae0-03df983a5b6d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1526513465599995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,eb08b7c4-1f03-4ac1-b6c0-14b978e7f306 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1526513465599995,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,d60be85f-8c16-43d2-9601-e3619f40136f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1526513465599995,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,df1190f3-ac28-4f59-8703-ef8e88cdf6ab -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1526513465599995,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,07c8ba1a-3858-4ff3-98ec-1674bb1b817a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1755518927999997,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,9f1ca624-de5c-45e9-a63d-28d82bd21506 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1755518927999997,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,b8518c80-ccea-4a9f-aeef-37cfefa5225f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1755518927999997,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,e8a30e25-90f8-4ca6-9b75-a76f5818ad48 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1755518927999997,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,99c72e70-76ef-4040-a078-6cf0f5e27139 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1755518927999997,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3b59ec25-2abc-431e-a4ba-27466943c3c9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1755518927999997,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,11b50167-388b-4706-8eea-604dfc104532 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1755518927999997,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,55ea1abe-f326-4e78-9de4-8416cb4d3006 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1755518927999997,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,177f0153-5481-4b18-96bd-9f0b06d97d91 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1755518927999997,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,59e75932-e468-4999-a995-a9656d1423b7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1755518927999997,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,948047c9-ae53-473f-954c-d1d17b662c31 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1755518927999997,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8d93b273-d67f-4ebe-bb3f-c13fac96e914 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1755518927999997,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,a1ab48d3-a70a-4142-bab3-464802ff42c3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1755518927999997,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,485c4029-f560-44b9-90c8-4844d14ed884 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1755518927999997,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,9f81e611-0af0-431f-aff5-41dd3cb580d2 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1755518927999997,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,c0505bcb-bff0-45ee-8155-c3489139b3cc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1755518927999997,fuel_combustion_consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8bd87665-7b71-4fb4-b6ee-46383ec754ac -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1755518927999997,sampling_scaled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,35ff5c6a-ea8c-4b0d-b9b8-1fadc6bd462b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1755518927999997,modeled_data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,dda7877b-623a-4090-b485-37b21b9551b0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.092884564,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,657871b2-5ef1-446d-a1bf-55f74da742af -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.092884564,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,839a0d2a-589f-4761-8e31-b915b47f3a81 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,3.092884564,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,99eef70c-3cb7-4023-be17-4d06c4346535 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.092884564,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,fc69518c-b6d6-4db2-a472-e9ef7e568e43 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.092884564,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ee25ade-0f02-4257-be73-42090038c071 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,3.092884564,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,46b75db9-9b6b-4b85-a1fe-0dc92a3ec9d4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.092884564,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,c21beab9-e969-4a4c-8944-2ae0837d8826 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.092884564,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,55ab2713-3114-4230-9a62-259ebd4bd1e7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,3.092884564,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,0ee7b12f-fb2d-4ec5-8dc6-3a8c604aac43 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.092884564,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,5ac74153-f111-4e3d-b629-d0fe0cc40309 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.092884564,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,69878314-5464-4987-b21a-e81c1d37a674 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,3.092884564,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,9c976a16-6ced-4f3d-89ac-7b6ff6198de7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.092884564,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,25f29712-805e-4225-807f-0fc31eb4d13e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.092884564,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,24113ebf-528c-48c4-b0b5-231ee84e685e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,3.092884564,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,db643ee5-b4bf-4d8a-9100-6e7a6015bf4c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.092884564,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,eac5636e-698c-4055-ade7-914ffe779031 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.092884564,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,565c97be-f7d3-4114-b550-f7b2d150d729 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,3.092884564,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,267960d1-66eb-43c0-9b28-a7ad407e3a8b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.889089844666666,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,df2b4f78-a7b7-4ddc-8c13-31c48f43217f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.889089844666666,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,93e8f2a8-6a7b-4ea3-8252-16c112141ef4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.889089844666666,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e6cad43c-153b-424d-8684-855f7c7be408 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.889089844666666,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,d66fe760-cf7d-4fa3-948b-1ef68d5bb160 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.889089844666666,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,89094c90-e05b-4a30-83e6-a1cc2c882102 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.889089844666666,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3261e7f2-119e-45a4-b65b-b1aa2747c0b7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.889089844666666,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c6317dcc-6043-4b2e-8d26-67b153bafae1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.889089844666666,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,1496c938-2df2-499c-90cc-b9401f372668 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.889089844666666,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,105e00d4-745f-4293-9680-f985574776f5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.889089844666666,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ea9aaf6-d14d-4d4e-b9f9-635e7fce600f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.889089844666666,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e9a52833-0679-469c-ae80-46ef543b6f5a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.889089844666666,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,20c0b765-bc2f-4024-a85b-07d78ff50f55 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.889089844666666,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,14ee8335-8f9a-4e3d-b13b-f5e404e56f74 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.889089844666666,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,078862f7-d35f-4ca0-9b89-a2db512e5c0b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.889089844666666,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,da9f1aea-11c2-4fa3-8c6c-7bfed5dfcb53 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.889089844666666,fuel_combustion_consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,e8328d74-2b67-4006-88a3-648bd27dc0fc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.889089844666666,sampling_scaled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,71a41016-705d-4858-a5f1-fbe0dc8022b8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.889089844666666,modeled_data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,c7125af0-9772-4956-b081-9626a816bd52 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.2358367999999997,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8f94ee31-a946-4d6a-877a-3cc486974252 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.2358367999999997,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f26faaf-adb3-40f3-a59d-efd48cd9175b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.2358367999999997,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,fda1a911-5951-4516-9fec-69a86d337a8d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.2358367999999997,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8f511155-b782-4cdd-bff4-4848872ae29a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.2358367999999997,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,db1fc021-8217-4bdb-ab79-567c4ff09fc9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.2358367999999997,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,a7c27f1d-559c-42e7-b7b0-dbea6e0977a8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.2358367999999997,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,ae9cc72f-4de7-4b61-94f2-7a833108b32e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.2358367999999997,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,295e06b0-ac98-45cc-90dc-0d35f1be6569 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.2358367999999997,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,1f14d886-15c6-42dd-8913-99aafa44700b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.2358367999999997,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,df1464cd-d425-4eb8-8a85-7287c57d7d4c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.2358367999999997,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,24deea3e-df1b-4769-aa27-ca7bd33d9fb3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.2358367999999997,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,577cda4d-8318-49d3-988b-d7a581643f71 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.2358367999999997,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f2941070-6aa3-4759-93a0-4fd6c1a8b726 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.2358367999999997,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,30f0950d-4075-4e0d-9a47-9acefaae196a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.2358367999999997,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,04dce22a-7550-4d38-ad02-435acbeca573 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.2358367999999997,fuel_combustion_consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,0d665b71-10e7-4567-a47b-07b1f8619908 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.2358367999999997,sampling_scaled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f81b70fb-65c1-4724-99fc-df99c3030ca3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.2358367999999997,modeled_data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,777efd3b-15cb-4708-9120-176066b1f21b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0008414102400000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,84443ccb-3012-4ddf-828f-63fcc74074b9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0008414102400000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,183a300f-da39-4d04-9669-ebd3c56c5a4a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0008414102400000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,cc32da4e-a119-4a3a-9fc2-34c990f80fc8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0008414102400000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,331eb1f8-fa81-4a66-a1f4-434d94838173 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0008414102400000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,a00f5e43-5e42-41cc-af05-3bb743892008 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0008414102400000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,7f46b6c0-9714-4fd5-810a-4660ed59d956 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0008414102400000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,4188b283-1247-4a22-8d4f-4a61219b8916 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0008414102400000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,cbe038b0-d1d5-4137-a570-d7b210bd3923 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0008414102400000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,0c7b6d02-d662-4b12-afcb-b43fd74ac643 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0008414102400000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,10a1d113-833f-4a39-b940-d954dade4aa0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0008414102400000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,1b97f34b-12ea-4ff1-97ec-174fa57986d9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0008414102400000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,fdd8440f-1cdf-4678-858d-7948b55dfd8f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0008414102400000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,853a90fc-d567-451c-a716-5728e37a2bc9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0008414102400000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,3d8a1ad4-17f7-4146-b579-22aa5a5040e0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0008414102400000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,a3d2678a-2080-44cb-8f46-14bac3d11618 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0008414102400000001,fuel_combustion_consumption,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,77ccc0fb-012f-4fd0-8fa6-7017edba8046 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0008414102400000001,sampling_scaled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,5ffd2dc6-ce4d-4596-8032-8db9162f3ad8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0008414102400000001,modeled_data,"fuel_type:Coke Oven Gas, density_value:0.545, density_units:kg/m3, NCV_value:38.7, NCV_units:TJ/Gg",,3bd6af3f-d930-49d8-b508-f1e20e975c4f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,292e20fa-ee97-4aae-860f-dc2d0fd5b8de -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,2d43dbf6-a4ac-4ac9-8ec1-17dc0c4147fc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,460e2a7b-c7f6-48e4-b1df-09e32cbe1927 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,d599f9e6-a654-4763-aae6-f259eb0ca054 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,00fd39df-0625-41fc-85bb-d6c421ccc98f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,82fb3ac3-ecbb-4869-9347-5271f2600d15 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,a17b0dc9-198e-4869-913f-c498d8d7c3aa -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,dd4c19ee-c4cb-46b0-b5ae-cc48f4cebfc5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,7aa9ee38-72fc-4b5b-9ead-72050ab94b0c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,6cdf2f4c-67b0-4bb7-ba92-d17dee6fbcf6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,01611750-fab9-4a96-bc83-a470d99cdbba -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,5a78877a-fe1e-4c2e-89f3-604a5d9d819f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,c69914e9-15c2-445c-aab3-a9530adb133a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,f17ee503-6fa2-4c5a-ac09-e25327d165c5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,590760d3-afe9-4df5-bd31-f8c6a3273436 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,fuel_combustion_consumption,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,1b6a07e1-56b9-43b3-875f-03e82626dd3b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,sampling_scaled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,fb71d5f4-3aeb-41ee-90e5-d8843a8b33ba -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,153.85333333333332,modeled_data,"fuel_type:Oxygen Steel Furnace Gas, density_value:nan, density_units:nan, NCV_value:7.06, NCV_units:TJ/Gg",,5bb64aa1-19f0-4401-9828-d7324c1a4d99 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3550383999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e77098f6-2403-41bc-8020-36db7f72f2ea -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3550383999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,711cef1c-31f8-43b9-bf1a-18792c9304d3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.3550383999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,dbbea217-7077-45dd-ad8d-a00e0983995b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3550383999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,97c567cc-0748-4ca8-b5e7-ad54b7677a2c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3550383999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,73e26495-993b-4220-b4a3-74ccf920b66e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.3550383999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,e9c9d9cc-56cf-4bca-ac7e-aac0a8e6cb8f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3550383999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,329b6b63-ce88-4f99-8a06-19a5d284ba66 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3550383999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,da2e6c3f-b78a-4d84-bbb5-eb05d09be197 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.3550383999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8860ce1d-3f50-4f92-a3eb-e18c3ee44b9e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3550383999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,b0a9718c-571a-41a6-bb71-f31e036078d1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3550383999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,4f1e1f55-dfac-4239-b0fa-e8b20c03683c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.3550383999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,22a227c7-fdd1-4d83-be94-64b4ba37e7a3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3550383999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,dc4932bc-548a-44a2-b633-21a47aa6d25e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3550383999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,483c34ee-666b-4097-a0fa-f18fe3c3ea18 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.3550383999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,ce117f95-15ca-4b36-adcb-6cac7ca0db41 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3550383999999998,fuel_combustion_consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,bb516b5d-5bd3-411b-96fb-289ff47d2201 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3550383999999998,sampling_scaled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,365a1c10-f3b3-4378-8f28-4bc2334c0e6e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.3550383999999998,modeled_data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,bb426864-2ddc-48f7-80b1-f76b7a4d3051 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.476427333333333,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,3692a862-0684-40f2-a060-82723f233590 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.476427333333333,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,f9c344a3-aab7-4336-b12a-81aa1fdfedfe -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.476427333333333,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,7ae55358-b36c-4dd3-982a-30376ad6e0e2 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.476427333333333,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,2ad200b8-a314-4b31-b134-bbe7458ad512 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.476427333333333,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,cea72457-8007-47c0-b0aa-1542b592cf11 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.476427333333333,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,10a255bd-7690-4397-8d5f-6c049dc46402 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.476427333333333,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,3b9440fc-db26-4bf8-9c20-15d4ca098281 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.476427333333333,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,b6e4d5ea-6426-46f8-acc7-233562f091e4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.476427333333333,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,6da83e1f-97c1-4d77-befc-f789d9a11edc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.476427333333333,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,d8d448dd-ce72-4b6f-8142-4de1dc499bab -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.476427333333333,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,c6d6f813-024f-4bb2-ab7f-7543b0f77fc7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.476427333333333,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,e45bcf2a-a83e-41ac-8641-d7384ca99266 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.476427333333333,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,86e58c6d-7f06-4471-8664-691cf87b7f51 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.476427333333333,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,2ef52a87-fb69-4f3e-bef5-878fa6c52c53 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.476427333333333,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,1fbc52d3-cf28-45a5-9409-3e9057eef48d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.476427333333333,fuel_combustion_consumption,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,9121a307-5dfa-4785-bfa7-69bab4e14a45 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.476427333333333,sampling_scaled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,dc195334-3804-48ae-87eb-0e7eea479d6c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.476427333333333,modeled_data,"fuel_type:Natural Gas Liquids -(NGLs), density_value:500.0, density_units:kg/m3, NCV_value:44.2, NCV_units:TJ/Gg",,3e678e3c-816f-4526-9652-10a107318b8e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2489544733333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2d8fd9e4-2971-465b-a772-7bf2431757ee -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2489544733333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,727583b6-64e6-4f8f-9df2-aef2e3425f88 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.2489544733333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,e4bbf084-bde4-4a7c-a2b2-0fbef943c339 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2489544733333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,e58ef14c-275d-43a3-b7f7-034ea9bfc746 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2489544733333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8221bf4f-3c50-49a8-aad3-0589f1a67cfb -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.2489544733333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8a2f19d8-af8a-4aba-8912-b922ed25b4c3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2489544733333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,5e139009-e7d5-4a86-a9a1-4a364b99d5c1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2489544733333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,9d6b58c1-eacc-477d-93bf-c72fd492b3fd -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.2489544733333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,e68d0eea-aa8b-4295-9890-aba3aeaafc87 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2489544733333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,22ac4411-5a76-4ded-8068-0bbb582f2dec -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2489544733333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2da3f814-a02e-4da4-b204-60a3f24bc65f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.2489544733333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,aeef0ae6-65c8-495d-a65e-da88ce826fe9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2489544733333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,98392a88-9a19-4acc-a84c-e1bebe4ec068 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2489544733333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,2f6d444d-935c-4795-b96f-37f17b7336b6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.2489544733333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,c337e268-1f2f-4820-96f3-1b100b15e4aa -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2489544733333333,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,e7eefd46-e47f-4d59-996b-6d4b81e6a071 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2489544733333333,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,bce7d614-c011-41a8-be4d-65f06e4100bc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.2489544733333333,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,b03ab9df-f595-49f2-a498-e7f25c2e51f3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1900653720000003,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,083b7d8c-64bb-4bbe-be86-34a4b7dc07bf -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1900653720000003,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,68e6645f-b27f-44f1-bc02-6601eba02a07 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1900653720000003,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,4271dcde-a418-4766-913b-dbfb69ca5aca -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1900653720000003,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,55e3829e-ae00-439e-a3d0-f6dd97c659e3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1900653720000003,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,7cf6ed71-edbf-4036-8cd2-146a660bbdc5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1900653720000003,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,0f1f3799-40df-48d3-b448-d092557f1b40 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1900653720000003,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,60a2df78-c929-41a1-96f2-647676dc9621 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1900653720000003,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,eab5a513-943e-41da-9484-dc17a94beea6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1900653720000003,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,96ffb6ff-3b9e-4d76-9079-63ee60f1052d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1900653720000003,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,e47be324-db94-4ae0-bc87-96e74d836545 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1900653720000003,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,34bc42ab-a354-4fab-981a-6a7e5701a809 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1900653720000003,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,b0c55812-6f5f-4b5b-b03d-c88f9f508262 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1900653720000003,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,f0c1b943-e8a9-4fb3-b4e9-79bb4000370e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1900653720000003,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,0a31edbe-3860-456c-8c3a-77ffd573fd95 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1900653720000003,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,ec58ca8a-03b0-4af8-a2ce-210a606fc28b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1900653720000003,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,86257bd7-018d-424f-8c20-2b4b4a49874a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1900653720000003,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,ebc43ebc-aa96-4977-8f3f-9fc9e2740aa6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1900653720000003,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.314e-05, NCV_units:TJ/kg",,72cdcb91-014a-4a00-8a07-6ae370c93cb7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1722971086666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b47eddb8-4ab3-47fa-879d-4ecabc772224 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1722971086666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,5cdc579d-638c-4950-b336-a9232e4fced1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.1722971086666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,d3d2d7f9-75ec-4704-8413-8b03e1fdae86 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1722971086666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,436f9347-e219-4e31-9f9f-b681f8d4e2ac -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1722971086666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,6975d533-e7bf-42c6-ad55-54487d7c093b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.1722971086666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,0b84a918-0460-46a0-a6ec-767916709b6a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1722971086666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,8934d85e-e0c0-448b-9070-47384c239b05 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1722971086666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,b3611906-67cb-4911-ad1a-b3742aaec09a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.1722971086666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,243ed293-2c1f-438c-bd46-88706b16a942 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1722971086666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,ab7daf79-3781-4ad6-9710-4527be34d5ca -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1722971086666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,4fb6de5a-0df2-427b-a8c2-76f819bbafd0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.1722971086666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,e29ec9c0-a640-4ccb-aa62-2ba2838e3cef -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1722971086666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,33e36e7a-baaf-409a-b292-af468d6c3ac3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1722971086666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,5d632e1f-7bc1-4db6-b0d7-084a10c35dc6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.1722971086666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,10ac54b6-176a-41e8-acf4-5e966fc977ec -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1722971086666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,4714dc7e-0f91-4ec4-9baf-4665d9969e0a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1722971086666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,aabe76ea-af17-4916-b72a-59f48ebb9646 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.1722971086666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.2789999999999995e-05, NCV_units:TJ/kg",,87d7104f-e0f6-4034-a41f-0f493983eeec -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.184481060666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,1a7578f2-15bc-4149-b699-140b030f8da5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.184481060666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,3994a9fc-01fd-4703-a465-16c66764e96d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.184481060666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,f3c0ec6c-c737-4780-bb54-d823623972e9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.184481060666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,205f122c-b863-4878-986f-f69b5a94aa1b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.184481060666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,4b1c84b3-0ee3-413e-bd15-b7bb14f9d3d7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.184481060666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,1059ba10-7f7b-49d7-9e38-9cdc3735c47f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.184481060666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,f93c9fb4-c38f-4f02-acc9-ce2223a0ba0e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.184481060666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,4d796ac6-077f-4f9b-bdb7-45635abc1287 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.184481060666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,25cf0ca5-a0f3-4409-808d-a0529117aa11 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.184481060666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,f5710000-0da6-4358-ab91-f1386700e20f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.184481060666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,edc3077f-a8ee-4e5f-829b-b68f1c42389e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.184481060666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,fe99e87a-c60c-4b19-8167-73e2572ca986 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.184481060666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,e33e6174-8b69-4d8a-b209-28afdf136e68 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.184481060666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,58a3aac1-03c1-40bf-a29f-684e0196abde -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.184481060666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,856ffb08-e594-4a0d-87bf-35a8fd7932e1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.184481060666667,fuel_combustion_consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,372b9bb3-ab2e-4a04-84ca-8defb81c4e79 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.184481060666667,sampling_scaled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,9ad4ab06-ffb4-47c1-9917-f86105264b7b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.184481060666667,modeled_data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:4.303e-05, NCV_units:TJ/kg",,01de5380-37f8-4824-ba66-1ffbd35a50f9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.37474237,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,dcd29452-bbaa-4c13-8f3a-af8403ed31f5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.37474237,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,c8f5a241-20a3-4eb6-8c07-955848613c7a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.37474237,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,afbb5626-85d2-4bc4-9be7-80b854ca5f91 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.37474237,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,1b864bf9-d5a1-436e-8210-86c5009582b3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.37474237,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,d8723130-9429-4aa8-9623-ac719e4a5723 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.37474237,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,9c3349b8-e316-4287-80ab-5f80f1af6add -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.37474237,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,ecfcdcd8-0011-4181-8470-86f324c87a4d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.37474237,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,549130ff-ad2f-4c96-87bb-79bf089113dc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.37474237,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,4a5fdbc0-a55c-49c7-8df9-dfe5468039e4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.37474237,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,4d107141-a78b-4aa6-8928-f1c7e624ced4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.37474237,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,8061505b-e290-486d-adc9-4d8dbaae0fa7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.37474237,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,052b2d9b-3cc1-4502-8830-f969f9e1381c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.37474237,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,e32e0183-f1b8-4970-a649-a9bab39a8406 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.37474237,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,cacc2a37-8aa6-4324-a22a-52b1899b4433 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.37474237,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,f2222826-9db9-4225-b6de-89050c40b24c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.37474237,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,99509b21-84b1-4700-bd0f-c470260d0c9a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.37474237,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,e26cc642-0fa6-47fb-ba7b-d68dd8fde775 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.37474237,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:44.1, NCV_units:TJ/Gg",,b028256a-53da-40eb-b8ab-e07fbe931d8c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.339740498333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,7db62799-f6e1-4ed6-9a50-d7210251f8ce -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.339740498333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,db6ffe9f-1636-44e4-8f83-2f5a3b5b216e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.339740498333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,6148dbe9-f867-4b35-842e-a9d5f961f89c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.339740498333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,17b856af-b1d5-4fc6-8bcb-375fa59b9180 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.339740498333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,a55f63c2-c349-4666-bc8c-86bc93f58d49 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.339740498333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,3bbcbe3d-77a7-4a51-855a-4a4e1d9719b7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.339740498333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,64deec20-43b9-4262-9d3b-f09b19387c57 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.339740498333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,b0a118a8-7dd2-4208-9e3f-a772a241583e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.339740498333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,6ecb5362-32b2-4d6a-b0dd-40739d9f3bd0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.339740498333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,83670181-97e8-416d-a50e-0bbcedd9c164 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.339740498333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,c1bf549d-bb1e-4f0c-95f4-5fdc4c1b7de7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.339740498333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,be3bb5d5-190d-4dba-afa0-11a9a8c8eb43 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.339740498333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,04b233e4-9fd3-4e03-9a85-a49bddd4d8c1 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.339740498333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,1551105c-0dd6-4f11-867b-74a10c3439ba -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.339740498333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,543a9154-b02f-4c90-988a-e6fc7d38e1be -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.339740498333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,fa287a82-9a2d-4249-9945-6fd26bf40026 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.339740498333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,c74fd102-c1b8-4890-8571-7229855d6b34 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.339740498333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.345e-05, NCV_units:TJ/kg",,b7bfefc6-73d1-495e-bd79-3e46fcf7f9c6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.345663892,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,ff01f6d3-01d3-4f8d-b80b-69eeb8e5a31c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.345663892,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,ddb51bb0-8b37-4496-afa2-3a7a048a9004 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.345663892,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,088935b2-8a50-4aae-beb1-85571dbf1f3f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.345663892,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,902a2259-78c6-46a3-91a7-18ebdbd9f9be -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.345663892,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,2e7443cf-30bb-457a-adbd-8a0fe71d52f9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.345663892,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,fe486aea-b0ed-4d55-8ab0-757523e79fdd -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.345663892,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,f080a5d8-5edd-4ba2-a1ac-7ad4d2f34003 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.345663892,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,83deafb3-1c1c-48dd-ad61-dbcef0373c1b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.345663892,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,4de8320c-cfa9-476c-b3f6-f833777fc081 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.345663892,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,53e01f15-8755-4c73-9d59-13b09bb34723 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.345663892,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,cf72424e-9efb-43b2-b795-e10b2ed2a2a4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.345663892,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,3546cd85-ad10-44fd-bf1e-b78c5fa59b04 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.345663892,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,097b32a2-c33e-40cf-9308-1dad99edca0e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.345663892,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,b51b3056-5dbe-4344-9379-369986f3e98a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.345663892,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,018a7a3d-b54d-49ba-b422-e63b3e9af0eb -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.345663892,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,04f2325d-ecd9-4ed3-aa9b-1fcb1443c06b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.345663892,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,94c735d5-5b4e-4a05-809d-63df1d65a242 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.345663892,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.356e-05, NCV_units:TJ/kg",,b78ace76-0ec6-45bd-bde2-6a2507d2d5d5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.344586911333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,4df7ffd7-08d7-46ee-9204-2e93b9dd1b71 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.344586911333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,4f617c24-3364-4130-a098-09b97a5a970f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,2.344586911333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,72c8e4b1-f252-4d68-9e96-e695c8649a40 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.344586911333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,886021ad-a7ed-4dce-9ea7-8760db57c1b7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.344586911333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,40b522d0-7f8c-4d56-84b6-349383f3f5e3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,2.344586911333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,8b8e0e87-d831-45b3-81c0-e332d8abf9a3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.344586911333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,b22b8d4f-10d3-427b-b7cb-8e7de914c759 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.344586911333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,ea40e31b-2944-464d-ad30-3c6195c0b411 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,2.344586911333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,6db1a21c-e83d-46f3-b270-10fc4dabb2af -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.344586911333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,a985e2ce-3ef3-4f96-ae9e-5d5ce200bcf6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.344586911333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,c74b6b3e-ef4d-474b-a369-8dcd0eaa82b6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,2.344586911333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,03a4abd1-4753-46d9-988a-7772c957b1e4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.344586911333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,007c211e-9817-422a-a33a-12aa6d72bd64 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.344586911333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,f2f2a77a-2d7e-42b5-ae82-9e2deace7abc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,2.344586911333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,cbe3e420-4263-42f9-b5f0-7283152f1539 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.344586911333333,fuel_combustion_consumption,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,3968f13c-62cc-45fd-a3b0-94413c1c5933 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.344586911333333,sampling_scaled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,6fe6f7dc-69f5-41cf-b325-0ee4446ac2dc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,2.344586911333333,modeled_data,"fuel_type:Jet Kerosene, density_value:790.0, density_units:kg/m3, NCV_value:4.354e-05, NCV_units:TJ/kg",,35e625e8-9ece-4e97-b1b7-baff6620bb1a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,4.1227603120000005,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,53a3d50e-d394-4adc-958c-b99798bd243b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,4.1227603120000005,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,0b7489af-83ef-4382-a99c-c884d29b51b7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,4.1227603120000005,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,e27b1ad8-5e76-444e-9779-dc406fa29426 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,4.1227603120000005,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,ddc4cdb4-3a61-4451-9a16-6552e347a3fc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,4.1227603120000005,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,701c4b65-f050-4c4a-8d24-7ab9790c057e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,4.1227603120000005,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,b66f441a-204f-48ff-b215-f1f1520e7f09 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,4.1227603120000005,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,abef793e-4842-47f2-acd8-895dd8ca169d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,4.1227603120000005,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,2f0aed62-b4f6-4efc-8cdc-f47151987d60 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,4.1227603120000005,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,6645ad76-8077-4751-b9ed-ae7d1228bedb -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,4.1227603120000005,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,4d783807-ffa0-4dd1-9a3f-b5f781b3bd19 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,4.1227603120000005,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,adfa3721-40f1-4a25-a3a9-5f0140eea34d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,4.1227603120000005,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,800dc40d-28ee-4e30-84b8-5f1645692ac4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,4.1227603120000005,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,64b9c52a-9471-4cc7-a6bc-e7b209f9e55f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,4.1227603120000005,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,0e549159-3768-4b34-80b8-2f3e05499bfd -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,4.1227603120000005,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,f0a94d4a-28a4-4c27-a2f6-b086dc3d7a47 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,4.1227603120000005,fuel_combustion_consumption,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,4d9cf850-2396-47fa-9472-fcd149980bc5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,4.1227603120000005,sampling_scaled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,baf8770b-1195-4a07-9acb-2488331a6e6e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,4.1227603120000005,modeled_data,"fuel_type:Bitumen, density_value:1346.0, density_units:kg/m3, NCV_value:40.2, NCV_units:TJ/Gg",,44ce54f2-77fb-40cd-925e-90a0c77f007b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.5331159799999998,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,b0983169-a4a0-4fa6-828b-711952c8e89e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.5331159799999998,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,669c08c3-b70c-461f-bf2a-ad1a51b113b0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,1.5331159799999998,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,58868a7e-1e7e-4b1b-b57b-c12f10e5cf6b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.5331159799999998,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,e93c474f-e931-4982-8476-a75cd9152c39 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.5331159799999998,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,e4743f29-fcd9-4755-bfd1-32b85e65edd3 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,1.5331159799999998,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,7728f9bf-ef63-49a6-a9ed-0b96e973a4e8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.5331159799999998,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,cc6ed490-cb4d-4343-8d1f-a83992920cb0 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.5331159799999998,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,0e938b3e-733a-439e-a0f2-55006c67ab65 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,1.5331159799999998,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,b83fcffd-1a42-43fa-a637-ba9f7bed2a3d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.5331159799999998,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,b71ce947-2b75-4972-9fac-451450087a3c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.5331159799999998,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,a95b3d3d-4a99-4d7d-a982-e9252e929b8a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,1.5331159799999998,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,175f613c-6f71-4402-ac2e-0006e0b5be89 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.5331159799999998,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,4663a93f-7e17-4b29-9303-d96768815204 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.5331159799999998,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,b8ecae8a-7bd2-49d5-8e1f-7a3cf21e8ca9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,1.5331159799999998,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,5ad0c048-5904-4034-9e99-3a66068bd63a -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.5331159799999998,fuel_combustion_consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,4998ecfa-cb53-405b-acc6-7ff79a55a5e7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.5331159799999998,sampling_scaled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,7b659612-374e-4dac-86df-7470fc42ae31 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,1.5331159799999998,modeled_data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:47.3, NCV_units:TJ/Gg",,f1ed0c02-00c0-45c0-ab06-0613879b395c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0017087839999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d34d4eb2-0e17-474c-bb0d-6a13b6025088 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0017087839999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3c23e4a8-12c2-460b-9ccc-2ccfac3f84a5 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0017087839999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b90a5c5f-7fca-408f-a28d-5b270bfa985b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0017087839999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,dd47e525-ff34-42fa-a326-3350fa9489d4 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0017087839999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6f998ce4-771c-44f9-a634-4712a294ce4f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0017087839999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d21e91e2-a7e2-432a-894c-7ae9991fe87e -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0017087839999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,71d83d4d-4c74-4ed1-a6b5-eb140474e69d -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0017087839999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c085e3a9-c644-4d3c-86a3-eba78e1f0001 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0017087839999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a32c6b3b-42a7-4103-aa79-d462b309b71c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0017087839999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3aa6aa15-16f9-499d-800c-2e5af889a94c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0017087839999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0579e4d0-07b3-4b01-a97c-a6633adb1b51 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0017087839999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7332a72f-8938-4d66-bb56-eb80d33e5157 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0017087839999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,48e2f44c-12f4-48c8-b547-5a505c5bbf3b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0017087839999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cb3ab30a-b94d-4c6a-b5ff-2dfe58b45504 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0017087839999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,800eec37-c3e4-4b07-9245-762adb70834f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0017087839999999997,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,75e69a0d-c556-449a-a16e-2aef4314ab92 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0017087839999999997,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6fd7ac35-ed33-4ebd-af0b-4ffca3b0b2e6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0017087839999999997,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5eb6a4df-c1b0-4a41-a547-d4ecce73de4b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0017137119999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,03939a7a-659c-4fc8-84da-3ee53b063fb7 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0017137119999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e8628089-d323-4782-bc5f-295db4d192c9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.1.1,JP,0.0017137119999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d5cc7b84-0076-4042-b3ac-3c03feac9ae9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0017137119999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a099f468-a34c-4266-a639-21acbe74a3d8 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0017137119999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d57960df-b6ef-489b-b7e7-77c355c82cbc -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.2.1,JP,0.0017137119999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7c5839be-da4a-40ee-b802-c3be891b728c -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0017137119999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f415220a-9cdd-4c33-bd90-1ef54710be2b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0017137119999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a9bdf26a-d3e1-4bb0-9776-20e9499ae469 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.3.1,JP,0.0017137119999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b7f260a4-3804-4a8e-89a1-3154aa804088 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0017137119999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1fca1949-57ac-497a-9237-5ab6b379c23b -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0017137119999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fdff8121-62d6-4177-b0b1-aa44a09cc0fe -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.4.1,JP,0.0017137119999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1240d39f-0b52-426e-8531-6f0dc3230a69 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0017137119999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2859ec3a-7f96-4702-ac0f-c2a9e7c79256 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0017137119999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2536be20-0b3c-491c-8895-a3cb50f489f9 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.5.1,JP,0.0017137119999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fbecaa05-ace0-4278-ad63-787c68572ad6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0017137119999999996,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6abaa67c-5bdf-4e67-aa77-c53fd50b1b1f -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0017137119999999996,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,67e9dceb-a2f7-4c4b-b0e8-8a17c165eeb6 -CO2,Japan,kg/m3,"Agency for Natural Resources and Energy (2020), Explanation on Standard Calorific Values and Carbon Emission Factors for Fuel Combustion Revised in FY2018.",I.6.1,JP,0.0017137119999999996,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f28690b8-a5e6-469a-8a89-8fe87c136b5f -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1a446e2d-0346-47db-9274-497bdcb59d21 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fbc40836-5cf5-430d-8aa9-c2eacd5c78a3 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b98c2b21-bfdc-4d5d-8aaa-598a2fbb86e8 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0ff4af2f-fa2f-486a-9950-49cb1144f504 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fe409ba4-3431-46e6-9475-c0ba8348841f -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1637da27-7258-4b6e-aa26-afc0dba3f2cd -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5df72163-07ca-49a6-8793-198208f4d263 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b1a879c1-2630-4cc5-b250-7d106e2e9ef3 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5cc91299-01ee-48ae-b3a9-a720d97c4918 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,00bd4c83-e4d8-4c88-9023-943f0bfdcaaf -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1b8129f1-67bf-4b6c-a36c-87d402557ef2 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d32856ba-3fba-4f6e-a2c2-c3b75e5b09fc -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,dde828e5-510b-4db8-ab24-7c5a2044d902 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1b2aadff-a99b-4d7a-ab9a-c6bb9daaee0a -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,410169e6-e028-4205-9699-86695a6dc6f6 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1f1056bb-42a9-4fc8-928e-5a8c4aac4125 -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,052e8541-99cb-491c-98a4-ae59ad17070b -CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6974dd50-9d6e-4bfd-9cda-d9abb026f69c -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.000506352,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,39a9befe-b020-4dee-af62-78d5912897f2 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.000506352,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1b47ce00-a649-4774-9d74-518c968cf80c -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.000506352,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8baa8445-c6ba-45f5-9b52-c76c99a4c836 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.000506352,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5be1e8d4-9753-4abe-ab63-8eb334806976 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.000506352,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9394f13b-3a53-4dd5-a092-e2bb01c2687a -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.000506352,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b6c3f6b1-10ae-4157-a6dc-475397b6629b -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.000506352,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cc4b86db-73cd-476a-bcb5-5d15f1bd22ab -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.000506352,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d48d23fd-f053-431d-8ece-0b0b01e7473b -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.000506352,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c9f1e679-4069-43e1-b8d1-23ca99f7301e -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.000506352,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,708e52c9-b0d0-4bbc-870d-7e19a4dc5ad7 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.000506352,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e1c832b8-e2ad-400f-964b-7fb66aefcd34 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.000506352,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,79df61b4-28ad-4022-bcd7-01d1c58325f6 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.000506352,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,735727a7-16ca-4074-ae5f-e2ca2ba6ec63 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.000506352,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f78f8a19-a27d-4833-9aa7-79f9584b38f3 -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.000506352,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1d454a8f-8a55-4122-a505-c8b66c969f9f -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.000506352,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c3c61f4b-05a9-4bb7-9dcd-13568b947b3b -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.000506352,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8d4d2d29-cd2a-4284-9ad4-ead62c61ffdf -CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.000506352,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,118ea678-f413-4890-ac04-926ab4763e2a -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ebf13121-ec64-4326-9134-d48dc566ad47 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,eec480b4-1720-4d01-b14d-5a1cfa99b7a6 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,JP,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4694d95a-cee2-45eb-8cbf-e528b3326653 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2df9cefa-ca33-49f7-86a2-1dc5aab821c2 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c0e48983-35ce-4c52-a65c-52f8889f097d -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,JP,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,52065757-c42f-4611-9371-7076096637d1 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,332af0d6-8be7-429a-9152-97daeb17df7a -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,32891f10-964e-4fdf-aa8f-60b1b31fa9a2 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,JP,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bf8499a3-1fa1-47ed-9491-3fd58b1d6fdf -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bde991cd-de19-4a8d-b80c-42afc548e4c2 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,36b84d72-6119-4122-ad4a-5de5ffc3ce3e -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,JP,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,67af8d95-0212-41c1-a89c-bcfdfc860dd8 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c030d9c6-d724-4b3b-afdb-0cdbff044645 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,fde548b9-3a95-469c-831e-bba14f0b24aa -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,JP,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a0193405-56a7-4827-943c-75289eb07d19 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0005053439999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a2b2983e-960f-410f-ada4-fe0ed0267b62 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0005053439999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f69a5abe-fc52-48d0-8a51-75a4f7633486 -CO2,Japan,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,JP,0.0005053439999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,19104acf-574b-42d9-aa70-ffa2e7071d49 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,feb364c8-68e4-4617-9631-cb1fb2d4d788 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6853d560-1ca5-449a-9da7-f0f2101577e3 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,349d460c-9ca8-4341-b4ec-8c52abb3d441 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a19b731a-199f-426d-8838-bf1e5ea9e9bf -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,61fd9f06-e099-42a8-aaa6-48d696282a3d -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e102d726-f8aa-4e02-bfd5-638a50d723f0 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,45c65c27-0afc-4b13-8600-9f61fe873549 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f04df6d0-79dc-4582-bc99-db50a3906da0 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6f3155ef-4035-4748-8051-a09105d19d64 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9ae0158d-af1e-4c29-b528-83e50bd00c2d -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5e352a9a-b272-4845-a5ef-ea9026a55098 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d4c5f32b-5116-406d-bc83-20ba06dddd93 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5ffe6914-8313-47f4-8ed8-adec47f05d0b -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,93c88fbd-7281-4c06-910f-98746045fa11 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1288a3c9-d9b9-4d96-bd1e-7a393e35f012 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bdb66942-8762-4794-8df0-a5dc38ffa888 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ae35892d-ad5d-445c-8b50-71d221a37623 -CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,bd869228-beda-4c6b-bf5d-71c7e6965602 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.000510384,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,9bc73a4f-f48c-4dfe-9b39-cb4b583d0d6e -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.000510384,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a072732b-8654-499a-9e6e-3bfb55ba2a81 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.000510384,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2c4de710-821d-427b-aa77-bd45bae0ce15 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.000510384,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,307cd43e-14af-4d61-9036-2037dad97a06 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.000510384,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a2149e0b-5cde-4ed9-ba56-177674bddcb5 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.000510384,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e50ad741-9dc9-4d08-80ba-d6b3e98b8772 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.000510384,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,b26c4556-60c7-46dd-a536-b0b9a1e25568 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.000510384,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,54edc6f4-ffa9-431e-adb9-b913a25af18f -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.000510384,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,beae1775-0ab6-46c0-bd3f-fb434a5b3e4d -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.000510384,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5b1349e5-b784-4e1b-b7e8-3944c7f9d199 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.000510384,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8e2c9568-5342-4815-9440-4e0905d25cd3 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.000510384,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6987ed8b-1da4-4364-a195-0e0c6d49242c -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.000510384,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,41b1c462-0d01-4190-922c-805f7bd41a55 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.000510384,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,ca811051-1c1c-44f4-85d6-442d47dd0262 -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.000510384,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,5529825f-60b4-4204-9cc5-3558ddb37d8e -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.000510384,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c5d27f4b-cfae-44bb-9be0-561a08a1bf5e -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.000510384,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2a73db63-74d9-49fd-bd87-e72b941b32ae -CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.000510384,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,148f9023-3cc8-466c-8efb-a97fb8a7a92d -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,416144d5-951f-4716-8378-00729ad16b64 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7e5c65c8-a8d7-4a56-9076-b13aad54305c -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2e002464-5d7a-43bf-a00e-3278d50c88e2 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,159c5d15-47cc-4e8b-aa17-12af5a875bdd -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,856e46c2-9c79-42bd-9ff1-db304fe9a680 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,026c9027-5ceb-4c42-8e4d-ef05ec6a1b48 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4c78fcd3-b001-43cf-ba5d-15c1eadb7c95 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,22fd1eda-89d7-43a9-a10b-eb94f591c0ca -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0226746e-1c4a-4474-9634-9810676be8e4 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,19ad4f13-af83-4fa7-a7eb-43d661f8b656 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4313ac0e-5eca-459a-bc41-17a4e4b113ea -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,2217aa03-18c4-479a-b505-625440435d3a -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,52b9c6c7-c9fe-43af-b797-a76050bdbc9e -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,da8ab572-2eff-4ad1-81a8-81e0f6dcc321 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e6160576-c21b-4f17-ab31-e182a9188bad -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0005070239999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a343f21d-f62b-4f89-b062-e7c41a507ad9 -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0005070239999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d7015866-2045-4482-a314-f944c8f54efd -CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0005070239999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,a87fa137-f337-4afd-947c-d967b47479c5 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.000501312,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,296a1373-00ca-46ec-9ebd-a7ebbe538785 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.000501312,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1f80888b-e70d-4e16-84c6-08145ab72a03 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.000501312,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3e101b6f-5c54-42ae-951d-e5309c877f16 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.000501312,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,82bd12de-18aa-4a47-a9a8-ab1a139af6ca -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.000501312,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,7667dc2f-0726-4dc8-af28-9e1d875813e6 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.000501312,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,07658797-1155-4082-b5f8-26338960f7f7 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.000501312,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,61ce4653-0f61-4d37-9c82-1535b4fdfa75 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.000501312,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,0e816ee0-c418-4f2e-bdf8-36207ac85999 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.000501312,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f4567f8d-1767-4cc1-a9aa-a971efa39177 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.000501312,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,6d097ed6-6f0d-4cdb-9003-18622582a462 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.000501312,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,52ea2877-40b5-4e4b-b08e-ea293890d438 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.000501312,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,10d4a121-07d3-4bab-b659-ec2b8f24b1a5 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.000501312,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4d60f53c-8bdb-41fa-b4bd-c8e53915ebcb -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.000501312,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c0aba81c-aba6-4a2e-8e40-679ddc215154 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.000501312,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e7198780-2952-4549-a2d3-032b547b1f0f -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.000501312,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,89d05ec8-8477-4e85-9cd6-2b5e907a0681 -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.000501312,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,251c3d84-c06c-4055-98d7-9ac57ff5740c -CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.000501312,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c3cd8584-e4a1-40f8-a339-2796384196fa -CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0004935839999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,63c243b1-fa06-44f3-b8dc-62d416be7e13 -CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0004935839999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,c545e699-16e8-4b97-9f44-1fcc7ae29179 -CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0004935839999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,4f109a92-f9ab-4b92-99ee-90ba08f16b1b -CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0004935839999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,dca90ebf-2096-4e8c-800d-db461229da63 -CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0004935839999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,85444279-9987-4e11-bd81-ae10ddf76003 -CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0004935839999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,16d86119-9e89-4bd9-8c24-4b289471a52e -CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0004935839999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,d070691b-2e27-48db-a345-4ea84f1de43d -CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0004935839999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,12e872ea-c38f-42c6-8074-1caf7796494f -CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0004935839999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,e0176d7e-8925-4219-a5f3-8630a973bc15 -CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0004935839999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,cb7f730a-cbad-40d5-943a-4d8cbe349a23 -CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0004935839999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,1ebd885f-809e-4808-bd9c-dd2b4be1171a -CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0004935839999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,79bfbb33-b619-4061-a875-1226d40b7290 -CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0004935839999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3dbdd076-ca0d-456d-9903-ff2d9e63780f -CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0004935839999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,31773102-7393-430f-971b-48268c3826fb -CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0004935839999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,024aa619-5d16-4a14-8f42-e232beece4ef -CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0004935839999999999,fuel_combustion_consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,77ddb64c-f311-4224-8690-2b6eb6e5c0b5 -CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0004935839999999999,sampling_scaled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,aa412dde-ae9a-469e-9664-21b3bffbf33b -CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0004935839999999999,modeled_data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,23f56ef5-e235-44cc-b6bb-b4f0060310b6 +gas,region,units,reference,gpc_reference_number,actor_id,emissions_per_activity,methodology_name,metadata,year,methodology_id,id +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b5ab3ee-46bc-4026-a02d-bce70c8ec22b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,06019252-cf4c-4160-b803-7a41072faa8b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,af9cffdf-3b42-4bcc-a88f-5330f1e7519d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e197c549-6aba-4032-ab79-e8d7de072f40 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,30f7c8e4-675a-40b3-8f78-8096bcba8614 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8aca5166-bd78-44cf-abbe-7662ebda0558 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,680f15a5-a8b8-4084-a5ab-acd43015cf07 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,58cb1272-2383-44b0-8e2d-c3a122e8a486 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,dceac096-9a2f-46d3-8501-17d94348e253 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9874403c-4470-4ed3-b823-6c80c78e2d83 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,21d71a70-3ae2-4035-aa1d-58a7d9fd7ced +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ac96b78b-286e-49e4-915e-e16168eb587c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d3d95ffa-29d5-4c64-935d-754dd4e79a7b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,823077d0-92e2-4102-8665-e6d8d39a0c87 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a58eec51-73d8-4512-9d69-340607bdf356 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bfa44eec-bdce-47e7-9e49-8e3570995cb9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f893db27-f9d2-42d2-adf3-3e11a02387c0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c1a4b72d-f0ce-4190-9629-13fb5c349332 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3c082bde-8c7d-4eab-80c5-0209776b43e7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a019ac8f-7bc4-4b2b-a07d-c39153e6febf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d134b98c-264d-4b1e-89a0-fba2eef194a0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4bf20207-9128-4b0b-a347-5db9a58d4c43 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,569fdc6a-7a28-417a-a088-c9f091e2612b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fc56d792-0b6f-415e-bc96-5731711842c1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f8aad96e-61d6-4a5d-9c44-fbd7f8aa5989 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,67afb053-d2b3-418d-ae31-abc5ecec46e1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,cb2dabbf-ef32-4aaf-ab12-131355853057 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,79c1b8da-272f-45c4-8f0a-dcafb5b84d93 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a08613e9-b14b-46d7-9ef5-fbf50213e85d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6b33bbc2-96e9-4253-8cbb-7a6a904dce2a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dad8a6d0-73d6-474d-8701-df3c928326f3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6cc26d1f-e4a2-4d4a-841e-b3d4e5b8a459 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a1a291b5-5785-433b-b819-62f9bfe65674 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3e10099-bf3f-4f16-9c3a-e63c43e2aff3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d1648f5-ac44-471a-ad48-6f49e2eab326 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,771f881a-66f5-4820-8d20-e2def11bc04a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2dfa1292-2abb-47cf-9d7d-6dd23ea63f82 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e8e25ace-77da-4d1e-9987-758ce30ab5e3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7364159d-945c-421b-bed7-9b4443771978 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,603c312a-c057-4074-bb0c-fdf17813e412 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6b5b3610-1fc4-4058-8092-f02b166dc451 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fba6ac71-b66b-453f-bb8e-b7b69e4dad4b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,52970779-8158-4f5f-a7af-233f19a690f0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,97737f57-7f25-4273-95cc-d35e953ec780 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,dac9feea-2cf0-46b9-8acf-6e75d494ed55 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,513459b4-ca8c-4073-9912-2a24acf61249 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,162e158a-d4bf-4259-a420-8ee20cbaac45 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b2e9ed94-f6bb-4e92-a220-1f2a9f92345d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c11f5d5e-be12-4b47-8b1e-f174e7f99f6e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5f4ab33d-c003-41e7-915b-485dcd3622d7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,cf5fdfc2-20ed-467d-b346-47b1c425d32b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,89a2a425-5fea-4f67-a7f2-839034e46525 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f811952-4c4f-4349-a7b6-1d100b8bb396 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,26.8,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:25.92, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,e64d5817-0a10-42fb-b857-a06bcadc1250 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,40ebce60-99d1-47b3-9b7d-ad613e05298e +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5827b3bd-6e14-46c2-a1a1-4990973d40a9 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,45b76d7d-7cf2-4f0a-83c6-c2eef1c5e6af +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ee97bd6-cebc-477d-ac8e-df89aa095962 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3c43f491-343c-43c6-a627-987dd09b3110 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e7899d93-9257-49bb-8218-fb7a5feb8027 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7cfaca54-20fe-4b9c-b515-7ae553d05850 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc7f346a-ab98-4143-beaf-2674f80447b5 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,df6a40d9-998a-4d02-9beb-08837b45c9b3 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ca2ecdf9-f3b0-4ff2-9979-3445deb6cad0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,765a1358-6f03-4f2b-a78e-d43fc67b1340 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2543e945-bf3d-478e-90ea-5a0896417d53 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,16340e20-2249-4aef-bb8f-18bd12aca0cd +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,403648c5-e8ce-49bf-b352-c4e1036ae6a3 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1464623b-cba0-40db-9859-6be082ad4694 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,716fe256-d05f-4bdb-8f4c-d2521d1449b0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed43af18-ad84-4d1f-94bc-8e8b61865fa0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6266f0b3-ef66-4352-9141-0458d50991c9 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,89df5e5f-9b1e-45ec-8b5e-026db6bd4691 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,787ef48f-3d66-4496-b56f-c056e115d452 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4c62f0ba-ab33-4534-8651-8e89b1b1aeab +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62f3b4b9-80de-46ef-aca0-5e8971f10cb5 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e23365c9-0c6a-422d-b95d-f9822c189235 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,647e3ebf-c1f6-43af-925a-230e1369acf7 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f420b5e2-a77d-4d9c-a61f-ca6d23490640 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f235ecab-06d6-47ac-899b-9f851b9cd335 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f597fb76-39cf-4b28-946a-bfd9a6464ff0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97042ded-ff90-4606-8736-fd26ff634a66 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,957804d4-8ffd-44e2-b0f3-2bf896d20f47 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,dedc17b5-3a44-405d-8fa0-da6373ea2aee +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,47ecb0ba-2d0d-4571-af62-8e4699c8afe4 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,58c8cf2e-1452-4426-bc8a-a795e9001bea +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d569541b-3a45-4cfd-8a32-ebb9791445f1 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b62ae4c-ee3c-4967-80ba-4ef7d7ce3f68 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dc5e59d2-df1a-4b94-baef-61d94387819f +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7f5659b9-c61d-4ce3-823d-8bdefadb1ebd +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cecc4c8d-36e4-43e5-ac9a-cdfb219d1f0a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8098802-e40e-4f76-a176-0a54561219a7 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,493e4aee-cfa6-4882-8f19-bf56643a2cd0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,56cc575c-6878-4b11-b35f-65160c333b4c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d85a1e08-cf2f-4993-99e2-341f1ea7c60d +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f41887e8-7a09-4370-bdc2-11a03f5b5eb3 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4dc8d863-b436-4c1c-9492-449d022f0620 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a7ff3522-4fe3-4277-a3ad-5df96993460e +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,dcffc8ad-afd6-4c61-8681-e76e102be5ed +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c526783-46e3-412b-b7ae-8a5e1480e9b0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,53a07136-a325-4cca-b5cd-951f9a5b17b1 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1bd6d9ab-55ee-4652-a2b3-86d029cdb4fd +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5b34081-23d9-47c3-a040-2ad5264b7eb0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1d38ec47-2dae-4392-b75b-9d1019bcfbc6 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,15aa4b17-ad09-49b8-82ab-333c04582b38 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2e48e0c8-5209-460b-bcf8-44a1a448bdbd +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2d3c152b-bb62-4987-9afd-76ab1099aeba +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2df5edc6-6011-42f0-bf8b-90aea96d7e7c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8f4e7e51-5f95-47b6-8b4b-551d56b09bc0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cf49878a-1421-4535-ad2a-c9f1c6ebc7ea +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f6b1f327-a5ae-48df-8193-58d7e4ee5114 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1d287013-5902-4b60-ae8e-18d8f8f77328 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6aa647b4-3846-4aa0-b97b-2c147311252c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,926ce778-2163-4b14-b0b9-9be698ea0bbe +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,560786f8-f6f0-42da-848d-9345b687b428 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3ce861c2-e072-41dd-b06e-65dcaedfaf75 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,cc34880a-f892-4433-a9d3-24a1954b04ea +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1107a30e-c9bc-49e4-a4c2-d5bcde447065 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c911c7d-7406-4930-bfef-7be945adac7b +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e011b493-7403-4852-a6f1-5163cd88eca3 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed9deda2-a171-49ef-9c1a-a374c636cc25 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39b6f301-59de-4c52-8378-6dca41eaca5d +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,3de661ee-2a7e-40c7-9ca6-ef90c2f6ffd9 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fffc6cd6-ccb1-4196-843d-5a5373010827 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa1decc3-a4e6-46f3-9363-dfb05fb3adf7 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,27249d2c-938a-47c5-84f2-df0681a25cf2 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d06acb2-d1b3-436f-ba98-e37b12b33b99 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dadc43f7-a4ea-4090-ac6e-28231b96fa47 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b41c857e-96eb-4477-9bf0-a4b107965f7a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,582470e1-4d61-4948-8f3e-4bcc4350cd95 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,896680f4-a9df-495d-a080-6c988ae819c9 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,590f3358-fcac-4f47-b127-b53d3cb2abe5 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,082d31d2-8750-41b2-8859-9e252d8ebf20 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,459024f0-926f-4be3-b012-1e543e806363 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,5b00eb4d-21b6-41b8-8c5e-3c6bb52ebc6a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,77cf4895-11b7-4226-9f40-cda38e33bb40 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e2dc1e8c-b4af-4b4b-a667-9a34bd6d136a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,066028d9-cb97-4b1d-aafa-c4cfed3241c8 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9e4a8014-a7d7-49d6-83ae-d3831127124c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b438032e-2db5-4c19-960f-f96ef9968e2c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d17c7740-5163-4e0c-8623-4b52fced8637 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fab5fc7a-3b8a-405b-aace-6ad5f096367a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,962cd562-2686-4bd5-b465-4258eb7a6a41 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fc9932f4-7c1d-4add-b3fb-d976b9644a79 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a92a95a1-08af-426c-a8f8-83c3968f87a1 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c546453-1a70-44bb-a440-6a6bc257872d +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5c5651e0-5d7c-4841-a2bc-e4355bd7967b +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,10ba4577-fbb0-4e62-868f-70e85dbcc3ec +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a922f00-cd7a-43d7-a3ae-f2ff6e42a16c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,62ccbb60-7afe-486a-b4cf-e4e6bd80216e +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b4e2942-ad25-4c79-9d80-6ff7dc8316e7 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,355e2246-86c7-474f-afa6-610520470387 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7290d292-9ecd-4e40-a6a6-38d1793841db +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b2b38497-b897-4a18-8bc4-2bdfaa8ed078 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,739b2308-f244-467e-99fe-9a404992533c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a47fe50b-4738-4d6b-a486-e6dce82bbb80 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,05f160b2-6751-4ddf-9195-5c72c73e9045 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1d0aa377-126b-4964-bb78-ca0d67d3e6b1 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a9751416-5c24-4e4b-956d-24b5ee3a75bb +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13903419-a654-4ea7-821b-bffd10d4cfb4 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e5d1b044-e548-413e-8b3f-5a8d3550497f +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,25.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cd3206e2-e66a-4b0d-9a9b-75d48258f14f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9bcad770-eebc-4ea6-9a2f-b9d70d672ad0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee46c3ff-e146-415c-85aa-8954ab9bba67 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,016a4d4f-f801-4a6d-a1aa-26b224273949 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44e4b3e9-0c7c-45cd-85fe-c70b8e65185b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20d505f0-cc33-4f16-87d3-bfcf2f345866 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e666f3ad-3529-4416-a1cb-60b09c5ea5f6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1d461ac9-1edf-4468-8ccc-915b914ceb65 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1728dd52-d6a3-461b-94c3-afdc3d69a6f0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0bb63eeb-b357-412f-8103-73b7379f93c8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8a5c01b1-8a43-4562-8e2f-88ee8cea044f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,01b39b42-82d6-4945-b1c7-8f2a7d0ead72 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,5be90619-c5c7-48d4-a817-be03584c6af7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8adf398-a0a9-4d42-912a-c952a83bb6d7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00df4d78-9b95-4fb8-a3b0-0ab0440d2c1f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2de00c40-ca16-4dfb-9593-ed79ea634622 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,67d795bb-7d1f-4876-8ef7-d5ee71be87e0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,459e25c9-47fd-4c7c-95dc-6caa63e78ccd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,23ac671d-5b16-4dd1-b2df-e32464e52dc3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20342d32-3518-4ccd-966d-937ce6c3e846 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,862d820a-f654-470d-8180-203315d4e330 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8b5a30dd-d40a-4514-b27c-da80f80b445a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e29ef160-aab6-4a8b-89ff-f2bb65b6ea46 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fe096d08-7d2d-47ef-afdc-165f8a26c795 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fe528275-2c64-4267-8e28-2cbab0a1ae8e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,994b3e7a-d1b6-467f-a9a3-74ed42b9aad3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dcf2ee73-36c6-4dcb-974e-6448574b14c3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4c1a4d49-c3ce-490f-abb5-e82559c3f1f2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,15fd9c3b-bc58-47f6-907b-805456b88d84 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,af87908f-abbd-46a3-a788-b516a7f23d61 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,67276499-1a0a-44a1-8e7e-8a8d9a1cf9f9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,695a08b7-b51e-489e-b968-56e1eccd5d46 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6e22ac9e-c648-4a52-94ca-d326ac1d701c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8a461956-43d9-4c15-911f-5a704482cc20 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,48e03214-424f-4ac7-8054-4846af54dda4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c042ad39-3cf9-43b4-a0f8-599737305daf +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e8c97f61-02ac-4bb1-99ed-993ddb5b5de6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e73409f5-91d4-4f05-bdab-db5e29a6ea65 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,338fcdb2-cb6f-4fb7-a86a-12339aa213bf +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b273cf24-5dc3-4a8e-9556-4f0dd6e0a29a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a4f8b1f3-d619-4598-9052-6c72d96474dd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27b2ccfe-d844-445e-81fa-94621d9f8220 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,62543b5e-9ec4-4d1a-89ac-c1eb9f436552 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,02b20354-49bb-41fb-ba51-84bb48d44e67 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80ead7a5-9a61-45c2-9592-d4de75569ccd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0dee13b2-b35b-4906-bceb-8f4c6dfe971a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8527af65-58b9-4290-9047-aa2f3ad21215 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e3a0bb87-a475-4c9c-8893-0d3e84d074e6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c342ad85-7a9f-4153-aa07-53c42362d31f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f35d96bc-dc38-4498-bcb9-e7799fba63d6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b719a1ea-1c82-425d-bb05-eb4dda9db32d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8a859792-24a5-4a7c-9133-d83b81889350 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed530b0a-8496-47dd-afc4-ec5a3f85e06a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,14dd00e5-b8b1-4799-b9d8-f1e5e161bc38 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,148014ba-2612-4cfe-bedc-59e2b8662f09 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e3752d2c-f882-49a1-a574-e237a126a9ab +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c1daca6-7de6-43fa-a900-33f771185862 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,119b2e11-4a4f-4c7c-a9aa-80049167011e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,095b3638-f0bc-4bdd-a631-508a41cf12e2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b07da0fe-610f-4383-830f-8b7b9fea8c2a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,065271e5-1d6e-4f04-b795-65e8020915c3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ad25379e-c242-4b9f-8445-e3bd5efc4f64 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f9daf701-8f64-4278-80fd-74e3294a387a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2d662b1c-fd9b-4b0a-b40a-34cea41f5ff7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,641ac30c-52cd-4224-a5dc-a107c8ed7d9a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c25b7c3c-84be-46da-9a1c-738b4086ae1f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,52741ebe-757f-4dcc-8b26-93b6003c1eb5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,17eb6400-c129-4578-9b83-a50e0174b7e5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9cdd8b70-5b95-49ca-b18e-41b4fa44cf45 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2574d8e9-8718-4874-aae0-50e1c99fc9e6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,337f119a-7ef8-4406-b26a-669ecd4a94da +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,457345f9-4a45-403c-a37d-8cd99094559a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dbf3dbf3-3267-4071-8d39-69591f0ab013 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fbfa61ea-0395-405e-b3d9-e126c3afba84 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b04e1399-2dfd-4e42-9822-c4c790441eb4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e69f3f0e-f414-4073-a91d-8f3ebd289d78 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5b53f928-d62a-48ea-afba-1e14eab32fb7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,25e4b862-e3e1-4b3c-918f-f8351348fe63 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,76921a8d-c5e3-46bb-bcac-54122161270b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3b4146d0-3250-45b3-8cc9-7dc4fd9bc8ed +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6a0cd8ff-305a-4712-b95f-8fa332c1a5ca +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2cb0b0dc-f6ee-40ba-89c8-7673be96194f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dc65a337-4ffa-45d5-8e07-35ae7ddfaf97 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3b7e5998-246e-4676-b822-019244eba790 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d6f08a29-c7bf-40df-a244-fb968a956185 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b292886-9bcc-4da8-b605-0f4f47abc38e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a1634d00-f5a3-4706-acb0-ac5327a3a458 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d7c90aee-3b9d-42ee-8a33-6ddaf0ec6761 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,be502814-e4d2-462b-aa4b-fe0c9675a986 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f1a6309b-1ac0-4029-9ce6-309c84eaf7dd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3aa3734c-6611-46b4-9f9b-f97cd2d79ca3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5b41af2-b1b5-48c0-9b47-4504efa91f25 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f797ffe6-9c12-4103-865e-0153c672be3c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a8e8987e-06e7-4aea-a2ea-b56a8b738234 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6956de11-48e2-498b-84de-a38711f9ded0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,75caa1de-03ad-439c-a93a-20aac7a7e4f6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,de06535d-d267-4d0e-9f94-d3cfd43f6820 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,00cc66a9-6f90-409f-9045-739c76c4a0bc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,01245e5c-1304-4417-af82-24da748e48dc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a326e245-f606-4434-aba3-50f7cc93e9a6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e5054897-b1e0-4ead-b1bf-76fe945acf36 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a011136-26e0-4d5c-a83d-9f3a296e83a2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,25369e93-79df-446a-8054-75bf9f12f45d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,df865852-c8fd-471b-9a88-93bcf88cb773 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2493bcb-6db7-4367-8ddf-7ee173da5671 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,fbd96c4d-42d7-4f2c-a942-dd377daf2bfe +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,172f64b5-b052-4cda-b1b4-f4221bbd768c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dcd9268f-f7c5-4a13-a7a2-c7c44ae7b3d9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,25.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,addb9d30-847c-4854-bd22-d1f2e8e0a0e2 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7dde69f6-1673-4577-94b5-ade64ce30c20 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1977fb91-6618-4261-ad2a-465f1b1c9c77 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7321c3d0-9ce9-4ae3-89bc-47dea192fc1b +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,037f0b3a-b598-4fb9-8d99-34abfd097627 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e42ef6a5-4e4b-4ddf-b6ee-722925b4531a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8b563690-884b-4ea7-9ca2-e7ee88ad29ea +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,02633ad2-3684-43ed-b0df-4a95ead81d09 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49c93981-e382-46fe-b1fc-f6a4c5acc159 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,bf15e4ad-825e-426d-99ff-df0c20c7c569 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0a65c97c-74db-4035-85f1-5ae721dbdf3d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8284637-d9ed-472e-9c6a-8c9787fed897 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ae2b96f1-e7fd-4a88-a610-f0f21a8d54f2 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,858fc98c-42c0-4eca-bc4b-3f8d62104613 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b89fcf5b-34b2-4e6f-9896-28cce230fd55 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b569514b-4b4c-408c-a53c-5533b1eff562 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f0f179d8-0346-4f16-aca7-5f1346d6a69a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,864e9836-2870-4b04-973d-2ebc9e75815f +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,60ea001a-9bb0-445c-ab7f-725bc04326ba +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,70399e59-014d-40ba-998e-1121d5af48ff +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,58b25464-a111-4662-a4ec-502a33f0b5d2 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1e257080-e6f7-4e7d-a8ac-9a20f299040f +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a87377a8-515b-4d38-b721-e3df6d887202 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,84128f74-9f7c-4788-b40a-1b0fd90f9153 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,db2e5cdb-aa22-4d88-a641-f41a2b59099e +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,57a45275-7eaf-4214-9639-203fd0dd3079 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e2348a58-4c65-485b-880e-4f7daf84e5c8 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ce07f4e5-ba61-4dfe-b6d5-7a5cb55bc782 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6a1e4b3b-0946-4efa-9dbc-081daee089b4 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,97a3fc5b-a702-4b88-b4a4-22171bf89da3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3d706e3d-af82-4279-860b-6fa725bdc7aa +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8b5c23a1-44a5-477b-b6c3-af311274030c +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,67afbb0c-2f0f-42a7-ab1f-ed79694640b6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a82592ec-dbf9-4218-9446-d62e9854afdf +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,288a12a5-4467-4af0-8fda-4423dd1520a7 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,10f88caa-fd99-4dec-a421-9e2b91471e6d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8cd56e0d-f974-4121-a1c0-471a64c3d7cc +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4ca1f0cd-5ac4-49f0-817c-48d83f631784 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73eb0b2f-6d00-4133-9d5e-0f31809e0bf4 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,03af98c0-680b-4834-8d39-fc474444b337 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1d27fc45-f41b-4644-9fd4-f94f07e6073b +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f221e96c-f8a1-4a5c-a27b-722e47c9afa0 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f221032a-7a60-4fd6-92df-e5bf09a1484f +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,297284e8-9ecf-4290-b202-95f690531f6f +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b0ad7b5e-4b65-4466-9ef0-5afdfc45be15 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4ab48a20-e771-47ac-a088-08dd1b531389 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed6e6471-1e29-442e-b569-c47139b6ea9d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c83c0168-06ea-4737-ad93-96846e587544 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7f4b2176-c6d1-4d26-bb41-c6a73c32a82a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,282b4bf3-9028-4d9d-9e31-82d447981c90 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0a815919-ccd1-4935-8b57-9ebe78902fc7 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a35399ac-3a93-4ff9-ae61-07ba443757cb +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,84380a9c-bee8-4561-93af-16264f5d35ba +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,049fb9cb-9e08-4379-b1f7-fbb3ae5f5095 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,356c5723-0855-48b4-86fb-fac0d4da93f9 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c69ef9db-c6ad-4f50-a96f-5bf3fd6d5b69 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f4dc413a-5143-4da5-a470-23e759cfc160 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b8035fe2-5854-4a99-968e-23dcb55e2fd6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,16b03f0d-bf26-4412-bda6-98fbff112bfd +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,25080f06-87d2-4d66-b952-5802e535c935 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,490d5443-2a2a-406a-9489-85699a5ea8a5 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,922a703a-8de8-4dcf-9adc-86dcad25e341 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dde57b2c-f51d-40c7-beae-c808e83b61b2 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1d53f9a5-d635-4b1d-aa08-994166cc203b +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d6df53a-686b-47f7-9700-c91dfa48a7d9 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94c94e97-0f60-4eb5-a03e-d810682db97e +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a877682d-0ca4-423a-b5cd-f24a9a4e44e9 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cc3d8805-88b5-43de-8327-35cf15194127 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4e893d96-543e-48b2-877e-d48fec614135 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,16bc9f24-fe5e-4b29-9b05-283d5f4b986b +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d9ed530-a084-40a4-804a-07fba135e1b0 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c571d5df-f86c-43eb-981f-601638ddab43 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,27bd5ebe-6bc2-4051-aa31-09ecd5b9efc3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c14c7259-2ad6-4b45-b061-e656815a3f27 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d062b1f3-3c43-4e9b-9b68-963692f9be89 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c20edccb-da2c-404c-b547-0b5644326da5 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9b3345a5-c2e4-4f4c-bcd4-36e51ac42e1f +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b87ff1c0-540d-4635-9d4b-bb1b0c370166 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,58ebf120-27b7-4105-89ad-c933937594df +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fc47514c-ace9-42f7-ad40-4c9295ebd3f0 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,843dd98e-9fe6-4782-a1f5-88832c4dbe5d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c4537222-7ce6-490a-98bc-379e3a0951d3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,96cb2e23-1642-4e53-953f-00da66cac9a3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f3602f94-4c38-4246-bcec-2ff53bddce54 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a682faaa-562f-4486-bede-8095e848fbd8 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c4eb0065-9380-4140-a19a-9d7593d4cc9d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80323891-4957-4a47-ad26-7eb7c894dc06 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,afe72c2a-59c5-4acc-8d33-2ce3213e7f46 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72ef2076-552b-491a-a8e4-c1e49b3181fe +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c31d38cc-828a-444c-9f54-6e562cd87ecf +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,35212003-c3f8-4c77-9df9-460d670f3675 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,09781cae-aef8-4b8c-923f-23ecfe1e51cc +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,341069c3-11cf-47a1-bd52-6dba99bb4859 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a3a036a4-fc15-4f50-844d-58875fc77069 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3e9a7a1c-7706-457b-9d5a-8a81f2b8b6b6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee26a58c-93dd-4e1c-b29d-891deb463cf3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,9ba70e37-e52e-4fc3-adfb-2bb266b11b47 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e640f0ce-4b6c-416b-86f5-63fd3aef09ea +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2101577e-d319-4b7d-b3fa-9a3dcf6f37e4 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1c545e22-2280-4412-b598-2d8b8da90199 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ac42a56d-f081-4a72-ac97-8c338f274ce3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0e7b8702-13b7-45f1-9a85-14cd5f4a599a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6c6a12d2-cb1f-434e-9db4-572096e3332d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,06cd4473-0d67-4f82-80f8-581aeaa1e6b6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c1507411-013a-40b9-b0d3-8c38b8eb0788 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1c445a26-3451-4b4b-b205-fea415e874f3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a86cef59-05d8-4671-ad9d-e8c0eeed8ea9 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7bc5c80-debd-4226-84e4-96d89f462a66 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,bf5d3117-e6f6-4cbd-9144-89aa8ea092cc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dfed88a4-345a-4866-9f8d-8436a98cf8f8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7deeeb85-e902-4e9e-8605-70a3c9ac62cb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6d2990e8-7246-478b-a709-a8550e459d09 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0cfc53fa-defe-470f-9239-a1b7edaf02fb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,60363951-fb8c-4972-be89-50ed1d677624 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,15bf268a-b9fc-4705-8980-1f2c8f7fd596 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ad12d6d6-2aa9-4c76-bbd6-7337fd21e5e4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e89cdcdc-8382-440e-8f4b-59179dfdff4b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a018d3ca-ecb2-48f6-9ad8-c40ff76841b4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e0c3d20-4999-4c7d-b405-8721e27a84f7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dfcd01d3-9172-4e52-aea1-c3774aeec3d2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,52647125-a2de-4448-a43b-e4a3b1d32f7c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ac249c6e-470f-4928-a7fd-308f4175bb21 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c8b605ce-1b83-4749-b9b3-54dfe9feaac7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,3b0b71a7-4f98-4ac2-be66-08f8f5e889f6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3cd30401-6f84-4f5c-ae85-b9ab5f9181d6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0232b915-2407-4b78-9bc7-63ae81d1e3c6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f2284e72-30fa-4828-9ce0-edeebc556035 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d1db193f-0524-471e-ac58-db8943d678ae +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a4950534-aa4a-422f-8dd2-f206ef2dd020 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,382df10a-02f3-4615-86a8-f08248dd3317 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bf544637-0588-45b6-92d3-86914d24ae99 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b260b9a1-a014-478d-b340-bee4d387ef40 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a7a0f174-4471-47de-9057-a64ac7041f85 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e670812f-4433-4b0a-90fb-ffef41306c32 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8055e93a-35c5-414b-8298-4a6e58f17143 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7738dcc0-8d08-4ed6-b94b-b0fe81fcdc45 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e7e012b-c35f-4d4a-8cf0-75f705a08165 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d85adbb-e018-4a7e-a71d-3bf9b8b01909 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c67f6229-b8a1-4aec-866f-21795dbfdd13 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,45e92b40-3c7c-4881-8689-7977bbb6229b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee611226-63d4-4f31-bc77-b9dff07a2db2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f7f4c40b-9c48-4973-911d-116af6aa6d29 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2535bd68-836e-47ef-9217-083cac69c351 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b8ea9e64-ced3-4936-8b53-abf4ca08430e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a5ff64c2-78d6-4bc1-8021-75befc815a1a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fe623d5e-eeed-40bb-94ad-2806e868ce08 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c68cd3d4-d780-47a1-bcda-137ad2c4e366 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,39891d39-e531-4041-b8c3-966adce7fe85 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,228a7e29-2400-4fd2-8eba-42ff36c14692 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35d24760-bc67-4185-8686-71013eee2fc6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1c4748e8-b371-49b6-a1fa-f52cda0f2542 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,415832f7-0738-4a24-9aee-c8da117bbe86 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c7c3ac11-4416-42ec-9873-d53b7c0a94ba +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1eee5552-c9a0-4a62-afcb-fef6d9bb04d1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6323410e-5f02-43a1-94b4-ff7a4d440cf6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4f189d91-94de-4bdc-93b3-6026260f0c1f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ddd893d0-60cf-4eee-b363-e94625c77a41 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,82da0fa6-718a-4c56-9cd7-b49bc910a4be +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e758adf5-0fdc-4dc4-b577-6d3bdb9f7f41 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,6d2e1aa7-df53-40d9-a14d-fb76fa561040 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74762454-efd9-4284-96d6-5dc1371d8f45 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,91035520-5684-4fb3-9603-d65805d51779 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8e731dd8-027e-46ca-bddb-3a336402478f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e4e44017-ff9f-4700-bd36-bb25a0126072 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b17d2f97-d436-455b-8934-78022144ee1d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d0817dde-e57a-4f63-b93d-86b28bc2ca3b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ade95f6e-a0c4-4bdc-956a-4b22e90b709a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2690df1d-77f5-425d-b2e1-858cc8b36f88 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e74fff81-dec2-4e6f-a0fd-b75e17e1781d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,476b560b-f577-4566-a7d0-52f9316ed1a4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8ab98962-0ac4-4e53-a9a2-c1d153f7b1cf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a2b3c057-7a92-4240-981f-ab92b89ec51c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,939f1f32-ef43-4db0-8dc9-eb8d1159c709 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d6b1ea17-4138-4327-9629-b0a1e28b9b1e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,62027f23-47ef-4e27-95f9-e6b5cb5b8064 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b75cea3-44fa-4e3f-a9b8-61089d02d641 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a822685d-2e0c-4c87-a216-0151ac467e4f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b8343c88-d9e9-4d4b-bc1d-4018208a7003 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8dd2d07-b12d-4dbf-8d71-7e802f0ad079 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a5d39915-7186-45f3-8d68-e7185cb0a290 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d721e514-b49d-4603-b429-efae259b650b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c131bcaa-0bb3-4a5e-8f9b-a10db5b579ff +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4de84979-262d-4c38-a467-f6411688de8b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f318d1d2-ae92-43ee-b904-372de325ece2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,22790ed2-bee6-4267-8c4d-03d1765f5378 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee8739ea-3605-44c0-bc6b-e6836e504db0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d9ad197a-409d-47d6-8913-e12854266a73 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bfdfc0e5-7f20-4e58-bc8e-dc5e33adaa87 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5cebd852-5076-4997-ab87-f592d09dd505 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,28555053-9d26-4fae-b7ec-48ca9291aaa4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0fddf496-5949-462b-8782-9e5233346cff +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d585c66c-f3a1-41c4-a0e6-a88fa46f2dcb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c2962986-9444-4e83-9085-230bcbf9f367 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b6868ee4-ce37-498b-ac90-e4103c3d7447 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a6b513c-244a-4c2b-97ee-8e7a757132d1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,71b523fa-8452-4677-9a51-5ecb30d19312 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c0f0ea39-ca5e-4162-871c-2631a0b2c66d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6131c41c-85e7-4e7c-9f81-8f1ee073d2cf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e801e67f-f39e-4240-b0b6-fe220c5d53f7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ff941aa2-0e84-4897-bdd1-62115a66de52 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88bdb8fb-232e-4b26-979b-ccb259b614e4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4ba07dcb-6939-4fbc-9060-52d40b084acb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0e1902f1-ab0f-4f10-b347-2a4a58ec420a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c17d8aa-fb5c-499a-bffb-b2f07981bcdc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,00d5c565-b308-4c82-a3a0-36651a93b24c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,36ce6dff-d92b-4c7d-bff4-ad6dcc8eccde +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cf6267b3-6c3b-45cf-a99a-c4f3ca40498c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.06, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,e2cc281d-c0dd-4e3b-bf32-fa01298079a3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,03ff7646-7a3a-4d66-9422-ff4f6d906523 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca8097f1-d217-4c12-804e-0d4718497752 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,463165fb-094e-4186-81a0-ed7288496729 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d048194-614c-4de2-8b9d-3072faa3042b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,425fb7ee-82ea-44e2-83c8-8fa3efed7e8c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0f1be629-9ba6-4777-ad51-a78608663c31 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ff399254-ee37-44c4-b150-b004a347797f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,219f6d2b-bfdd-49f6-b97c-77ecb5949ee1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,25.8,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ce2a8045-9eb0-4540-95d4-3708b0eef2b2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5167c28b-0750-4b8c-b412-966c61c010f1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00c9f730-4f69-4499-8a00-ee520a8cc26a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dfdb96ac-934c-49af-bb72-8bc154970941 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4cf88cc1-cf7a-4380-bf31-f89d283e0000 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7aa60e96-4622-4ed2-873a-5b27fd51dd9d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c11035a5-ffb9-4e41-becb-888ffc62c170 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,88173ebe-1802-4a58-81e2-dfac9d308a37 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9acad0cb-3444-44fb-8aea-1bcd287d68ca +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,767cac97-c3c4-4e6f-a538-674ed640388f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,822bdf4b-a0d6-4646-8f89-8b9238c2fbc0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eac6e0d5-cece-4fb7-a873-614f68bebb97 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,96fd4051-74fe-4f65-92c9-5d462b0f4ee6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,041f9729-0ffe-4ce6-83a4-0a719d8a2b3a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f675636-2fd7-4b32-9e7e-d9ba188cd27e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,658400fe-6a20-4e46-b590-d01b128b75aa +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,da1a0f64-eff3-433f-8baf-7f506173ee9b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4ccf66da-0fca-4b88-a547-fa4eac9e11de +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3c370f73-432a-400b-8590-c621ff6a1420 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8060cbca-ebe6-4aee-8b52-2e8685b917d3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4399a763-5548-4c7a-ac81-d64fbbcf3f4e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c47429c7-6b42-435e-933a-9033c95ba46a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20a1eed9-abf2-4792-ad58-96c57ca95a4b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e849fe5c-b1ce-4b9f-bf29-9addbc60f1a7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,bc870dfa-93a9-40fb-9b83-c2251a8110dd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d4703ce9-73d1-47d7-af91-39a3c0e3cbfa +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c2a6c15e-40ae-4e27-8640-a058ba8a750d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,16513ce1-9b2d-4bba-b768-4935e1f6e84f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c9526083-8703-41f4-b4bc-b3de53ebc729 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9fe953a1-fe37-4420-b67d-deab545fbe65 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9bf94129-d29f-4884-b6f0-f35f935c9d9f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,777d83d4-3cc8-4e62-acce-fa9af7d2b47e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5abe00fa-cbfc-4251-8ea2-abede5a6b128 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7bd0f1f9-e3da-4aba-9be4-2d48fc133cad +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d8dea36-feb8-4fff-ba7a-d445a1f2cc63 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dce931a9-6fcb-4216-bef6-4f31206bd08f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,045118bd-ab91-449c-80fa-6950ad15ea7c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9519604a-d9a7-4d43-9ce4-591411e15fe7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5ce5ca60-f971-455a-b4aa-1c7b1e2b199c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1cb8e5b9-baf3-46d1-a5b8-3510ff53d4ed +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f8890b8f-cf9d-4997-aab8-ce31cc77c873 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fe4b2cd8-ca1d-4f1d-8450-0777b4d85c54 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,035c6a20-2db8-45e0-b61e-08f15c2495ea +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,349d828b-365f-4e00-b44a-f26cd6283e03 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,97c83cd7-44be-41e2-ad0c-31b5c8a49b68 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3a0bba3f-9627-46cb-b45d-b3b8b71c1e51 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a50c1944-371f-4ae3-ab96-ca91c863389b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4ef161cd-d5ff-4c63-b56d-e11e7c771771 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7f0a0c08-4bc7-4876-b699-fc6312dedb47 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,81208411-61e1-41e7-b81c-d61eeae97457 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,74e26606-64b2-4b82-99ec-844ab61cd0c2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,72c2defb-01ff-4959-99b3-1cb4c0617009 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c3dbb07f-48d4-448b-939f-f50e5b226fc8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cb79c792-14c1-47e7-8208-33520ec77a87 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,19d4938d-7465-4044-b83e-87ac1b0d08fe +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3b555c4b-807e-47cc-82f1-c4d2a4ce2e4b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0909fb7c-938d-4e12-917a-74e1c162fdc9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7cd8a48a-3e2d-40a2-b992-1cacdf3b95e6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,415bc06b-d49c-492d-b9d2-5fe178a5b518 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,47611971-cab8-43f5-9913-3d804f98f3d2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b9a3acd9-0ac4-4c35-83e4-be3a5563e29a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0d3a85db-c104-4884-8fa8-ba4894c112d9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f8fa6cd-2b15-49cb-a87b-5dd0848a371b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b49c47c5-af16-48d6-97d9-dc82f460d9d5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5cd1f8b8-1d7e-4677-a7d5-7ab354c03361 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6e78f911-1dca-4cce-924c-fd4c25c4c769 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e4701948-34d3-4c09-bde3-b324a098fb84 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44e5c8fd-62c3-44dc-8596-14b4926f2c2d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88f66bc1-769a-458a-9f6c-cac118f1941f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0f0e2573-36c9-479c-92a0-90afeaad53cb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,af428f54-5348-4bc4-bd80-2a5a7674d757 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b9da084-356b-4a69-98d7-29368564762f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ed2b3b7b-725b-4c47-9e58-28b9814631c1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5abddec-6264-41e2-b8b6-8f245a44fa82 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,36e254df-5119-49b1-9856-34f22229cef1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f8cfbc81-70d2-4d4d-be91-04afcf31ef96 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3519bb60-62ea-4732-afe6-b86028cdd88d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,42acabe0-9e0d-43eb-ba70-fa88774a4422 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d72abe59-52ae-482a-9194-ebc0fffd2bf3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e3ec8792-5a13-41e8-87a9-22cbd3b4c51d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,652c27b7-0d91-4b3c-a915-bf4b62ca7644 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2e22e1e6-4bad-4402-ae18-35ae4383c2ba +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0c38d42e-3544-42bf-bd5c-17a74dab6e78 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,66e23797-37a1-44f9-928a-c226964b30ca +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,53346cde-f711-4f2f-9ccb-2db9ab827c1d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3ef74fad-3a9a-4c92-8a7f-b72bf9f95759 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7237f952-1555-48bc-a778-a65a569bf1b4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4fe87761-16f6-4a4e-9c04-7ee45c770953 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c4cbe2c-abc8-4f7c-8e23-e078a588596a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8b4f024-07c8-47ad-acc7-dc9894d64069 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,27.6,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d14eec69-4845-46a0-a585-bc518ae70b21 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,28.9,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8f8db77-bf9e-42eb-976e-30ff893852ac +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,28.9,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dc2562af-128a-4481-af70-6b8cf82ec6d4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,28.9,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,17281846-eb01-4714-a384-7f55e3312769 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,28.9,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,87060d50-4f6b-4bb5-8e29-3799e0d926f0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,28.9,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b8b3e5c4-b21e-4335-aae4-ee0a6c0c45fe +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,28.9,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c93c6b95-3a05-47c5-a8be-1125a9c4a940 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,28.9,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3df4b34c-006a-463f-adcd-8c19cc0277c8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,28.9,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,63a09821-db97-477e-b30a-f7c86fad5172 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,28.9,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a0611719-f3e5-4ab1-a998-0e2eeb91a740 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,28.9,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,22d0feba-03ab-46eb-bcd5-6c9b79bee02b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,28.9,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fd71f704-2fd9-4263-8735-35c01b164c96 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,28.9,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7b2af8bb-2eb9-4131-9695-608d70216145 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,28.9,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,96739a9f-7e2d-4a9b-bebc-e071f5ad9f2b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,28.9,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,03edbbae-7877-4d88-bc09-73b580bcd88d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,28.9,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,56caca33-fb2d-447e-b0ff-50e6c797fc57 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,28.9,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,77e6276e-6756-47cf-a53d-8d2f923fefaa +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,28.9,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7eaab809-20be-440d-9bdd-9ec0d7bb1645 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,28.9,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,be4265af-3606-4d2a-8879-ba174568793b +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,204f3a75-e64d-4bfb-8136-3b67f2e35cde +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bca43849-bc3e-4ea5-a166-7136a2d8dfb3 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,010f9354-b6cc-45bf-8e87-318efe29c0ea +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f525994f-7aaa-41d7-9fc0-de5a344218c1 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f64a6a63-be98-40cc-bea6-d1e5cb812543 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,36136b3c-a729-4967-94ca-c5bc32a14a0c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4ff959ac-620b-4249-bbe4-a07a88c2f2df +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dea4d43b-b762-4452-bebf-ec7694a77707 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1905c5fc-3290-4617-b3a1-cefdacad77a7 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b58fe78-14cf-4977-9410-3572e5a8966f +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,32266732-49de-4729-ad00-58073020e42e +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,75e160a9-289e-48e2-adec-b9b3555bc939 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9caaece6-6712-49bb-8f71-c22ddfd8a505 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3ff5cbc3-f351-46d3-a380-854521c15a03 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,b0bb9a2f-9e5c-4100-81f7-e0ac90f5309e +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1157612d-304f-42b8-a2f8-0af44cc8b602 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,09f7dd69-4dfa-4e2e-979a-812ad7c75067 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ab8b2a1e-cbc6-4789-a38b-4574299836d7 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,945aca71-1853-4199-bc4b-c1854bfdce72 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,77bb1e37-095a-4f81-9025-c83615fa8104 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9e82f72a-375a-4144-8c8c-db08aeaa6a5d +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,39aa7e79-c165-472f-89cc-e77480a18278 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a54e84cc-1c96-43cd-ae4d-04bbaff04cc0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,b95ec404-fd56-49b6-aa11-bffdb293e4ba +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,25d98600-357c-4ed2-b585-db237a0662cb +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,96feb7a0-5f70-46c4-bf94-45515b0de757 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d64f8303-2d00-4f91-a47f-f6ef40648b1a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c525be16-ba28-48e8-b816-c89aafcd9be0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e85458b-7215-4d18-9d76-fc8e3e8a5353 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,394a07e5-0445-4880-9816-1b36703d97a9 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6a300ed0-6834-4b07-acde-998b58283c41 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,380c5cba-b8ab-486f-94b7-5c8a966fa7fc +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,508b7b5d-49ae-4529-915e-a58c29d22299 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49d1df71-a939-426c-8ee1-b7a527a7fe99 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a3137ff-00ed-45f3-80fa-9731c06e2098 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,9ccfa0cc-5e29-40f0-9b62-510b0f60a972 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9de13aaa-0b25-4399-80aa-7d7fdac5b009 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f8577eac-42c5-484d-8af0-6e8ac302602a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a8b3542d-e659-407b-b928-94fd518d8af5 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6e8dde95-8b2c-41d7-93b4-ad5c609479e2 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4459c0ee-21c6-4e76-8de9-ff9b71d8078c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,78f54833-1cea-4804-a08c-44142fb59b1d +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f0b7bdab-b514-44b7-bc46-64affecaafab +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f475a938-6b28-4ede-8060-6ccf02a12aba +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2d488ecd-ab68-4837-b594-7c27cfdf3f5d +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74e1ba2a-7e3e-41f3-86db-d077284be750 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e67ccb3f-81f6-4312-9341-a60b57c28ee3 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4c74e959-72b5-4b8b-913b-7f399b6f0eed +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,94401f67-53a7-4d0e-8635-66a09ee1bceb +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c76242b-aff2-4dec-b835-1cf90d7b65ba +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e669bf1d-9fb4-40f8-8a28-3babb8995cc0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,119bc8a9-9c48-4a2e-b0e2-c1cecd9f8e18 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f91494c3-46fc-4a7c-950f-78b265b9bda4 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,38d9ef6e-c862-4729-bb98-3544dc27f50e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ac2f79c3-9a9c-4be4-954e-242c4cdc40f4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6680c7c7-f26b-4c45-a959-c748fbe03afd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dc06519f-c3c3-4702-bc1c-302af368569a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d2842a31-7a5f-4618-8657-354d1d4b3909 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,40b8b155-417c-430d-89fa-24d68a0677ce +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,8c96f191-fa10-46e4-b2d8-245ec4531788 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,277d945b-75c3-4be1-a264-8161272cd92d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,427caebf-fb9f-4d68-980d-f58389ad6f3c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,903dcb0a-0f29-4934-a7ef-67f89e65cc68 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,edd9bd2d-550e-4b60-8e20-05e2615a8181 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b71f264-70ec-4854-b479-84296af16d2a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fa59078d-4fd3-4df6-93bd-a67c1dd72acb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,33fdf40e-e6b1-4922-a0f9-b9b1647f03c0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5ac4d989-afeb-4ac3-9150-759ee12bc47a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,a31bb58c-e03a-487b-9f6b-b51193fcf909 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2dae3b87-48e6-46cd-9830-6944d89bf5de +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ec374c99-fe37-4d5d-9537-2dbc42f6ef1a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,61e4e561-381c-4dab-b93b-cbd8aeaf0058 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,92e6f071-d240-4852-9c52-d1a76bfe5d1f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20008561-cf79-49f1-8289-86bd5ba29ac0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e64b8d7f-6d23-4f07-a446-1691dfd1a49c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,893b2f0d-1691-4321-8347-9a4666845947 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,522659da-7b03-43f4-a365-3cd15cb99ac2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,250d5a1f-dd94-448d-94e7-7f7a8aa6ad33 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,55910638-a9f9-40e1-9f9a-e9713da407b3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f320e46-3d13-49f8-ab21-5ff7ceaf51e1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a51a02c3-920a-4d5e-bb9d-756b47cddd12 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,58af0eb5-5ea5-407c-b4ab-bf865c6eb0f4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c5de581-8271-4043-b7b1-444f784665e3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,13425ccc-b44d-4f17-8879-a0ba66d18373 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ccf2000-f8b0-42f5-939e-6ad98df026fc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9dade058-6746-445e-a7d6-9c6b172847b8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,1fe08984-bf4b-42ee-ad20-6ae65a1af543 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14cc322c-2d55-4c9f-bf4b-72a956d7d886 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c88767e-807e-4eca-b6cb-31ba04cf4365 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,040e66be-075a-4612-9939-77cba19ce687 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,84061562-2284-4b72-bf54-3eb57833a82e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,950c26eb-bc59-46fe-a823-3ee64e039474 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7b1e1dfe-d84f-46f2-aeea-f5e1a40f8047 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e2baf572-b8a9-4f72-b103-c78240dc3058 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1af35e9b-5d2b-428b-9bbd-179d4efa45a3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,cddbec87-1051-4639-9941-533e4e7d308a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dafd22a7-57be-43fc-99bb-547d729cf55a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,098916da-10f7-45da-a2c1-03291a2b8733 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,16563c45-4874-45f6-bae6-f494f4e3c863 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ef15e0cc-6c4d-4fd8-891b-856b3519de4c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,054ea7a7-8a6f-4851-898a-479481cfc405 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ba3f4938-8bbe-418c-9cd2-c37e6bd6a2ef +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,40eda9a0-7d26-4494-a35a-ecca9c4df02c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b95adf74-e418-4ff0-ac89-143c78966c28 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,ce8d1128-2090-47f7-8299-805406d58eef +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,348a16dc-b540-4279-8234-f2a61cf6f8d3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e0e0c1bf-cdec-4059-9745-7ae5610fee55 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,9c408c92-2a34-4112-ba42-128ec59067e4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,98f770e2-c38b-4a27-8266-7dce886ccbbc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d91670c-9e3a-461f-a127-ab8dbcdb88a0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f0a84881-26fd-4516-9692-4095fb4b9cca +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2e3c6c86-00d3-4173-9234-c4133162384d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3bf3b0a4-b472-46b5-aaae-5fe3d728e1fb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,2c1c49ce-c6ac-4756-b427-6725fe42db93 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d20e801d-b06a-4a21-8185-b7d87d38653e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bf803085-83fb-4d32-9c35-9c00e3320c69 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,3bc35eba-aa3a-422b-af0f-9734a166863b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5addf892-7c4d-41d5-a928-1ed09de8f09f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f7298e5-7855-4c8d-8de6-87af7823e780 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b8813077-9eab-41be-962f-a6148007dd1c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9e1e5aa5-cd5a-4b87-bbed-adec6a54e172 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,98a62473-475c-4155-9590-ff7969247e84 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,a054f615-45e2-45ba-862e-0375a8af6dfd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,19bf7fee-6718-43a4-9bd1-d4f72d11420e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c69cb21e-dee0-45e5-b8f5-65301ccac4bb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a8da387f-03d7-49ff-b360-07e48f257ad9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,daeb16af-d1fd-462e-9076-c25f01635389 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9292f2fa-cf96-460f-905e-d3a209d4b983 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,88624ab8-5e99-4340-9fda-c76eb4a222e3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,159482a8-62ca-4fea-9506-82bdbc5d0c95 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,85a5843f-f735-4b32-afa7-210ed9da2f62 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0dac4b97-5397-48c1-9ff3-f20602c9a2b7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,af0850a7-6f4b-47d0-9541-0fcfafed36b6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3b561fe8-0de8-4906-86b3-022c6d5ddcd4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,72702c42-e11a-48de-ae11-9355a641db28 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d8cee69e-1dca-4b71-9744-6c09e4989700 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d39fdd83-7c42-43de-a9a2-423bd9450db3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e4054b56-484b-490a-8b93-5869607bcd0a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f919f952-69f3-4a06-927e-6985fa0a0af5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1cfd8e23-69b9-4ee2-b75b-68911082ace2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0a786cb4-a8e5-4de3-a4ca-f0dcaa0123b7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,968680a4-ef7d-4fad-bf61-73bf28493fac +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7fc4d1ec-2b7e-4018-8097-16f33f6f1995 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,87e12be6-1018-4217-b2f5-296a4c22e2ea +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4cb8253d-2a9f-4aa9-a5e1-f4e041522b53 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,254f6061-b050-4d6c-8141-82884b23fe8c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6ec816fb-15bb-485a-8c07-52a8e0fd439e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d46814c-e080-438d-955e-088d575fcce0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aa1c4c25-a182-4be4-90aa-04485f374d2c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,7d2afe05-6eb0-42a4-afe3-06df71b000a3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44e613f5-a8e6-4ded-b2a3-2b78cf12ea69 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,89708b10-97ad-406f-b80a-ba00be595836 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8b2847e5-1324-44b8-9547-da2f3488ea60 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,48164aa9-2de9-47e9-a3eb-2d64820da8a0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,29c22612-ce1c-4c2e-bcf5-4d026bcf1df8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3426a2f9-372f-498d-99a7-69179477f63d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3c82f194-1264-4a6a-b5d4-85c3bcd51044 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d967fcba-b61c-48c3-8c07-4cd7ec65e6d1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,105f58c9-23d2-4641-8bf3-c4994fd7ba21 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2936bb51-771e-47df-bafc-6f9cc86f2f1b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6733c98d-c454-42c6-ada9-47e012f680cc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,bbd175e4-e2b7-4033-b21d-fa425335c5f8 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f8d4962-9a20-4cdf-be00-c8455384b14b +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,96edfc7d-de61-4e1f-9808-742c8a86d039 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9183fb05-30df-4b2b-98ad-d16465282c57 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c12f3f07-561a-408e-9547-50b6062b4966 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e19298c2-c3e3-48c4-a097-abd21d7131b2 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,6855aef0-7f6e-41d8-b10b-d0c94c7c3f4a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8d8462a9-4ee2-4057-8610-e075d307bdae +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,89c791aa-5eeb-4334-ac1e-192476f2822f +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1be7b758-c666-4d59-a248-2dadd1df4f3a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f33cdf21-00ae-4f40-ab87-ab4f5f267c9c +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,96134cb7-5fc4-421e-9488-4a46dcfe021d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,290532a2-4f24-4bb4-9ffa-fcaef5254af5 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93ad5697-0b8c-47fc-ad52-ea5d62d2dea5 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3daf8f4d-7903-4cd5-971f-fc74dc93482d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,2c2035c7-4a97-417e-b447-14858f03e48a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d56c44f-a298-4c04-b02a-a7a9106aa44e +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9d865471-67c6-48a4-af38-ac71b7b42864 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7957acf3-c282-4a00-9206-4ebb6085416a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a0dea33d-303c-4fb5-b100-83ed38630fba +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,67fab8e6-1b1e-49b1-a2db-632eef186891 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c9f19d64-0c69-4e1b-8f53-2cf66b46675c +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,25b055eb-9706-47bb-8ca9-eacaeca893e7 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7ce7bca1-4b80-4d2b-82b1-a8c8cc3bc592 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,d21332e3-f320-4d73-b09d-90491b07ac00 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f1cf220-ad81-4383-ae88-9cff4bfce15d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,508bbb11-dd97-472f-895e-5b83d19836db +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4b82a815-972e-4748-9488-ea27e30f345d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,761507ce-5454-4cfb-981a-33dc250cd492 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,95347f69-a310-4180-b3b6-04753f37160a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cdee7201-684d-41bb-a14a-47f74fcb3943 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4bb3ecb2-c5d7-4ef8-a544-f9fa8e960997 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5ee22867-c19f-4056-beb0-7f556d8558a9 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,6f314e98-efde-46e0-8d7c-fdf1f8dfd168 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fa8f3255-392a-4645-8a48-1e66fb3da604 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d8501e12-47dd-4c17-a0a3-9e67a6b5bada +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,409049d6-cac4-4355-8047-4dd426c3fb85 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0be65077-219b-4969-85a1-cd630432c87d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,14a08f56-14c7-487e-86f7-4c709bd02389 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,368d9085-4e97-4bfd-a82a-49645f6f4a2d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,abab3aae-363b-49dd-a490-765d0e8babd3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,378defd9-cd71-4b3e-926a-4d95db3a9cf2 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,5bc6a3e6-8ec1-42db-81a8-bf4df1559d87 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cd23e3db-3aa6-4d06-812f-b39c78da0473 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,110a4d37-26e0-4d01-9648-5457ed127a15 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,082a78d8-72c8-4a37-b2c8-6e39ebed4b0c +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a14a685e-786f-4e39-98ed-9a71cf8ae200 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b1e5deb1-69a9-47e5-8ea1-430d2caca8d8 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,23842caa-0ce7-47f3-87a9-cf433ff985d1 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c22614c0-2c3e-4f8e-96e5-4f4bb1914c85 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ad1fcb4-87e1-4b69-9863-0957e62ef0bb +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,1e39465b-2a57-46e3-be12-64bb2cba0286 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,293859a8-41fe-4583-b8b0-1558d4431bca +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a24b3708-20d0-4be3-8969-577eab427652 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,20.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:19.0, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2a2f9331-ab0e-470e-bd5f-f09b823a27d6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2a6f5d81-2004-4396-a9d4-322c1a4f9205 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e819428b-5c2f-405a-956a-be8ed8303e0f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4ce6afb8-c9e4-4fab-a564-91385dbfb322 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,439b3c35-d41d-446b-bc7d-aa997650c1e4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,78ab0521-2a51-4f0e-a876-406d03dc0ecb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,7ff3cfbf-a866-4878-90ec-8ca6cc3731cb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ecd320c-48c7-4d45-82ac-412d1ee50e10 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4752fbb3-edce-4049-bdb2-738cfd5fecc5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ee59fa4c-2ba5-4560-b959-1066a7e9f19d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b52a354-7775-482a-ab24-765c008d433f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0af96583-acee-4363-98e3-b2974cbc5c7d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9779157b-8623-4aa5-9ac6-efee82877f9c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,891a8c39-24c7-40bb-906b-40d949e53107 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d97a051f-6d29-4c89-8884-96508c2677eb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a46e23b0-a33e-4653-80f3-46ef5dfc66a6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8edce348-b8ea-4a27-94ed-8226c236110f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7986fa66-aa72-48d3-9fb2-3baa22329e72 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,11c694c8-80bb-424f-b8ca-7154ec694226 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c23b94a2-aa93-4910-a21b-0cabeea72fc8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f71a0a7-0970-4440-827d-4addb772b875 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0c0addde-eee6-48d4-bb38-2580c8e39cc4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,df4af0b5-9f7e-451a-b273-618c8e539926 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1765a4f7-fc99-4af5-bbec-e16ba0e65af9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0e68c997-44cf-4725-a1c1-883a4b76e5ad +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59fbdd5b-900b-45dc-97f7-40e2682e2c3d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,909bae45-3fca-467a-9dc8-2fbedb8799ca +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,3eeea309-01c4-4c28-8412-f32111fb1c0e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,64bd7a70-3b2f-4163-836b-0b5c4d7c8b36 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3fc35c1e-e9da-48eb-8317-baa524b1e6fc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,15fd0b3f-e330-4ca7-aa2a-eaeb922d3a0c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9a3454f9-cb51-4f27-a262-745f802fb028 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,85f85b24-511d-42fe-a9b1-8295c8c17c16 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7aa11d6d-6862-43f7-a145-0680ca46c390 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,097d4fd9-5661-4828-aabf-798e320f4149 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6fc222a-28cf-4576-8192-02f5782282c8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5bfb72c2-744a-4bfe-a2d7-35f4b01aecd6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dc2428e2-3f6a-4869-b3a6-be666ece5fc7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7956620d-b33f-47dc-96f8-64241fe5703a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2fce6b87-d592-4137-be09-a01a4c08c7d8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a655161a-8b46-4d9b-a562-d7bbf40ab696 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,736a19a1-919a-4062-b8a5-03cab040c3ef +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,20c0261e-4067-4324-962f-19eb552cd1c9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,436f77e8-e49b-416f-8590-d0d0681fff39 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cd5101ab-3b4f-49b1-99b7-9dbd76fe73f6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7dfdd604-e6e8-4d28-9978-c955a42f9f9c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4668ae40-ab91-4a08-b2bb-ad9ce2ca3ff9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b19a8398-de29-43fc-81e9-d09b3bfd9da0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,77e7f108-d1c7-4eab-be3a-7c4d372664cd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9a1c333f-8f5b-483c-b8b6-2f644b862089 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a16fa231-4235-4071-9a10-8f83913c0141 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,71bd43c4-d4a8-43f4-8283-ea7e64f35404 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,630142e1-51a7-46ad-928e-f941af2de1bf +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b737db5-a38e-45cf-a162-175d53ac5900 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,455ecbfc-4207-4070-9d0c-1d0b6b0d30a3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c27a7f0e-a475-407d-9c0f-d5220276bc75 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,846369f1-5490-4c4c-bd01-3e388248c170 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,90355760-c289-44f4-9f2f-2a5da688c89c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4aa3866f-75bd-416e-b6f6-f580baabc577 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e01b0785-661c-4ed6-a211-6a99d044f82e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,7721e58b-5df9-4114-8414-32dd38be2a41 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,377720c7-48d1-4dbf-bf3e-ee8bbaf60770 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f122220-be3c-4129-969f-30fc10992e18 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8ea80b6f-edeb-4439-9057-8c959d997e4d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fa3519d2-9037-4c7b-8096-37a9452ca90c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aaf2cf1a-9610-427f-859b-fe32fe5c62f8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,42177b78-23a4-4057-8f94-0869d8ee5095 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1496bf45-deba-4b64-96af-65345478ef63 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5aabcbfb-5e4d-4e01-9952-19309bce418f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,38bbdc11-f275-4521-9b99-e371e2a7bdba +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d74428b9-bfd9-432f-8889-514ddce2a84c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,02a98131-fccd-4b59-92ce-cdcfb323c143 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d2443fbc-2d9f-48b2-bac9-2a7596c6fd1f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1d53e7e2-ea5b-4e9b-8695-3b39322a2318 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6045b471-92b8-4577-aeb1-b1dd1ecc2f7c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6f17847e-6983-4736-953d-4e2bc8536013 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4535b4dc-0252-40e7-8533-f17046009808 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a4fcfd00-389a-41a6-952d-01f9816a6af1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,4d145b45-55da-4208-ae5d-d9764ed551b4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,797d087e-d3f3-4511-8edc-40863c923839 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f2911e1-ac34-4bad-b3db-672aa4802dd3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,557fd436-470e-445b-b4c9-4449bff07f88 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2266e85c-c596-4ccb-925e-9eb9999309c1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2db5c625-d6c1-48d4-b68e-f88832e94fd4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ec910a47-2f59-47eb-a173-de04e69af1e1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea04e73a-762a-4455-ae81-7d8f1b0252c3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c69cc0d-83ba-4b19-be61-54f040ab4f26 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b1f0e84d-e61c-446a-a4e5-d38162913051 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,557f3b00-602a-4430-b58d-114f3face408 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,166a3e75-2701-4d02-91ca-0f40e52ca903 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0b8abff7-8d42-44bb-838f-20c1ddf01bb7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59265959-27b7-440d-a18f-f33995cd5cf3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5826f5f8-5667-4baa-a6b7-4063d97f5e4f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,efb29349-5db1-4d4e-906b-73c7e983bd1e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d8d2a2b2-fd8c-45de-acf0-fe0625ae44ab +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5d14b746-7a7d-4c76-9f84-d62f66cfccf6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e6e1849d-0143-4bdc-99f4-318ddf9a9f08 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7ef95a9-779b-4033-8a3a-a67d01406221 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ac7ba90-8503-498a-bfa5-d04f3a41f918 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7caa3494-0997-42ed-9629-74ad957fc34d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a23138bd-3f59-456b-bc15-630913aeb50e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4407f705-5ef7-486b-9e86-98a3ab093fd7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0fcfeba4-8103-40b3-9854-a348016f0572 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,88a53973-789e-4afd-a1f6-e87ac1a2a3f8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9430e68f-7c38-48da-9e7a-8eeb74bcd559 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,80388f10-8285-4aa2-83b2-a9f1709210c9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dafdb146-eb97-4cb2-83de-6999757b1a6d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a84d9108-35e0-4b88-a573-88be51960959 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6d556c56-ba01-4750-857a-9d08c643e882 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c91374a6-f77c-4253-b9b0-19d69392edbe +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,98f615f2-c1cb-437f-8b22-ec230e2af817 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,db62cada-dfba-489c-8f09-a01a7b7d5bc8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d687de0-213a-4ae0-8dd8-f5632782afdf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4ca0f181-f6ac-4d1b-a5a4-a67f38c1b4b3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0966aecc-2e4a-4907-a204-eda9ff6c0be5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c08f23d8-1360-4421-a4b1-ff2b2bf7ca04 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c2c7a7fa-ff25-49d9-9e20-fcd3b3df3bba +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,5cf9ae90-c9c5-41dc-867e-92d80c172c5e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f6b7760-422a-4e9d-bd5a-074506763081 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d291b1ea-7c45-437d-b042-7f5c364616d5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fbe56eef-bfda-47e0-8b08-90d13a1d4ad3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,490ac60f-19b8-4434-98f2-f65ef68ad9f1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2fe2d97-5e34-43ee-93f7-0c745ac7cd60 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0eb069be-d8c9-4e43-b02d-a73cddffebe2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8cc14f4b-fbaa-4e40-9bdd-7f807df9e311 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,05319436-8a4c-4a0e-a368-9b244bbe2df0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,025c8eb2-a5fc-44fa-b689-b8033223cbe1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0ccae2a7-919b-403d-8ec4-be90286faad3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b6b656cc-411a-4a84-9ae6-6276385963c9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7025dc7a-9e9d-49f9-b5c8-5f264fae21ee +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,052321ed-a903-4713-9d95-1b568bf3b344 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a018e319-4453-4c2f-8e9c-7a950adc808a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,f312799c-1dab-41a5-9810-9bcf3c2b1afc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,611f5641-ca8c-48d4-9b22-983db95e6bb7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2dc21e57-af6a-45ca-a77e-f74ee741015e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,66d92747-8691-460e-b045-7d6dab3f73b0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,26386c4f-5ec5-4a6b-95ad-5141b858ab14 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,623c9ca1-8a4a-493a-9b77-15c478ec5249 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,22243fd4-5a51-4784-8b55-86bf6a518c4d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,861c1d17-b574-455f-9e25-762988e46ed2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b5ddca2-111d-44f9-97e6-1ab3c046129c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5bf9aa85-ef23-48f1-af33-2a9440bfbe40 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d0ec518-3358-484f-816c-c22402cf0560 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,796792c5-19d3-40fe-b048-03542308d3a4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a4c52bf9-a1e6-4303-8634-6415c74aed39 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93be3506-f732-4f1a-9788-51cfa8d78232 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27e41540-2560-4b4d-85ca-46e5104893cb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6657a52d-8c71-47e0-96a0-5d08590cdaad +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fc6d5a32-b485-467e-b8df-3e0f789b1bd9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c9ba9c6-56d4-4f20-b87f-5a6201dee8ab +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,3b5eeb27-04b7-4e24-953a-45898f32664c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9df90fea-c3c6-435a-be3b-2f33c17ba9d4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,797dda65-fcd3-417e-a4bb-f2cf7bf1e41c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,97083117-c5c0-49ff-94bf-f518143242a3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,02952ca5-c385-4189-abe1-50d3e9f2237c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39eebfc5-2783-47c5-8f99-424e8197d118 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5954487b-1c6b-4cf9-8d1c-a120079a3b6e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6430044-af4d-41a6-b39b-9319a976a374 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,579626e3-06a7-4fe2-a3cb-65856f33416d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b1b4cdc5-273e-4f98-a120-df9b824b2cf6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a255eafd-c611-4d3e-b6b9-a0c2fa9155e0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b1ef453c-08b7-4ceb-8a64-13004edf93fa +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dd2bfced-b521-4ab7-9716-3eb646c3c9a3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dcfda74a-4361-4777-ab4b-b63f937ec9bb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6443c0b8-f298-4e07-b0e9-13d794088a90 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,67c93426-e735-4aa3-be56-2c8804d83e78 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6abd4752-4fbf-4484-951c-a8b91282ed59 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4db994a7-768f-40b2-8412-5a25b80de636 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,09aabd23-2468-4143-ba18-2d22171a6238 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,89ad5f50-eb12-4681-a21c-e3254f8aaa1f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19318b97-948d-4e6a-a848-71831c450b36 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,898b4793-deb3-46ac-a66a-0941061eb64f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,478ca518-632b-43c7-9aa8-711d74fa55f7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,963cfb4a-9d72-469d-a1fd-b68882a51918 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,062a57af-2c09-43f9-abaf-157ff1c0d904 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72e0d021-57d7-4659-9f41-385475514358 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6464627a-e855-4026-8157-ef7ebf26e924 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,04e2c1fb-736f-46a3-b838-a6ee0a4821ef +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,991cf4f6-0a4e-4cad-ab39-fdffc4552bff +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e16f1637-5dba-4218-840c-f349c090fe2c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c02bdafe-f530-4651-95dc-dec483329e17 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c987b22b-3f00-4a20-baed-3637faeba082 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e3506f85-c08e-48a8-93b4-b5fdf728661b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,af742a28-2d62-4aed-9687-4701dabe0615 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8d07cd76-3446-4da2-bf96-9c6a521598ae +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c4462de-14b6-4e3b-9efd-ac3aa1505ce2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,f2839880-a4d1-4e67-8ef2-025ee0eaef57 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2de727d7-5f24-4356-b9f5-d917f55736c5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,76a8109c-e0ba-4a9c-a6c9-8b959ad55af2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0fb39069-b26b-4960-9949-05aa649c3fc4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80c266de-a955-4659-a62d-cc6d476aabb6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8129f814-3893-4389-a711-a47fb913d5dd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7e3d70fe-be26-4b2f-ad35-f691cf23411d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fef94da4-0fd7-4448-8f1b-1c4c34b72980 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3986131c-1b01-48c2-a113-eaa5a16f6f0f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c77e5dfe-0cc9-4c1c-9ce3-3588424f3f35 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e83132be-7e5d-4d00-9f2d-c0ec154e0342 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,13f63d1a-cd3c-4347-8369-1366a5411562 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cc3589c1-55d2-4798-a795-8602fe3965af +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,656a1011-d77d-48dd-8ba7-9214713e06a3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4e9011c4-623d-45e5-8723-193a440587af +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,266ad2f8-4fc2-4c0c-9aee-fb081e75a009 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,33cb2744-684b-45df-8b74-ec34e431c138 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,44937d01-c9f6-44bb-9e29-e22469b95880 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,19d002bf-c93a-44ce-93d3-acacc34d3952 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6309a319-7bc0-484c-a945-99323a8b8b37 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9dd58869-95c6-4624-8374-4a7f9404643f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:18.72, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,364db96a-5a65-4135-8f09-876d96b4b585 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c1c261ec-397b-439a-841b-578633b61221 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5b29091c-e2d9-4c31-bc08-0397df064fab +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d3c49ecc-267d-48df-a777-d56ac7a401b3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74fbe432-6891-40a5-b18d-b9bbccd15d06 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6fab1c7d-e165-45d3-814e-178b9c1d9a13 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ae23d746-1fd8-4c67-af52-4f9cf6745cb1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f8e9fa0d-bddb-4501-8199-a45351d00f9c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1add0164-a4ee-4075-b03a-28e4535108a4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,18.9,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,42493e70-1d46-4a18-ae1d-f32c07894694 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,364bc009-4628-41ef-8633-da33389fbae9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3a4512d7-b248-496e-83da-30e315682fe7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,31938ce3-73cb-473e-8cb9-1ef969300036 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,faf21310-fd2d-4c18-b72a-ee976b2609ab +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f04e198a-4bfb-4005-9ccc-3aafd5047d4f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,42066c4f-5dea-4759-bda0-9dd92ea74472 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,69e869b8-1acb-4b36-bc18-b68852be2cde +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f221b36-df42-4af1-8548-d143bd3022df +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,de5c9cd0-fa8d-407c-98c2-dafed389a04d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13996b8d-db05-4d4e-b6f0-fbd54186e6fd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,26292edc-ed29-429c-861c-ad32e0987209 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,90191f86-292d-4625-b7d1-505e03f846cf +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8aa01ebe-15e8-4c5a-81bf-4824c4d5decc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d728587d-3034-4cf8-a922-0f25f59372eb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e6434358-38f0-4e4d-83b8-6677abbd3c80 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b61e1a0-ef7e-41ce-8c22-945d4265da03 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ec229935-727f-4023-959a-1095a2229c33 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,cd168228-c8e5-43b3-98f0-c7324e918f3d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0eb4d31c-32b2-4d4d-ae91-f965c7539b3d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c4855ba-f8a9-4793-aa0f-82ecb1d9f39b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b316b926-023c-428f-82ac-10331369f25d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,799268cb-b7ba-49cf-a638-7339a0295411 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,761878df-b627-4935-92e5-bb80668c67af +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,33c35f53-47fb-4533-9e4e-483117155500 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb097dbb-65cc-4010-8903-26950300c4d1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a1a9598-7180-40ad-983b-606a6ddf6546 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b04cdffb-6e5f-41ef-984b-abbef9112bb3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e46b1d79-6810-410c-9168-f71112afb19e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e0603c7-df7e-4ede-9ff5-cae711e2ff46 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8b319129-25c1-413f-b385-7f67114e8f3a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,193a4ddf-2050-483b-9e24-9d75118bb5e0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1607e96b-4cae-46cd-bbe1-35c559a14eb4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0cc2717d-6cf0-4c16-b51b-7138282acc31 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bba9f25c-5449-4ccb-9ea9-35404488fdfc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd516d05-e4eb-41cf-8e90-d9db1c0f01cc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,55ea1e13-b7a2-4352-825c-ee3659256b01 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c369972c-e4bd-427d-9ab8-e2dac4f4b8a3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,47e56918-5b2d-4f7c-8d77-7fb05af8ab51 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8f603886-8c9f-41b4-a32e-ff2a0a57b168 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4d03bf6d-4cf1-4b66-94ee-98277629cf38 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6e5a56d6-b52a-4d28-9726-c7817a15c43f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,8ae3220d-1ff5-483d-9fa7-f4ac86f9c3e3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7307f2dd-e048-4fc0-b46f-29725a6ea9b1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b30e532-6edb-4692-ad78-fe3b983c1f12 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,32ea6676-8f34-4040-963a-cecf70bda5b9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5dffe9e-daec-4795-bd41-924ec979dc0a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94631d39-0812-411c-8b0a-4eef111dce94 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,be1ed42f-efa7-4451-ac43-2c543853f910 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cc1ba6ab-5134-4b69-8d51-651f1528e1de +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f57f0c4-8b2c-4073-b1ad-082a2fd4a59c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,6872dfb8-7187-48dd-9ed9-b086af78b7cc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb375258-dd23-4199-914a-2b4dd744f643 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eb18993c-06e3-4f3b-b1b0-80f7616ce0c1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.4,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a6281b17-601f-47c3-bec7-8563ea607c44 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,322fea1d-6042-491a-8dd0-1876f73f9670 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6654bd8e-c14e-4ce5-8648-e7d40b4c0f54 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7dbe2366-38f1-40c0-a91a-3ad0d4d3f5fc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f4c84b2d-e987-4a6e-a6ea-3b143bdf20c8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9239718-fe64-40f8-8d79-419446f5ac47 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,3e188f44-b3a3-44ad-abd9-58b139deab20 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c0f1c19a-bd49-4cd1-b4b5-8bd3c53447e8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7c79124-eeb3-4aa1-9926-0b0af695bc3d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,94be0fe0-249f-4129-8e3f-269d29c90898 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3305b10-1159-4820-9861-2600452e84f7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cfa7e9fb-d2de-4674-835b-1cf913a1f886 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,97293332-f1de-4c2b-8078-91439f8e41bd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ccb8a32-d3f6-4b55-ae83-4b8b333f293f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1729aef0-49f8-40d8-9856-32222501631b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e2b07389-0ff0-41cc-979b-c66eddbfa3a6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e6c81a63-d698-40a2-bca7-bc608523cbda +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f7ca09af-734b-412a-8a4c-25726ca5bb14 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,236a98b0-245e-4573-a7cc-a325436dbd2e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6166c46c-77aa-4558-864f-0b79caab2a8c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6c97454-4a1a-43e8-b264-5b2d7ab34857 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,93805941-ff5c-4d82-8862-558e7250f56d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,03f9e5aa-7b98-4cf7-8019-36c3ba1f6ed3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5dac994-d937-4372-a3a1-39ccb52070eb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,3f214d66-b886-4065-a5af-22aa27f13698 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f4998665-64aa-45cd-a172-78fcba95618b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f2b1829e-270e-43a9-8253-4cbe88dcda2b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1514c234-f0de-4820-b779-01866253839a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fdbfa024-c1fd-47a2-93c3-ded6e1d8585c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,406e7359-7ba9-43f3-ba91-99ac33543c92 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e4a0ac97-ee16-4909-9952-fd110be20cd1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0c5532ce-9314-4012-a7db-c35cdd3a2a1a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7483c9be-dad2-44ee-87c3-5cbb797a6806 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,d62b5b37-cd1b-47b6-a4e4-4608b1f74bab +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b25ee06c-cb04-4384-9b6d-6e9b6458c2bf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,31845dd3-6bd8-416c-adeb-fe96c55b9515 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7a708b4e-e2e9-440f-9d29-3fa457775000 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0e62156e-82fd-480a-b5c5-98f4f4118af0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f0c52b6e-b90c-47c6-8260-4fc86bc0a876 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,038fc5fd-844b-4551-8531-3a710979d46d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9209c9da-34be-4990-a77f-da39b99dba8f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,51209af1-37cf-404d-8f5f-343259046731 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,6bb731c2-e699-446f-ab60-457a524e5ec8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f6a99749-ca97-4362-b3df-299e6d73e936 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,da5f4bf8-aa50-4fd7-bf8b-0865319be81c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,e8aab4eb-42a6-4d81-b508-59204963f634 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,25e2c103-5682-47c1-832e-9dc49b8f6075 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8a58e3f-1b93-4530-ba7b-c55950f1609c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e47df8f9-c333-435a-b2d9-09043f67a5e1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e64fc009-529c-4634-a08a-9e52ee6f41b3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0a74bbbe-ac57-42a9-ad76-f1555755974e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,866038f9-d252-499f-aa44-fd1e0dfd70f5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e1fd5f4c-eae5-49e3-a88c-6b3b38884316 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39870945-c683-4515-88c5-0241602e719a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,19.5,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:18.71, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,fa9929c3-4815-4845-8f1a-4a5fe37b2a75 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8382a2e0-36a7-4f61-a531-f8ff4e0e09cd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a76091a9-a759-4d48-a797-c282f8a2f33b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,53f88b65-8059-4c33-a7ee-26bffc897c14 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4eaf1bfd-45a5-4142-b96c-939764f14425 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7699279d-5bce-4983-9fc8-16adf0f930c3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,076c81e2-d6bd-4ebd-8204-3389607aca42 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,53ffd333-9ba6-42fa-aafd-3a663ce6161c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4fefda52-41cc-4d1b-a887-e9d054a72dff +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,14fb1327-5e26-42a3-9592-541d80df3600 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fc700cc9-896b-46e4-bf99-f6fa6392fc8b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,46098d8c-76f3-475f-b8b3-081ae15074b2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e8f56c9d-f72c-4f7e-a220-b8489e871baa +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,799c4ee8-1b1b-41bf-807e-abd072bb64b9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,14b282e6-d203-417a-83fc-53f001ad38cc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,1d47cc74-1321-4ac3-b15d-94d81804f345 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2fcc7673-12af-4770-ac96-055d878179cc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,066387a7-f070-4201-93d3-83107123bcfd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,e3a9e6f9-5559-4463-b5dc-c02e581ab5ff +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,591becd1-c157-491a-ab6f-b8507ebada9b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a44b8f56-d54e-4f5c-b745-e8b98159df64 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3bbd52ff-9632-4d64-90bf-9e36a65c56bd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,743b2730-fee6-497b-a013-3fb0a48f45f3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,957c608c-86b5-40ad-8c77-f0ac6b3d322f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,7ae5c5fb-9e98-41ff-9b39-f2017bffc287 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f69d43e7-494e-4fc3-ba71-e75a736ef55b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d0b22052-268e-46bf-a34a-1f25f9b0f678 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,e1a6500f-2e83-4217-9e99-b7f5cf6ab543 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,413a7acb-d1ff-47e5-b846-5334831a377c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca4d2ccd-5ba9-4deb-8db0-2102aedab342 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c6f465e1-e015-4312-99a6-2a088e6f4cb9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bf98283f-cf47-4db6-9801-37dc04952e3d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,afc59312-a926-403b-8b52-fcb166f62e4c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,ca820ba7-d867-4697-8bc7-cfca06fbe0e2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3a583570-00d0-4cfd-95aa-c71b1373b942 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3273afca-c941-499c-bdd0-07cd17090697 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,49984e45-a93c-431e-97b1-4f1511a39375 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3f04c69d-cf03-435f-a1e1-df63d0bfd51e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,980d23ca-0441-422c-82b6-4fdd08a42f5d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b271a50e-9bcd-4054-bfd2-f197e1ecc302 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ab0669bb-1f26-4cf1-8744-fbcf0df7e8f1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aae7f027-622e-45bf-a4a6-766633d4b5e6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,56a33ad9-8dcd-4b7a-88fa-1b942e5ddb31 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,83b21f5f-c4c7-41ef-a163-d4ae593aa60d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fdf2d9f8-5610-4d36-9c90-7996294c425a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,973e7718-3e6d-4b53-9c4b-5b5307cea93c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,033d768d-88b0-4714-a90a-563707b12e96 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b4f2376b-04ca-4e3d-8de4-7b1dc4f1d907 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ad865359-7263-48e1-8700-4f4597c3704e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d06258a6-8a19-48f0-8118-061cbe7fffc6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb2e5007-6fc4-4044-bdb2-e3464f0bdd4f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,f2341794-e87d-4a7a-a8fa-00071375270d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,521366d1-0f12-40c1-b7e9-7f49fc2d58dc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0bc7571f-e468-43fc-a8e9-4b7218b86aa1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1141691c-a488-4fa4-ae7f-e645aa98b831 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3347f200-a169-4608-ae9c-fa76c2db7ce9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,59f6c741-8774-444f-a227-efa54c4d4f2b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5cdf867e-1d53-411b-9e83-fa06eb2fc9fc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1cadc6ef-be04-42f4-98d1-95b29169ae9d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bf7963b0-5031-4a56-a8ba-0fdb2a0157b4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,f385ca44-62ce-4ae8-b52b-e391faf302e4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d4540aa6-782f-489f-a24b-d42940712135 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0562b4ba-4ce5-4750-9cf1-3d76de57a875 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,300501a0-9870-4e08-96d1-e2deecec173f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9e7249d7-a679-47ee-9400-cd125cc6c44b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0d0e0a31-cedc-4309-8bdb-798930aea1e3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,02b929f5-e85e-48b1-9424-c866c60ca4b4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,83a7dab9-3836-49c0-b082-d82e6ec13b8c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f5f52ebc-3c90-4137-8236-47bbce47c050 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,fce9dde0-0cbe-47be-af2a-d07f83d54930 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5567c6b1-8ca4-4131-b0c9-4c520e8a65bf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5cb75b4b-e025-4c66-a93a-fda34b271753 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,6ebad083-8ec1-4ccd-8fe2-e39c30070e96 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f5d5dbd1-3046-4a6d-a484-ebc21cb2a67e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5eff637d-6116-4b3c-a60c-15f169571f83 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e0cf9f95-898f-4d84-a1c0-7079a3fdbf39 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e35ff7fa-7ff6-4f9b-b9da-eff40abbb940 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,addebce0-6281-4f47-a2ec-333d79c95117 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,ea053b59-0a2c-4e29-ae36-03cb588ba131 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cfca827c-6787-471e-a7af-8efe741e5acd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8699674a-59b5-4d4b-b9bc-8955f707e3e7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1165ae36-3f0d-4ce7-bd07-67446bfc88c6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d5651e6-6a06-471a-8d44-566d98c28b4a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee7586e9-841e-4011-9174-5a7b3a654991 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b8a8cd96-8d5e-438c-a1a4-8a03e9a5dd2a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,65ed86b8-c6d3-454a-b378-0324492f0854 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,935e1a02-798d-440d-aaf7-bdeedab8a3f6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,05523edc-f903-4233-a386-d67f09a125b9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9cbad102-13aa-4c65-a961-ac926dd10126 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00a2251a-737a-429d-a143-129390799b5f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,81ae8ae0-b1c9-4d26-9500-f76723228058 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f400479b-a2fb-441f-9480-4e8017056dc4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d3a21abe-a831-406c-9fb7-83b32f45089a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f53c3e54-38d9-433a-8eb7-aa7a270e56da +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f6eb342e-a9e4-45d8-b29b-786703264cdd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ade3bfca-b539-499e-b7f4-db4d53b054ca +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,b5f144f3-c2f4-4cfb-81b0-5d172bedf373 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cd93304a-3e82-4f4c-ad28-e3a926ac4850 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2a87908e-08e8-476c-8f3b-46efc5f7091b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c5d4847f-d41b-41a5-8d1c-5959452d7a30 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bc23ea85-2d94-41dc-a8ca-8dc4e7866211 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9db84d7-c1b5-4edd-8a93-d5970699f0d0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,797e7c73-9b0f-481a-b8f1-6c16f769453b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6334b7f5-e978-4f9e-b5c6-d50510a0055c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,60229dd2-9da4-4bf3-922d-dd16fe2ec005 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,06d0be7b-decb-41ce-8cab-986455e78b7e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b5b894d7-a14b-4a23-80bc-4ed75d9401e8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba6f2a20-5286-4d8c-9053-f518ac6e66d4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:19.32, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d38e6126-cdf7-4dcc-a207-d586fd5f8d8d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b7907d4-8a2a-418c-8569-3617077968db +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b30c07a1-9936-41c0-9027-1a6022a82783 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ae469559-b26a-4038-89b3-1c2488a409fa +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b797418-316d-492d-ba82-9b49a93792d9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b435f895-9044-49ed-9b4c-67a921c6b5c3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,85d59003-f4e8-4e46-81ae-1e43e98aea2a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2acfd66a-e56a-4c1e-8efa-845640cff629 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c8a4d455-e414-493f-acac-5da29d440d7f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c92ed2ab-f1d6-4602-85ad-a361c1f1922a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,daaf815c-b98b-4130-bd42-fa466037b81b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2f5dac69-6912-40c8-b971-95804a60862b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,40c79391-c0c7-486c-96dc-c29177ff6f37 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,82033af5-d2f9-4ce6-887a-2cb7ac4a9bbc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0f32be47-3996-4d2d-9228-5d036dc416d4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,aa5bbf80-d8d4-4cb7-80e5-eef5e4f8aa1a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb3a7257-98f9-4e8d-b151-e398caaf5487 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,212ea73c-7645-4de8-8849-6e17bbe7885d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1a045bc2-5a8f-49e7-aee1-8c4231c0c72c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,807e5c8b-0a59-4c1f-899d-aa8592d86c86 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b7c5a361-9416-4fb3-98ef-faa8a2c171c8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,df917b6a-638b-497e-bf63-f76ee25872de +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,27ac25de-e2f8-417f-9232-e117029e2ed7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca015f5b-2387-484b-b6fc-e40a7a64816f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,71362940-e5da-49cf-84ba-2bc69a5d9f35 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f87f8b1f-3b8e-48aa-b309-430fe262d986 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f7954c9d-e8cd-4722-a2b3-4faf75582dfc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,30206e56-7530-43c3-8aaa-cd39e2dd8e60 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,87521d13-0d3b-487d-97a3-57bcc20b1bb7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,806d90c5-43a0-4714-b2b8-338c3ac0327c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2a40d459-4001-4406-9346-44ef03e0f50a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,45dc2ebc-6492-456c-a37f-645e82383b79 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2d752bc7-ea4a-4989-8a3c-1b523752205a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,716e2179-8d92-47d7-93a3-4ed22b2b507e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c52ec0ab-e240-40b6-9659-bef7df06b848 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7d7d680-d15f-44d7-af12-8fbc16669d31 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,240f27ad-db5a-4509-84f2-06a29dc37bf6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9f48762e-883b-4cda-9f10-3e680c1e6f39 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3ebdb940-f0d9-4b3a-9c02-b3220c67dbd9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e1b803e9-10ee-4cd9-9db7-ade4d9dcf6e1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,df1da6dc-9480-420f-a98d-8afbdeec7b5c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,211b8e43-cc9d-4afa-b3ea-1f3931510c29 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,3f83f6e0-3e4b-45fa-9722-b1c6f9a749e7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,04c951d0-0095-44b5-99c6-ac59007a3be7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,51733491-ea34-4f27-a02a-604d26f58209 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b368d3f2-f14c-4465-b1a0-73223a54a4a0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7c1b457-5629-49fd-8103-98c8c57a8d31 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8de71cde-d5cd-45ce-a31c-f28b8aca36e2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b3ddbee9-e81e-48b6-9ab4-12671cb8d8f5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,092ef174-f94a-4adf-9ac8-8026dc0624ee +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f789b24-93c2-4f60-8f5c-daa863b373ac +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,384110e1-36cc-4492-a69f-5565bb8d226b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c87556ad-763b-4654-bf4d-578f14fc0fe4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94f0125c-d338-40c9-8ec5-24936e94af57 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cdeb956c-d352-4747-b774-1fe16ba1e822 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,96c2c194-a6c6-42ee-93db-ad076d711cc1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,68e50e38-a80a-422d-856a-5ec3218c74d7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9fced048-ca67-4810-8c2c-d7af43d54447 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3f4c96e-4bfb-4617-8f42-1709700d7f89 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4835871b-eaf4-4b11-a1ad-f2572eb3b35e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0ba523b6-4b14-4f5d-82e9-f0025e24bce8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,05e4fc11-d7c6-42b0-a5cb-16b1b7769413 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2b9cf44-3d23-4cfc-be0e-a94b54f32401 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ad83bd25-5342-4c3d-bf0a-237b5843f5bf +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd50d860-bb94-49b5-8ec1-8bd927a06075 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a70b976-da68-4e39-a494-9e1883dcec8c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,97585f53-ef94-40cc-ab47-157c40fa6591 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e3ba1f44-036a-4aef-8a7c-ade33caadef0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0f83063d-5146-4484-a2d1-13b6fa7ccabe +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,faab0c6c-f198-4087-976c-89f2d53d0b25 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8c6082cd-4e4e-4c30-b042-b7a9dc511a2e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,10b96536-426f-4e70-87dc-d23f11103d1c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3705aa64-7d5b-4761-ae3b-2b292e2026e3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aa9f3840-5af1-4c4c-a657-76a7cdb5848b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2d6e5242-c6b2-4964-be3a-7830cf96cc92 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d836cc29-8693-441d-8296-f3b3774eab89 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2a4cde2-11c7-49ae-8052-b3d0e1aa3a13 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,09b5b734-0dac-4754-80e8-d74cbb7ec2fb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,154d2de6-8a69-4473-bdd6-cea2792ac88c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,542c180c-054c-4aca-ab1f-20bcbf98cada +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c60af8c7-1da1-4e02-9b55-328fc4695b94 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,399b817e-fba4-46a7-8538-6030da286376 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e85e2b1e-3cbf-4b15-b5cc-f51ebfe7d005 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f126f119-a6de-49ad-8ad9-ae08fc754002 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ab6f487f-87a6-4566-8598-4f01b3d3bf12 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e0029a3f-1978-4e7e-bb7f-28636637f494 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eca71a6e-3243-4eea-9e2a-b9a135ea9ca9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,07d75b8d-6ab1-4165-b631-8650b7d2df72 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c59db98-2883-48d6-a608-f11f47a21de6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2f4c90b4-135e-49cb-9b75-ab1505a47ed3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c9fc005e-ffa1-4932-bae1-0b06a5b3fa4a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fb5d7772-858e-46d3-9cce-42fa09b8a7bd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5def0e5a-75af-4c5c-bb39-a6976e34ac2c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d51f470d-e465-4b1c-926c-2520b9ca72c5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d8eee36f-8f8e-49be-b17f-8c1716121f52 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a1d02fbd-878c-4aae-a4e0-853a92eba5aa +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,cb77a256-927a-4a4c-ae73-d502cf934226 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ead00986-915c-4bda-bc4c-95cea84dbd26 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,532186ae-5f27-47aa-9550-8c134556894a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,5f11ca16-e98f-42af-9764-06c30156504e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,da4d5fe9-03da-4937-8b0a-cbd968d1d0cc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3955e8eb-6c79-48a4-a1ec-bc6be1d975dc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,164fff5a-9bd3-4e7a-89e6-35c5adce331d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6df2ad30-6efc-4d30-97d3-7a2a975199f4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6e5d855e-7d36-403d-a933-6cb826be5175 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1bf9c1b2-210a-42b8-a75e-49817c369c94 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f33425f-12ee-432f-9a4f-c9e478f110eb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,52729238-ec97-4068-9513-5030c7a4af2c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,19.9,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,09dcf878-c892-4ec7-8767-6d15e44b5b34 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,53bac2a5-4c31-44a5-b53e-e596beb6956c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,47dcf43f-f691-48b5-a97a-dc2d1ef7ad3a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5779f237-d954-4b9a-9a55-bc0c4bf356bc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a4148c0-a7a6-4f61-b6ec-bddc743a213f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3b31a86c-3e33-46fd-9109-91b2d6df4f18 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,a0ff03e2-7ac4-4967-a789-8bb81f55c406 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c097f43e-5c0e-4ef1-bd51-d11bc8f24d62 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ff5453e-a370-4123-a3f2-2a99ff6b83fd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,17297f03-249d-4d95-88f7-09ad8e7c16f4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,790b1c7b-d3d7-4869-8f80-51adcf284170 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,57ad72cf-9ca6-4639-bbff-7bf56b02b6be +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cb155f71-2a75-400e-8c9a-ac7c88dd92f5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,188a3d32-98b3-4b4a-8d85-ff46b5dbe4ae +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc5de0db-e0ef-4d30-aef8-a3a8c543619d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8b245764-4eee-436d-bf1f-67948f3af56e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,550cead9-0d29-4f7f-8bdf-6c388e5994ab +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2d135f2e-043e-4f90-9247-1e77654b8b5a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3229a79c-cb0a-41a1-b6c4-9781fe2b5349 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80f72abf-4654-4907-9edd-77e2dabfe695 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8fea6bcd-2043-4637-b249-4b231366e00c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f53a8095-165b-4b8d-91e4-9cdc0633bc69 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,082bcbb0-6ac2-49ce-aca3-fe9cf877f3f8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,086be268-ac7b-41bd-a558-949594db5c1b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,c6ea9b0c-d5f8-46cd-a67f-2dc25024beaa +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd06cdc9-1c18-456c-af6b-59fa2f073e31 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cfd6229b-06bd-4edc-8896-07e48a6f4284 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,90365898-c7c1-43c8-bb3e-22df8bda91ee +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7f021db-81c0-4f61-bedd-cce090f7f5a3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c2712bd-aa97-4df9-9561-3e9a841e88fc +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e86650a7-5c11-48d0-b9c2-56dd8b4efe37 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,178f8b99-60bf-45e2-ae68-b9b0b6aeb016 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,53d2ccde-65af-43d9-9b4b-4eb187ef6aea +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cba429b3-4b3a-406e-a9e9-d973429b1aa3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0a63bad8-805f-46ab-a788-ee522682a53c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a5b99265-f88a-49bc-9664-24c27cd4ee46 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fa804e93-e554-462a-95a0-d1028ca7fa88 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,779ce7ee-2d51-43cd-86d4-df7c435961b3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f4632743-bbf4-414d-81e8-bf0474ffa76e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,14ddf11c-ebe1-4795-8d4c-6f181dafef13 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,190514db-04dd-4b14-b8d5-f5d04c7640af +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1544fdd6-2280-4691-8343-32bf3e0be5cb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,b64f6aff-5fa6-48fc-9ec3-53d077d36093 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8437be5a-3acd-4532-8b1a-b27b292bfb38 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,89046809-508a-40cf-8230-490c7076dcd8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,90aeb918-2e5c-453b-8c1d-a6a2365aba66 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ec9ad41e-769d-4b40-8575-dba89134bdec +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd2592bf-726d-4529-9bff-c34a4457c49d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,faf9f4cd-1b6f-40ab-8bf2-7128968481f8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d89f0459-9fb3-4093-b83e-07cd70af3fd6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,216d8455-3a0e-4045-845b-a02ae86d197f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9b5563bf-7869-4efe-b3ab-87fc9b2a531b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e614864f-31ba-4988-ab88-761f5912432e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d54bceef-6ad4-4ff9-ba84-2f66f856c195 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,eaf516ae-54e1-4206-84dc-ca3af09ca62c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,564d97c1-b1c2-4bcf-b255-15ea9aaada29 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a84959d6-221d-401d-9ed1-1064297d4c2f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,85404e1a-1654-42a3-9811-4f550fd9bebf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,871c1890-4b20-42b8-8b85-532871f51ee6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20a4c50d-be2f-441c-908b-4d754142b384 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,2dc64697-9482-4b19-9c17-8eed4add5774 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,821615b8-80df-4a1d-88ec-dc9fb673a2ef +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,61970e6d-3cfd-42d3-8e70-eb49c6b83d93 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b534e805-39a0-4ff7-a86b-8d444467b06c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e9097c37-e0b6-483a-9734-14a64d6db6bb +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,38a30bed-dd95-43dd-806e-7598f04a447c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,455a4bf4-2069-4cb2-97e6-9aa054dbb9db +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d07c68dd-1904-4a7b-8ac9-e12a971cab7b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,33e3891e-f0ce-4d16-924a-bd59cf569456 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cc8d248a-24be-435c-9492-af305073a7d4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8b19dd3-c14b-4018-94f5-54fb6748f3f8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,92d9930e-41bc-48c7-897b-3ac98f919268 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,aa027dfb-a7b1-42ce-8d18-5ac525f87c59 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,109fa6fa-ae0c-4bd0-b6d9-ffae2cf74e1d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b6975a84-e4cd-49e5-bef9-a6a0e3490c3c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,102d2ceb-fd6c-40e2-877e-e172c2d064c4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76a20352-80b5-450c-b72f-3c002399fc99 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,718fa7ff-0d81-46b8-9001-e990bac8eb5b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,7a9b5631-fe00-4d7f-b43a-48966e057bf2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d16cc66-cfa7-4576-b686-fdb2a7a66a5d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,841e0bfe-10a5-4096-bc92-b0ca0bf62bd9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4f91f4d9-849f-4d80-97c5-38db6fe77b70 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3a59df94-8286-4790-a243-17696dea29e3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac47c283-0190-4df0-a182-6753dab37d51 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f7b002a4-1bc2-44b2-ad2e-581538b27c73 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e230985e-b571-4885-8452-bc6f636ea65a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,76e58496-5138-434d-916d-8cc853806db3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,05aba364-db4e-4527-ae0b-edeefa0c5e63 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0252f6fb-64e2-4e46-ad09-1191762da6a4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e3e0e84-3f79-40ff-9a61-70cdfac9f2b9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c619dca6-1148-46c1-8abd-153bed9983e8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b52ea1ab-1667-4d28-bda6-fad412c99616 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7325687b-7636-42e9-9b67-465b11b230d4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4d80d0bb-8d0e-44e4-9b85-c005efbd6de9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,15897452-813f-4d55-9f2a-fca890cf06be +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,433a16d2-1e7b-4bd6-bfb8-30097bc238e1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,1a9c0522-e1c1-459d-8e62-abed20f9abd9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80dffa97-dfe8-4476-8166-7c35dba4a346 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7927c56a-03a4-4e93-b640-4720751dc31e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:18.79, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2e3beb51-6549-4d06-965d-131b0166ead8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aef758c8-3929-4f45-a11e-92ab1fab0e79 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3a5da5cb-8deb-4fcb-8bd0-0893a68d667b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3a3e84e9-9021-4af9-89b6-5481d13548bf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1cb6c1ff-13dd-4594-a8b6-49ec631e5a8a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a4020b80-1a47-4127-ae9b-afc3e3f4b6c4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dc5610e4-b755-45f2-a1ce-5307307ad9d1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8eae9a7-40a6-4117-8d51-8b56aaacd00c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,160a5da3-6412-4a01-a745-16c1d9259a22 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,20.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5bedbbbf-424d-45df-a0d5-221d41d3673e +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,edb23132-45d4-480b-b3d9-9af0908fb7ff +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19fbf12b-5a5d-485f-b46f-c9c4c184878b +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5dd24f30-8c1a-403e-abdb-d0fe15600900 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d962ff9c-dc47-4690-9114-fc523f9827a4 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ac211a7-1dbc-4e97-8e43-c79b1439d149 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,3efbc401-d3df-47bf-8e84-29432c1994c1 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,775cec53-f5ae-4a20-a1b5-ed0e3d9c6410 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,599e0158-18c8-4cb8-a996-c9917aa9bafc +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,201d5d69-3af5-4ef1-95c3-c830960c1f76 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14a194f0-d8bc-43f1-910a-89799c43e028 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3125c349-50d7-46b1-9228-ded37d96de54 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e471ebc6-51bf-4bb5-a24d-259e459727a8 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a16e524e-27af-4f2d-b06f-b83daac1c8c2 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,070f37ca-7305-4481-ac56-33c9c009c697 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,d6ca533b-cf65-4820-9eac-9d9f4d509806 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9a5afe07-c64c-4334-b820-691de071d366 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1ab03ace-2992-4427-8cda-a08540dc6a8e +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,87b9f45a-4804-4cb2-9e1d-d389e5336b3a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cd51c356-a4fc-4983-b8d3-47f202acf890 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f56f045-0e77-41c7-9791-9430aa0a49f1 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ba1c3c10-6cf6-4a83-bda7-34a5d6d9090a +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4aab2942-9420-4f11-b29f-12697b8364c7 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73e0f8fb-4e2d-434b-95f1-646e075d965f +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,eb2c5c78-d833-46be-b24e-90ad5cf9f960 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f46e3192-f1c1-4b1c-8f33-42fdec25849c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eb2d027b-9c9a-4890-abe3-f7d4b3eebebe +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7e2b8ef0-36e6-4412-81cd-b2615535f03b +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a64a53eb-b87b-44fa-a994-d5485d0a6b16 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4dc7d3eb-135c-4f14-a68d-06922ea5e7ea +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,997a12ee-707f-4a72-8c9c-f5246fc0e985 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d4a96d47-73c4-4061-937a-b17e86038194 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f5a86cae-8ebd-4ba4-a82d-d78d3828a155 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,b190aa0e-09ef-4496-bee9-45bab8e3d432 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,94c60da3-db65-4ce8-a119-15f15adaa6a0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,05b27ca4-35b2-42ae-aff5-a018b877e80f +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,173e183a-d84f-49d1-b722-509cf962cfb2 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,330a7c4f-77e1-4bc7-9d7f-8ea71a286c77 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6df6af3e-0fc7-4649-a18d-fafa5f2581b6 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8430bf9d-c4df-467e-be1c-887201dc87a7 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2fa3244c-7f56-4b08-bc28-731beac5f741 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6997a17-33c2-469d-bd46-7568002ad3c9 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,864dd50e-573d-4b30-b88b-110bb1cb9c48 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,67732720-4e4e-4dcc-90af-a6ff56bbc1ea +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac668d72-791e-477f-a6c9-1b0b9d1b6392 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a8b32d28-46ce-45d9-a7ba-cdfe0c8753b6 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,765348a6-e027-4de9-b90a-d304fa3905d0 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c10db718-168f-44d2-9474-6f810e5c9e9d +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,acedbac1-5921-4f19-b84d-41bffeda7b15 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,25359216-e455-44cc-a219-ea1d22802f29 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,82cb3b29-2fb3-4254-ac28-fc3a358158fe +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,149d7532-da0d-4218-9bc8-b724499aad86 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13683e74-f080-43da-a421-b6664ab9289c +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a13ab2b-1d1d-4bde-aee0-acf62c94ccf1 +CO2,world,kg/TJ,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,15.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,6a028a08-a98e-4d3c-a342-5e9cb76eb302 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,07fc8f0e-64d2-492d-8267-e1de2b0db96f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,30b51912-1982-49e0-9fe5-05c3862d0ee9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,84e07270-2ed4-4e9c-a1d8-76aa1a8f000a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0a752b81-ac3c-4944-8d0f-ec3a1d8f6c4a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5056f0ac-cf34-4e0a-b5aa-4f2af3dfe764 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,2364653e-9477-4683-9966-dce851ef3017 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97b69dc5-803e-450a-8942-49abe1b52fa9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,53931d3a-f570-45e4-931b-6f7bcc509694 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8385fd48-9358-4cff-ad6d-1df889cda878 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,673ba1d5-b29c-466e-ae35-3f9c51a95fae +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d4747c00-52c7-413b-a797-aca91ed1b5fa +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a5e80adf-aaf9-4a92-8f37-a7b91487a979 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d27541b-2abf-4bff-815f-680915611509 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c99a5650-4f80-4072-a1ba-917047a7d161 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,2c6156d8-52b5-4913-b2fb-7de008b45232 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5a78e094-07b5-43a5-9b94-4155b22cfa3e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,819723ef-3b51-412d-b2ea-516b5fb01111 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,fad1e67f-c0ff-4b24-b36a-7773910e2919 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8d26cc3f-94ce-41af-9910-4d56319a272a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,25e593ca-7f0d-47df-8aba-5f943539fc5d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3e1a7af2-fd82-4497-845f-97f1db9b1da9 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5549752-baf8-4f6f-b385-72dca8d0cf99 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,336ab25d-5467-401a-b399-301266c4884d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,afcc8703-295f-4556-bdc1-fc243dfd01a5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9eb3a4a5-3415-4819-bf7b-9f28aa548887 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,be276595-5efb-4728-ac04-0a18890112ea +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a1f3e4a7-d92f-4c9c-81b1-24c7ed92169e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aae8bc86-e6fd-4916-b57b-4c6c406cabbb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d6b87f5-918b-4197-bf8d-6353308dbd62 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5aafab0d-27b8-4904-8fa4-35745a6de63c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3cfbdf5c-04ae-4616-a8fd-b0d713ecbcf2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4c36dc0d-15bf-4951-8a17-7fd75e160a8b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,53d4f1b8-5974-4038-9f33-931e3be73b56 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3587675a-72c0-4c59-875f-15df9d032e52 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1856ee25-2159-4411-8ed3-b0e730554164 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,fab32a83-3cb9-46bb-8283-ac878f8f3e9a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,23426aa9-7a22-4c71-a229-9f3bb91976ef +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,02dbd6a4-e2bd-450a-986e-52ef8fcfccd6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d8278d2d-3b9f-414b-b6e5-2164ae25d54f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b860e5a-856e-4f03-8ffe-b77381d249b6 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f23d087a-4133-4774-be20-97204b70b296 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e0373943-8cb5-410c-a45b-442ee140eb4f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b8ad0da-4329-4bd1-abe5-2512b0cd3c43 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5ee2c92a-e54c-4d65-aa26-ae0794590ff8 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,03eaa68b-1f28-4c2b-b728-9a47d02e4660 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,61259614-232b-4953-8ccd-235691c358d3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35bb303c-be54-4960-9eda-3861a4e252a2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8021b09e-7d08-4fc6-a144-0f6d5a600b07 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2f69fca1-3e8e-4a71-af94-055361e0d108 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,779b22e8-6108-47fb-8ecf-420f19208b3c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e6894eef-0a1f-4458-85c9-d371e94b8d16 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,73b56d99-44e4-4309-9fd1-ce1567e32bc7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a913b2cc-1a3d-47cf-a8cc-9ec937a223b3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,16e951b8-020a-4aad-80c2-cff70c592634 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cdd7dfff-c661-49a1-bd15-8d2a88c31e45 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e4e80a19-0858-4cbd-88df-341132cfdad7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e8a32374-c8a8-4006-982b-8c5a780d1b29 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f8d334e1-d3ea-4138-b1f3-6ce7df3253b7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b469e485-9445-438c-85f3-b5e9fabd8bdd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,c51e3030-8f38-401e-b7d0-5289210a883b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7232c13-04be-439b-8b5f-ef481f67556c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9e46aa19-637e-4715-94da-7923d44d5b76 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1a636cc9-f70a-43b1-94ce-df54e6177677 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e16da8a-f4a3-433f-85cc-219a3859ac8e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f170e504-77e3-43fa-9eac-3b471c49e524 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9add52aa-d3df-4b6a-8f6d-fbaa920c9368 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e80c2bba-7bf1-42c9-9c79-6477c0f21c68 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c1647f70-8828-4d8e-a7f4-619c40842462 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,6f571932-b9c4-41a4-b349-0762cc86030a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d4c0826-3880-4e8f-b362-d211e620b9f3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,546d1cb4-8eca-4f4a-80c3-6007c2b42b7b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,bacd6195-6e4c-4291-a0e0-7939d5d5cfae +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a4c0725f-c419-425d-b2a3-286f89acf45b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,40d27823-eea9-4455-b576-b53b54785eb8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,765cfe9e-dea3-44f4-b6f4-c47c0dcabece +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a40ce74-ceed-4185-8686-dfac6697b10b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6898e8cf-3397-4356-8ed2-80626bb50c8e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,51edaed6-995f-49ce-8604-8e9e4215e24c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,be4af607-b887-4186-a5e3-cb4c39c5a778 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f4ccc30-83fc-4e66-ba04-158a1d61f325 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,be3939cb-a6f0-45cb-b77d-fe241975173f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4c983000-da73-4762-9b06-d0ab400efc15 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,470dc1fe-b57f-404f-92fa-eeb10731b6bf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0b115936-0152-4756-b168-1e4d2f451cf9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d777509-a8e5-4275-a160-70e9ab355461 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b8ea741e-810a-477d-a2bc-76a1a7d6f584 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,abbdd7a9-1333-4c47-80c6-1ac8b7f82458 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd63151e-4a23-4672-8178-282722057211 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,354d6586-6c2e-4205-9030-6e16f237faa5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,00980a23-6dbb-4ea1-9f8f-4e30552225a9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5f5a360-1dfd-4d5d-a83d-2220427703a3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,13ae6c92-d027-4968-937a-966d90427352 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,79bd5386-6c73-4a9c-babf-bd59c99c2406 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b5af11a2-93b4-426e-bf78-b929293df988 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00d17c0b-6ad2-4c08-b5d6-42c83c42925e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,904388fd-f74c-4f0d-921e-2d5aaa00f962 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,95233b17-b08e-4238-a1c0-5e593215e9a9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa3303fd-821b-407a-afed-ea98b14392c3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1557b4ff-112f-4ff4-b7d3-f74f982b3b88 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7bb9daf5-a0fd-47c0-9187-8a65f427f663 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,29804667-0265-4a5b-8943-23ed2b826de6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5d860265-d83f-47dc-a080-ed2eda48140b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8eefae1d-a7a4-4252-baae-3e0d33df3358 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8ad62d06-dfe3-4440-bcc7-43e96eaf169a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,43f10864-e55b-44e2-9c81-0a38fc13f53c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b5caaeac-80c4-47e1-9782-65fb77797aa3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3893f20a-6dba-4962-90c0-7375440ea27a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,21.1,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:20.17, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,cb6a489e-4b2b-4d98-b1ff-f64dbaf1d94e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ca9bdb56-7112-44f2-a854-360942fc8666 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9efca2a-9b96-4d7b-acb4-22e1ef15668c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1dc141d0-78b6-4918-b3ee-8abbcd916203 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,033f0f3a-440c-442c-b4e5-47261366aceb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c86fbd17-f6d7-4c5f-b9ba-f08713e55bb3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b0b970a5-87d7-4544-8f99-4aa72689a97d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d4ac7e53-5c7c-40c9-b363-d6b084ba676f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3cc49e61-81e1-47ea-9d7a-f8aa82f0600e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0b21f940-8f5c-44ed-9b9c-248b0e36e9a3 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed15643c-9d90-42b7-8e7e-34f139dd586b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8a5bd9df-2ccb-4542-a055-083ec6e4b5fc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a461db5d-4725-490b-b9d9-0ed587b1100c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,81175a43-d859-42d1-b2d8-67ff34d915f5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cbc8e30e-0757-4745-98ab-98cc3de67336 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,60f8a0b9-90be-4cb9-8559-1394e2051c16 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,633a8749-bfeb-4bb7-a7cf-348ad4cdc8bd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e285ea25-b0fc-41d7-8cb1-41815fcf76d2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,12a2cb10-15bd-4811-b596-9320378145cf +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,46fa720a-e0d1-4145-8fd6-34a5b6e0fae0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca32676c-b9cd-4784-b358-ea753181cbc1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ce291bd9-ac34-4016-8ced-0e2cc9fd5bbe +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,53409997-0dfc-4c25-a900-9820314a3643 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7c07e6c7-b0fd-40e5-9d55-fd8b442e52b5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,eb334768-7255-49c4-ac35-5a2797454298 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13d630f9-fe17-4617-85ae-7c5403a3c435 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d0963b69-00f2-4e7e-a1a3-3b1e36870134 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,34da2cfd-8645-4089-adbe-d38996620f87 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bc39e9b3-c040-4c05-abac-695d5897fa43 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94043416-1b37-4bca-a6df-984f4bf58544 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f1ba2d0f-739e-4c51-949a-037905ec6463 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5c4983d7-d8ac-4c0b-aac6-4d9062b0bb73 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,86bf016f-2606-435d-8010-6bc8e2281789 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1cc6362c-6698-4c15-83b5-7c0bd16328f5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b1bf796-b51d-41c1-bf6c-05f0247a4be7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c86e3a69-699a-4dda-b4cf-4333490ea858 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,11e985c8-8819-4507-9155-d328f219f1ab +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8a88a6a9-36f2-40cd-927c-87c34c2d3251 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,529489cf-318e-4f43-9f88-2b3992ef36f4 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a7bb27b6-b440-4597-b09b-5615d8ee19e0 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a60e70c4-b297-49e8-b0f9-09a559d4cc30 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c96ce9c-25cb-432f-804b-0cc2bcf8488a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,055da114-039f-4973-b3ed-3d9365259120 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f970b914-ca4b-4736-9488-090dcd207832 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd5fdb45-275a-4ce4-8195-fe053dfe4f5a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2490a8d8-bf97-4b0b-941e-f95435af09dd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,36937094-6873-45dd-aaa8-c7cccf242e9e +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4c1255aa-befb-41d8-a324-af7037632bd5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2527a7bc-8d51-4ff3-8f9a-5b7fd3742109 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b64150ee-3249-43b1-9738-767df9552132 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,07a7a864-ed10-4555-a72e-d4c90e6262f1 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c092d25f-8a71-4b75-af7d-08d89cd41d1c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,219eac5f-f0da-401e-9b6d-91cca587ba3b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,baf2bafb-00f6-44db-ba85-1f73d2825158 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c60d7955-a030-4fa7-8db5-3a9620ac4c2b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8a3ea336-0d2c-41c8-89c5-932a81d53153 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,13f2c382-ebad-47aa-bbbb-69f76b65484b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,c503737b-5525-4cd0-a622-67c7b8b6aac7 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0d8343c7-b7f0-4cc1-95d1-ddaf22cd67ae +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7aeb58b8-9e45-4347-9a2d-8f50dbdeac9d +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,41c2042a-1983-4d1b-845c-d27ddfd8468c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ce2179cf-f878-4cc2-a4e7-38be5b95e555 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,48096a5b-727f-4c08-9bfc-cf15d7170f6a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,58b93675-a734-4eef-9ff2-2812a9ae634c +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,700d428f-4e7f-462b-8996-0c97e11268bd +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,91e04932-7268-49c6-b467-413733b9a9b2 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fd0cf8b0-ec1b-4c2b-b45a-8e287c9348dc +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1c8bca67-e1ee-4870-8552-6bc96137a363 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0cafd6ac-9eef-4d6b-a6f5-6b8a2b41adaf +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,e13fce53-cbf9-4701-b494-80953427cf59 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,24994097-3359-4d5a-81a6-3d4fb815d712 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cf1271f7-dbb6-4992-8a8c-4e725458188a +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a41c5449-8f97-4453-9a24-2496c11b7b67 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fca83b97-f344-47db-89e4-09baf8a7e6ab +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,75b63f3f-9096-43e6-9f54-fff62c38c026 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,42532755-588d-4b36-8762-29446e2e2f5b +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f6688792-3c34-4fee-bd20-3b64ef281dca +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,45055c5a-91d9-4748-8f8d-25ae48b866d5 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1f1194d8-dda5-4869-8a17-2c22f91a255f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b671f46c-3952-46eb-9fa1-2325ccfb8163 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,18c86725-9439-4e01-8f52-91d87817d3bb +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1073d581-26f8-47fc-99c6-995263e77a73 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,38340d29-d4db-48e7-bec8-bb5d201e3a75 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,383bd6ed-1003-4354-b99a-228e9a368892 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f8b6a316-b2c5-4be4-9b89-9339850c3e76 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9a26faab-ac1c-40c6-a2d5-519ce8b4e603 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94bd8ed4-e90a-4195-a2fd-d7633b4db851 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,6d2429be-0f95-435f-91ea-721ac0c7a540 +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ac6791f6-10fb-472f-81bd-716329a0360f +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,04ae11c9-6e84-4c5b-a11b-6506ad1a3cde +CO2,world,kg/TJ,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,9f8f246b-0014-403f-9b65-d7733b0e98b9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3dc6ccd4-5eff-4cba-b8ff-03f427fcc4e1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b6593407-cc46-45e3-b6c6-00df4792d96a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5d3e8084-82a8-4e60-9608-027af7c0f00b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2efaef0-b525-4b2c-90cb-85cf23031aee +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,15b961ba-9510-474e-9f16-c796330a7a32 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0412e3f9-8d61-4582-be7a-331284abf8ce +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,27d0a0b3-94d6-4b0f-bcab-11477f440091 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1bb6d16f-350f-4fb4-8dee-a7f3b981ef6e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2504f6e4-3987-418d-8045-172a5761e571 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e4f15af4-f7b7-4f1f-9d9a-2293a07a9881 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,355406bb-3f4c-4785-9d74-22cf9dafbff6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a64542f5-d123-4a7c-a471-b92503ace29b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9f2226be-b725-4375-a3e2-d22c44c4e1e9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0f3adc0f-0436-46f2-b4bd-a4dc8a15f2e6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b99feab4-c36e-42c9-a42c-4dba16be4157 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1258e3c6-818f-4d37-a574-a41f44aa1b5d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b97abd42-e9cc-42f1-8bb0-5fba71cdd332 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,871ec3ce-7757-479c-8f66-6a91ce0d8f33 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,42382e4d-4076-4b41-839f-c5dc2f153fdd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ff41a0a9-aedc-4c7d-b63c-2345ebf0dd2d +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,90edc051-722d-407c-9843-0a4211ae842a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,51a36f28-58de-42c9-baaa-86e239946243 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,87f8a621-037c-4f0d-8bb6-d02d0dd66b1a +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d13b5879-0668-4cef-8b75-f1ca752d6e35 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c25b5554-4da1-4753-bb90-69ca14ed0c14 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cfdca711-43cc-4c6c-bd7a-0d4a39425eb2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,5b664cdd-4317-4965-ab6e-c30aa251ef6f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ca327048-4c07-46f5-a349-c399a7c47752 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d21a940c-875c-4499-9303-2362d75051e5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,74f82adf-a18c-462b-aa58-09b5258a7e4c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,167939d8-70b9-439c-a188-95f2a22e8dda +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c76ba72-44d1-48fc-93f4-c6d7dc3f0692 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cda77590-2c0a-4d35-aaef-81381f3a9050 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed5cfa90-5e37-48f3-ac6a-aac719b222b7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,933d0fbb-3bf3-4a4f-9b6d-7a5b2949640e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,235a904c-42ca-42b8-bac0-08c336e18a47 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5dc5dd93-c82b-4231-a366-c20f437d3caa +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4e765dc4-f57b-4b15-8b5e-cea4f4dc1ca3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,bec851f2-8d86-4104-a537-e849035942bd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b34395c8-76ad-4105-a7b0-6f993e9f5fd1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b31b0ecb-f88a-4c67-a097-256e2e556238 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,7799adb0-e8bd-4c97-9e5b-cccb6f8337b7 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2f6af810-0bd9-419d-ad75-2e98feae0b9f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3d0aac41-1aeb-4fb3-9e26-a7a13d17c2c6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,15d72e60-402b-497c-ba69-80560dda1ced +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97bc0345-d90b-4b11-b728-dec1ff9cf61f +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,99d644cf-d659-45ab-af4a-e093098b5caa +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,09772179-932c-4114-a7e4-d49c84689b59 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,065001e3-02fb-4dd4-9077-3c5d678d30db +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d44dcc1f-626a-4805-8a92-ab0024748d25 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1d737351-d7cd-4335-ba7c-c10aa794e50c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9f8f8e46-6bc4-4dbe-bc8e-a763a1bbdab5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8710708d-6005-456c-8bc6-0f78e3a185aa +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ce93b455-a38e-4522-b64e-71c635ddf7f0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f87df20e-2a29-4a8a-8f42-2b0c765d57cf +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,06e97981-da21-4492-9c9b-b0ebf58dc052 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,5882b342-39fc-4da2-87db-949a9a5a26a1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6a8aa02f-afe9-4bdb-afe6-82c34a001c00 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ad5f26e9-b3da-42a4-a9a1-a432035d2d6e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1507c178-907c-4856-9f5b-2d35fb393a31 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e2cba49a-1bd4-42a4-bd16-e57446fa7cd9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d48bd093-f434-42c0-9175-038ba444ae67 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a3f5f943-5f43-4828-aacc-72fae4a33261 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85a510d2-10e8-4912-b588-bcb03031ebe5 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7c5568c5-219b-4d3a-8073-a2ed6787e78b +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3597379f-8522-42cf-9d7b-c6d29c4cd1b1 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,91276230-e632-42bc-86d9-4a9f5cbf39d4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27b2efa6-8607-4607-8d70-4b4514156d71 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1591ad25-3e85-4f95-ba5a-1b3150b9327e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8b5056b-5e8d-4926-8fc5-835340488f40 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,10bf8578-98ae-4f6c-81bd-efe5f26d3f15 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a6e8e5e4-9f26-48d6-af8e-b2a0b6e2b5e9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e0d9fbae-f98f-45c6-96f4-de82967f55e9 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac723e72-60ab-42d7-8768-ae11641d9be2 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,cb717d83-2884-45ec-a012-981986a170d6 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,51b380df-8bb4-4fd2-aec2-fec584f67378 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1cd1b2cc-2059-4fc2-b52f-f9b9564e9b8c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6e92eb23-40f4-4c35-87cd-81e594507c9e +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6a71a85d-b16c-4ed1-983c-941bdd5b17b3 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,df42d325-9b11-44e5-975b-1d4cb23810bd +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f9577d74-280c-4bb7-80d0-c48a4da9599c +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f2597fb-789a-40ae-93fd-dba2a37e4844 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ebda70da-0700-482d-8e1f-7ca530139606 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,6b17ae83-b2b9-4d76-9211-6b52911e9bf4 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6980d5c1-53ea-4ae4-b7e6-f5bc63b15946 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,77468e5f-a534-4e7e-bff5-2b88ce68a2e0 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,db8a7fb2-92b2-43a4-86f0-e6b9c4e60c18 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2252a01f-783d-4063-8f21-ff57fd20d3e8 +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3098585c-74b6-4121-a366-86b5548ec2af +CO2,world,kg/TJ,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,17fed60a-d595-444e-bc04-47de2ead783d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,de3a0f91-40a9-4fa2-83da-9fc1d77ad75c +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5998741f-ec62-4383-b850-9506e171a0e7 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,075a1759-6040-45e6-9543-569f88d449b5 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4dbd602e-04cc-45cf-8f83-8dd8894a7996 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,532cf565-1bb6-40b6-9e1b-3e8ebcad67a4 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,78824a79-9612-4e7d-9f0b-8535d83804ac +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,341b13ea-2bf1-4d8f-a26e-a46cf7530871 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c3919ba5-5d6b-407e-be1e-45ac62b44900 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8db0ff2d-4167-4dc1-b9ad-e6ca79ea6ad4 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d26e80d5-fe53-4af6-8b0c-366bbb06cb98 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c4fda172-87fb-4a44-ad2c-91d5cad3159c +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,bdce22a6-3f7f-4893-8e98-a45918ee1e09 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,982dc024-2f1f-4ae1-9363-ee3a92ac2e47 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8df9da10-2761-481e-ab1e-836aec771fb8 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7fd3bfe7-28b3-4f6d-9c57-87492a6f7627 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4425cbeb-a99c-4773-859e-baa2dbf82dfa +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,da340610-cd07-4798-9287-81199b9ef062 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,41e24ed7-4ca5-47c5-bc8d-202f2b15d0ad +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b8df9a27-e088-476a-ae78-3703b2999b31 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0668818f-2cd4-41bc-b5db-334bc3a12718 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b9981f55-d751-4a92-8013-e37b04a72f95 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3ad639c-a635-424d-ad8a-a4c23bf2c45a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5ad56968-1996-41c0-90b7-0884390da612 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b46e00a1-6401-4311-b837-22431a3f46a6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,63e47db4-93fd-4d4d-bf28-adf38c0ecf20 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,16dee155-ed98-4617-9854-030fd25b5984 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,fcddcf7d-5a3d-4a02-b546-55ac77b4c74d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d63e294c-fca8-4d1e-a52b-cb0f07dd658d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,23ed21b2-d70b-4b90-b396-58dbc3dc3e01 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7f05ec72-cc9c-4372-a62b-c5670bef57c6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,87595275-b63e-40a8-8116-8cec671e0c78 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6050410a-e2c6-4417-be5f-0c2b70bda45b +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1a412fec-384d-4c7d-a609-dfc078a9c141 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,26183447-951f-4aad-8ed7-bd5bd06fb79f +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,60968f01-6680-4922-9a48-46ffa1bf0d12 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7811c1c7-d223-472d-8ea2-4ae1609bd9fd +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fa9a7cf6-92ee-4f1e-b3bc-6604eac8be5a +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2fee1bd-26b5-4096-90c3-75b5659e27d1 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,69425e1a-757f-40a5-bde4-f377781b3c7b +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dcec3270-d9fc-4ba1-a535-fd32c2c9e074 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2dd358bf-40d0-437f-922d-8c91f488357e +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,67110adf-1aa3-46ce-8187-40335d4d7618 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f29b1cc6-e455-4a44-a5b3-949690dcd94c +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,15f7a9df-ff5f-412c-9307-9f34c110606d +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,3d36b6e3-84b0-4fa5-b2d2-62ca219982a8 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,06b48b19-a19c-4777-9dc9-ac3ea4b30162 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9caea00d-5690-49c1-9f35-8f9320b4d7d6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,59e7ba23-2495-406a-a4a5-238fbd000a78 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e8a258f7-125c-43bb-a842-a19d376587a5 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b22665a-12cd-4b36-be83-956c3348f268 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1e2d5521-5209-4e2d-b4e0-972aa98891b3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6f48ac15-ca9e-4002-8ca0-7d87ac77e04e +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5afd4252-e28a-4961-b012-326144bd5275 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8ce823f4-b527-4897-a4dd-f4f60d8797be +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,894a7e81-7cf3-4206-a85b-8de551d85bcf +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,03bee2bc-90b9-451f-98f1-ee7763f103df +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,06b1e697-d0c5-4f03-87b3-9f66fe8a8565 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e795d391-2129-48c7-8f42-8ef02d680293 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae4522cb-74c0-4eb1-90f6-520c3c27aa6f +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,56f4fca7-1cf7-43ef-942f-e6170dc3c692 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ec5b8858-2acb-4a2b-8647-f5842f748c78 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c7efb5a1-90ab-49f0-a04b-4b2ba8f56492 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a2d03ae2-dd75-47bf-ad23-b1250df15ff2 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd12d46c-27e3-43a3-8700-437b70a17159 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8890931-e0a1-46d1-a0e2-9528c59650a7 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,4d87d537-0a58-4a5a-9919-b74308575ae1 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6dd1799b-058b-48f7-8f38-7f271e91fd29 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f5825d9-78ff-46fa-ae0c-f7c00184c5c8 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,06ec8bc0-af99-4d16-bc61-cfb1ae372ec7 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8bc1d464-da37-4a0e-9e13-f19928149010 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,03b1e9a2-799f-452a-a881-ea6385ee2976 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,9a506230-7c4f-433e-ab77-e0719b464482 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,762f6a09-dc29-4dc2-a401-07897b582b65 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6722e6fd-cab8-4c3b-9455-dd77fce8f0c6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,17fe3aae-c1ec-4d0f-a1f5-1a67cafbfaef +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,206603ae-bb8f-4b17-a028-3ff2961846a1 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d6457615-492e-4b60-a935-696fbe1d6ff3 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,099c84ad-cca1-4ea9-92e8-6caf491f0564 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1ff0aa15-54f1-4770-b680-643e796b34d9 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,21538348-4a4d-47a7-ad60-dac2643870d7 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a584fdb9-e175-434e-a2cd-12628b1d3891 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,be080039-f463-4ab4-991a-0917d1f88066 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,48a43ad1-c359-4df3-a59b-b59f3c44ac69 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,585bec60-1b6d-429c-928b-38023d6f2b02 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7aafe2bc-58df-401c-af3c-e9550a9f93f6 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,761fed93-9cec-48c7-b605-f0b63bf26d27 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,9b18d9a3-4d9c-4f28-977a-3379d3cc42b7 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8b02420a-a285-43eb-9484-47f9827e255b +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b66216cc-347e-4767-aba9-586c8e93ac31 +CO2,world,kg/TJ,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,15.3,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,95d59eef-ad13-49e3-acc1-bfed28de583e +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,30.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,65f62cf1-f1d5-43d5-880c-b67d464efd6a +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,30.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2708733-cc21-47df-9039-df03e6e7b897 +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,30.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,e950992d-9339-470f-9302-83b5858b6083 +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,30.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,423a3060-edbd-4c14-adf7-d26bf6ed377c +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,30.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d507652b-5ab4-4623-afed-ccaebb2d5956 +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,30.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,c8fd1158-4b81-4053-801c-0f901890b37b +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,300.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a03afddc-069b-4b4e-84e6-cfbe0eefed0c +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,300.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9f92bda9-4b19-407a-b83d-3ce963302c0a +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,300.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,cbe1c92e-4d76-4f7a-a6d4-ea41503ad95d +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,300.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d1a3c66f-85fb-4574-880e-3e24ce9c76ba +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,300.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,693bdbf6-c4f1-406d-92fd-3994160ced7f +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,300.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,a98d7c1e-d0da-401c-808a-da677fe65e7e +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,300.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f7ef97ca-c883-402c-a0da-eeb2ec2225e6 +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,300.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,75e4a1b4-8a8c-43a0-bfd5-c075e6eb0e54 +CH4,world,kg/TJ,"These CH4 default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,300.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,f1f703ba-0391-439e-9150-3820a58f8a47 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,0.1,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5b5915fa-89ad-4838-aa61-2a63b300747e +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,0.1,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dd962f5f-a7a1-4875-948e-978d21127ced +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,0.1,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,deadebe2-278c-46e2-96cc-a509c3fdc74a +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,0.1,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8473110e-0935-4cef-a41a-0ad6eba44aad +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,0.1,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,698cc5b1-141f-45e2-bbe2-4eb6dfa9699b +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,0.1,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,85187603-420b-45cf-9c5a-aeba8d6dcdb5 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,0.1,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b9e9ea0-6473-4b53-abb0-3dbf7c3844f1 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,0.1,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,135306bb-d7b1-4a62-bcb0-e34334610dfa +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,0.1,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,4b3f16d3-c314-4a25-bb0e-8adecaf55e8c +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,0.1,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,00a63e1a-fce0-48b7-80a6-fe91d9f3277c +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,0.1,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ab84447e-6950-4e88-a8b7-f16ac82441ea +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,0.1,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,f87d5417-d7cc-47af-b240-e2a17906efd7 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,0.1,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44d804f1-a180-43f5-a350-da2aca3d7ff3 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,0.1,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cf4493dc-81f0-498b-938a-16ce4c0226bd +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,0.1,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,8299fcfb-3d15-42ab-96b7-8ea60a1c56c9 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0776f2c7-bb95-42cc-b0f7-7666b881a8bc +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d3af41c4-d924-40ce-90c5-b745792e31fd +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,6aa3c765-072e-4dac-8a3c-33a4d3cad308 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b0c15f6-7e88-4402-9057-bdd08b256e3d +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,08c698c4-149f-493e-bad4-7dd9ec2df9ac +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,943d2520-e65c-48f9-941a-a8db76265091 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,4.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,143ec670-2c06-4b81-90f9-bed5543e9a4a +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,4.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,058d96d4-0768-460c-8c39-0bac21460679 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,4.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,8458bf11-fdef-4e80-87e7-ab61cd8c30e2 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,4.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a04ed513-0e99-4039-a677-25c13606ca28 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,4.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5b958d65-a824-4ad4-adc0-5a4baa7fca8c +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,4.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,1536389e-9ec3-491c-a5a4-ac1efec9846e +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,4.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,da970aa2-cae6-433b-8bbf-9bca53d92393 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,4.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e547a95a-1464-4538-9173-4a7ddb1490e2 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,4.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,e6210822-426e-4231-8ad6-122e5bb3d8a3 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,fuel-combustion-consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3f7f8641-d17e-4adc-930b-55c5f23aadc1 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,sampling-scaled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3345bba6-fe6e-44a5-bed9-c7e102fc7660 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,modeled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,e18dfc89-7a8f-49d4-8719-c09a99f020cc +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,fuel-combustion-consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,934b5f98-fb68-44ad-9688-abd54790fba3 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,sampling-scaled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,016ad13c-19c3-48f6-812c-4819626dab47 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,modeled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,476d98e8-6d3b-461e-968b-ea0a17a8b94d +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,1.0,fuel-combustion-consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bfb5fbb0-44b2-4ba2-a06a-f56eb0f0f15c +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,1.0,sampling-scaled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5511fa0c-df6b-4132-b0cd-e5255bc9c875 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,1.0,modeled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,12e55d06-2688-4f44-b4ec-e770156e0b3e +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,1.0,fuel-combustion-consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ed99afa-c6ad-4d08-ba43-5c1fd3b72a3f +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,1.0,sampling-scaled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c16dfaa9-73c9-4dd5-8351-aeb590650b1b +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,1.0,modeled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,f19a315b-0efe-41f5-babf-3c9b7de4f47b +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,1.0,fuel-combustion-consumption,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c793a802-6095-4079-9502-b5a4f24aef4b +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,1.0,sampling-scaled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b558564-0706-4678-8b3d-3ee7d77bec8b +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,1.0,modeled-data,"fuel_type:Charcoal, density_value:208.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,dec2206b-9f32-4f16-9fd6-dd91716d6945 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dbe28011-2f7f-41e8-968f-b857a0304131 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f8ee28fd-087d-4a32-9be5-cc67c70a41ed +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",1.4.4,world,4.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,fb7d8e38-6239-4e08-a178-f169e74d2486 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5761fe91-f9d9-4f21-9f29-8e5d1fb6ffac +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d69ef1f6-1a8a-4a52-845e-b9e4902570d9 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.3.1,world,4.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,ffe92b26-c714-4be0-bd5b-f66d0d36045f +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,4.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20f2205d-7069-47d2-979d-3629a083fb15 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,4.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd31ee42-ac6c-4296-bc06-eeddffb32bce +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.2.1,world,4.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,2bbb9dab-115e-4de4-b31a-b6dee945d57a +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,4.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85596676-1eae-4133-88d0-9f46d922ee99 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,4.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,697c5de3-caa4-427a-a92c-f1ec8ccded7e +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.1.1,world,4.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,5a9748c0-6aa5-4e4b-9c91-50ab4818c2c9 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,4.0,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,30711923-dbef-43a1-aa29-77a0f5916624 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,4.0,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,64e9fd58-596c-4b81-951a-3300f84b8969 +N2O,world,kg/TJ,"These N2O default emission factors are based on CORINAIR90 database, the CORINAIR1994 default emissionf actors, EDGAR Version 2.0 database, National Communications to the UNFCCC,Berdowski, et al(1993 ),Radian Corporation (1990) and USEPA(1995). Additional research is needed to improve the quality of the emission factors ",I.5.1,world,4.0,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,be148c64-075f-43fe-8a2e-fa0ff09fa5c4 +CH4,world,kg/TJ,,I.1.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bfd77f59-033a-4e32-a45b-80cca333c401 +CH4,world,kg/TJ,,I.1.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,55dcfb00-d3c3-4244-85ab-e59bd82b068b +CH4,world,kg/TJ,,I.1.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6c557c9c-7750-493b-9d8a-55c08a539d07 +CH4,world,kg/TJ,,I.1.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,33644260-c576-4a84-9015-0759e1540fbe +CH4,world,kg/TJ,,I.1.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,78f2341a-b7dc-4aaf-a458-67fbe6232d38 +CH4,world,kg/TJ,,I.1.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,81047dc3-2a22-4a5d-9d5a-fa1ff317b0bf +CH4,world,kg/TJ,,I.1.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c07229fd-2afe-417d-a4ae-70674075074e +CH4,world,kg/TJ,,I.1.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b21c323-9eb3-443d-937f-3e2f41ff88ad +CH4,world,kg/TJ,,I.1.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,293cd938-4c7f-4f80-9710-51a7399ad398 +CH4,world,kg/TJ,,I.2.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a9793d52-f984-40e7-9941-6f28184be7e2 +CH4,world,kg/TJ,,I.2.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,91f8ca6e-9c45-4256-8ca0-07db8d677e62 +CH4,world,kg/TJ,,I.2.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cc2c2c0d-0896-4f68-b1ee-5fb61dc4f54c +CH4,world,kg/TJ,,I.2.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,619ed7b9-a0e7-4158-8885-7be89fa04263 +CH4,world,kg/TJ,,I.2.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,30cab6d5-0bf2-4d7d-ae6e-778e9fabd7c3 +CH4,world,kg/TJ,,I.2.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,91c83657-a1fd-4aa6-b818-3b290f736819 +CH4,world,kg/TJ,,I.2.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,28d63a9b-feff-436c-b98f-e0d3be680e4a +CH4,world,kg/TJ,,I.2.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8df62b35-9269-449e-9d55-61b4fe25efa1 +CH4,world,kg/TJ,,I.2.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ef1bcf77-14bc-48ec-b0ee-c71ad50699a2 +CH4,world,kg/TJ,,I.3.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7048fd88-1d5c-4fc0-8467-6d8362529754 +CH4,world,kg/TJ,,I.3.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,acfeef60-5dfe-4165-999c-4f51e52f2e76 +CH4,world,kg/TJ,,I.3.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,716c9ced-508e-4f3d-bc33-2ed4aefebb58 +CH4,world,kg/TJ,,I.3.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a899de46-e705-4099-bf55-db19a9e19579 +CH4,world,kg/TJ,,I.3.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,78f73294-8bea-4075-a70b-9b85945a88f3 +CH4,world,kg/TJ,,I.3.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1c7790ba-2811-4e69-bc23-cc5a8cd045e2 +CH4,world,kg/TJ,,I.3.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d7c9a962-422e-4765-a5a3-f79fdd9085ff +CH4,world,kg/TJ,,I.3.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6224bea-74a5-4fb0-8feb-9e5391564302 +CH4,world,kg/TJ,,I.3.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ce46d8aa-8be4-493b-81ce-ba4bdf0d5bbc +CH4,world,kg/TJ,,I.4.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e8c47e35-1eae-4b1d-b28a-a6b37930b7b7 +CH4,world,kg/TJ,,I.4.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1cf778ba-0155-486a-8c6a-0079ba9eda3b +CH4,world,kg/TJ,,I.4.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3abd3d0b-6663-4a9e-9b79-f69d9e90a97f +CH4,world,kg/TJ,,I.4.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6ab16d17-476d-48f4-946e-294ae0e894fb +CH4,world,kg/TJ,,I.4.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5b466a13-56ec-48b1-9ae3-f15b73c35166 +CH4,world,kg/TJ,,I.4.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a367228d-2b26-4bfe-b4b3-61cf49946964 +CH4,world,kg/TJ,,I.4.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d4de3ead-8270-4cf1-8d8c-dc058c654c10 +CH4,world,kg/TJ,,I.4.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9bf9dc7c-afa7-4f39-a92a-cf1ff156b0b0 +CH4,world,kg/TJ,,I.4.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,3bba40d2-35ad-4183-8e6d-5730ed52cba0 +CH4,world,kg/TJ,,I.5.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5f6fc0b-cd9c-4671-88d2-9856288cf40a +CH4,world,kg/TJ,,I.5.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ce688604-2ed3-4b55-9992-9031f53b87c9 +CH4,world,kg/TJ,,I.5.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f0d737d2-8a8f-4d33-afdf-c4da7e9ea140 +CH4,world,kg/TJ,,I.5.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2c0654c0-f03f-4146-a30d-ff40e1a0bc0a +CH4,world,kg/TJ,,I.5.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e83093f3-32b7-489c-b85b-5f2daceff375 +CH4,world,kg/TJ,,I.5.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a27a0583-ad2b-480d-90e2-653cfac0955d +CH4,world,kg/TJ,,I.5.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d908b340-b690-4427-9db1-bd49223366a6 +CH4,world,kg/TJ,,I.5.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,394bcca8-f536-4df4-91c8-047ece7fdf73 +CH4,world,kg/TJ,,I.5.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,816cb386-3270-4d9c-a8f0-de9c690475d6 +CH4,world,kg/TJ,,I.6.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea185e4e-4c3a-42ee-af56-009f1f5fe430 +CH4,world,kg/TJ,,I.6.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,192798b1-3c32-4bfd-8a55-b7f4d8db8769 +CH4,world,kg/TJ,,I.6.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,981da196-3b42-4018-9318-b7fa60503eea +CH4,world,kg/TJ,,I.6.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,46498e83-f990-4b76-adcc-59bda39605bb +CH4,world,kg/TJ,,I.6.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,956c5001-155d-4474-9ca3-ba6c55f1fbf8 +CH4,world,kg/TJ,,I.6.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,930623cb-abbf-4da7-9ad1-21ee6bb81c78 +CH4,world,kg/TJ,,I.6.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8bcc4229-3802-444e-a4c8-aeefec5e512f +CH4,world,kg/TJ,,I.6.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e61cb3c6-28f0-4e64-b427-f7b7568513da +CH4,world,kg/TJ,,I.6.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,78cf8f8b-ed2d-4ccc-9d77-634ee0bba3d7 +CH4,world,kg/TJ,,I.1.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,81f7022e-4ed5-4e57-ba67-b76746d57902 +CH4,world,kg/TJ,,I.1.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1484d8f1-a666-4dfb-9f95-c44adacd327d +CH4,world,kg/TJ,,I.1.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,58f7d3bf-0322-4582-aeef-39bd900c800c +CH4,world,kg/TJ,,I.1.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7af104a9-a0d1-4566-9edf-bd88f56a4ffd +CH4,world,kg/TJ,,I.1.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,358860d4-0129-4efa-b70f-a655a8cfa823 +CH4,world,kg/TJ,,I.1.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,316153f9-0aca-498f-8637-47532a3d5570 +CH4,world,kg/TJ,,I.1.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4dd8f7c9-ae89-4b51-9628-9d9b562635d2 +CH4,world,kg/TJ,,I.1.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b970a7cf-b7c6-47b9-a8a8-29945aef5dfe +CH4,world,kg/TJ,,I.1.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ab2abec9-5e05-4151-ab39-e00421f5ec2b +CH4,world,kg/TJ,,I.2.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ff1b68a3-ac1a-4cef-96d0-4b1232132f85 +CH4,world,kg/TJ,,I.2.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,afdef328-0317-43f4-886f-e6c95927d808 +CH4,world,kg/TJ,,I.2.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9199488c-2eca-4664-9cae-580ee53925e9 +CH4,world,kg/TJ,,I.2.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8d7cc35e-ddad-487c-bf79-03eb82fedb72 +CH4,world,kg/TJ,,I.2.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a00cec26-cbfb-4c2c-9100-ad52e762f43a +CH4,world,kg/TJ,,I.2.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,68ffea35-ac25-42a3-b343-0a54070ab60c +CH4,world,kg/TJ,,I.2.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37164809-086c-4371-af09-5fcc1fa2276e +CH4,world,kg/TJ,,I.2.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fe2d19ac-56cc-4fda-a566-c40b239260bc +CH4,world,kg/TJ,,I.2.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f32f965e-f599-4466-8bbe-3c36ab5096d3 +CH4,world,kg/TJ,,I.3.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2eb40370-b323-4232-a557-f750549c887f +CH4,world,kg/TJ,,I.3.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9f252d46-bc9a-4f12-b641-cf0f658148f4 +CH4,world,kg/TJ,,I.3.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f23edaee-c2c1-44ba-9843-90302e1946f7 +CH4,world,kg/TJ,,I.3.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,75bdba36-57f0-4fad-b5d3-ce36a922e656 +CH4,world,kg/TJ,,I.3.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc9e40ab-0c4c-4a46-9238-1d23f4f9e753 +CH4,world,kg/TJ,,I.3.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8767ed3a-cbcb-44b6-a92b-76b369f0c47e +CH4,world,kg/TJ,,I.3.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5e03eda6-1267-4555-b182-d55481a43480 +CH4,world,kg/TJ,,I.3.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,183f699d-d249-4091-8c73-a0afaa21fd45 +CH4,world,kg/TJ,,I.3.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,6d21c3ef-8154-4bf6-a251-3c6a37d9fcc3 +CH4,world,kg/TJ,,I.4.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ee5b009f-4b83-45b6-b859-fb61a9c8b33a +CH4,world,kg/TJ,,I.4.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,75708993-b151-4a21-94e0-700affdc3e98 +CH4,world,kg/TJ,,I.4.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4c2d2e53-cbda-4431-a668-fbf8566d7410 +CH4,world,kg/TJ,,I.4.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,493d185d-a2b7-4017-bc9b-c9a46a8601bb +CH4,world,kg/TJ,,I.4.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,493a66b3-aeac-4499-9cf9-b38f94b1b8a5 +CH4,world,kg/TJ,,I.4.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b940780a-af92-4033-81ff-e6e0338f43e2 +CH4,world,kg/TJ,,I.4.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2eb5b891-eaf7-4626-98b2-e27782c66a63 +CH4,world,kg/TJ,,I.4.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,186f6f73-da34-4629-80da-8c2b451b9b1f +CH4,world,kg/TJ,,I.4.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a1b1d5e2-494f-4525-a9f9-01d396dc75ae +CH4,world,kg/TJ,,I.5.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f957fbce-5871-400c-bdea-64dbe550c9e1 +CH4,world,kg/TJ,,I.5.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ddc773cf-b27f-4f88-bde3-5740ed99cd2f +CH4,world,kg/TJ,,I.5.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c666f947-89e6-4f72-b29f-9f93758b1dab +CH4,world,kg/TJ,,I.5.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e1b7609d-0e28-46ed-ac74-3e0d4a3efaaf +CH4,world,kg/TJ,,I.5.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,01f02609-b399-465e-a642-5c792aedf667 +CH4,world,kg/TJ,,I.5.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fa4fbb2e-6ecf-4e77-a623-5b25fc78d309 +CH4,world,kg/TJ,,I.5.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b1dec62d-8a3c-4091-a687-5d0141c6ae06 +CH4,world,kg/TJ,,I.5.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,98b4ee13-bba2-42c3-9a4a-972d1252c031 +CH4,world,kg/TJ,,I.5.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,00f04734-d40e-467a-9edf-4b30d1d029ad +CH4,world,kg/TJ,,I.6.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f8a541bd-bd6a-4398-aa58-84c48d9719e1 +CH4,world,kg/TJ,,I.6.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c0664430-e3c3-4163-a8b0-8ba75d77fbbf +CH4,world,kg/TJ,,I.6.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,73a35a79-017e-4c29-8a73-9533d2d91089 +CH4,world,kg/TJ,,I.6.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cc9b3a88-2eb9-49cc-adfa-32792445887b +CH4,world,kg/TJ,,I.6.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b3bb4501-8f5f-45d8-b9a9-f4dcce66f90f +CH4,world,kg/TJ,,I.6.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,83781049-b90f-4edc-9cc2-248834b53c16 +CH4,world,kg/TJ,,I.6.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,549b9a93-0ccc-4ffb-8a26-f8d5ae111a16 +CH4,world,kg/TJ,,I.6.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8469ef8e-f546-4fcd-a0e8-76773a132fa3 +CH4,world,kg/TJ,,I.6.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:29.55, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,88c066ff-e02a-4a04-bcd3-411b9e4896d9 +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,1.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8b21732d-7b5e-4067-bf4a-e85fe625faab +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,1.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3de4af27-9987-4d66-856f-2c383663c730 +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,1.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,b31f7777-e3a4-423f-88fc-0acf3bdedfa1 +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,1.4,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1cad79be-1427-4f1e-8a3d-2939154df009 +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,1.4,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a2db9f9-b905-458f-8785-c7005a4594cd +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,1.4,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,78d7f7e8-b9a2-4105-985e-0caefb3e89d5 +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,0.7,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1f806d63-8b60-4a17-b697-3d27de773800 +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,0.7,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c2fef31-3b64-4355-8cf8-77c21eeb31d3 +N2O,world,kg/TJ,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC.",I.3.1,world,0.7,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,968a331b-05b1-4253-bd1a-2005a82a8233 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,1.4.4,GR,16.095,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1dce4322-c7b5-4c64-9da5-5a93b2164921 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,1.4.4,GR,16.095,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,301ba9d0-8afb-4d36-8a1f-06a495c6921e +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,1.4.4,GR,16.095,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,cb883a77-42ea-4f33-a0b1-2788d9cbf8bd +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,0.17,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,01fc1af7-838e-4906-921b-a760526cd913 +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,0.17,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,02dd61b7-740e-481c-8320-fed79bcbbe7d +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,0.17,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,5d0b0e7d-1173-47d6-9baf-6822bb9683f2 +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,0.86,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bb064cb9-eaec-4579-893e-2d19dc159ee2 +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,0.86,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,76387ca7-405f-4cf7-9ad9-3034ceacc8a0 +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,0.86,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,75d1d1dc-5800-4316-91fa-8401a65beed6 +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,1.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e06803f-37e9-4c30-a819-94ed8ed253b0 +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,1.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27949aba-10f2-4460-8604-33f78dfaea8e +N2O,world,kg/TJ,"PTAC.2015. Development of N2O Emission Factors for Upstream Oil and Gas Fired Equipment. A report prepared by Clearstone Engineering Ltd. Calgary, AB. Pp. 146.",1.4.4,world,1.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:35.5, NCV_units:MJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,263fd034-f536-4864-91b4-f65f7d079436 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76aae0d0-43c3-4508-a77f-1a97ed64afa7 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0019cfad-0ff6-4d08-8737-3273721603fa +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1860fcb6-9d61-4c29-bd7d-74b477842415 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,084e36fd-08dd-4f49-af52-0d42c851c2ec +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,454b246b-d8bb-4b4f-bc59-85370c2183ae +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,7481b220-f962-43a4-ba49-076ce4a8cd7f +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1a59065a-a54c-4cd3-85d4-7361ebcda609 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2151cc60-dc50-4436-9fdc-faa7e476a097 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,51e665d4-f37b-4fa7-bc6c-0854be838f44 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,81516d98-3449-4368-8651-a2a5f6d674f9 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba116549-ab49-44cc-825e-697ec6eb0fd5 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,82996262-743f-4a33-86ad-e781ed38ad1e +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d66a6c8d-5bdb-4a99-8b70-8ff4294b672a +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,04a96088-fcbc-4131-9b0e-a9ee5edb8e81 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9fb7215f-7928-4cea-b248-d0cfcebb2123 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3eb2ced4-1fb0-447d-ae6e-026bd0fe8426 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b78b3af2-101b-4e4f-80ef-6ae74233ec28 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,792bbf6c-5570-47bc-aed6-6891292d44f2 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5288607a-842b-4da8-a4d0-7f89dec2693f +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,50d45ee0-322e-4932-856a-efcb3ffab761 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,51ae512a-4195-4710-a387-1df379232939 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,993fd9bc-f99c-484e-a17c-473d7d720075 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,112591f9-436b-4871-93bf-d2fe6a10be37 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fe8ba93c-cf8f-402c-a44a-eb6e251aa9ec +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5b8b753a-deb3-4aa9-abb0-33963b564929 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a9ca76d3-d02f-43cd-8add-a1b8dc0eac1f +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,260a0169-a8f2-4484-8719-2beb794b3797 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e9ca4e90-37e7-433b-aa68-8c26083cf179 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a36a1bb-1678-4e05-869f-466ec2f9770d +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,4a180590-4326-4095-8b20-c040d6c94e85 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d15c8dd0-c01f-42b5-a784-fa2fa1f5ddd4 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a47205e-d009-417e-9a0a-f26895b6d9ed +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,777fd324-2198-46b0-ac83-66950c52cb01 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2aa5062e-d900-4d45-95ee-499bb57d77ec +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2a4aa8a6-4ca9-4d8b-92a3-4bbcf5763f21 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,588459fb-9fac-4216-97e2-0479d58cacf4 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed89e6de-1403-4b2a-91e7-c40a1bf409cc +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb11bbcc-fc26-4c5f-bec4-47d5715b078c +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,77ed9aa4-4fd5-430f-906c-012b3c259216 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f4afba6a-c1ad-4c91-8c59-e0b897da37ad +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d3c40f7-1583-4aa1-9b76-d29324aa31c8 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,65777228-e622-4007-81ff-c777959c89c0 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f5c9eb0f-431a-4b92-aae1-d8de02d6e36f +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2af4397c-c356-4ccb-88fe-23f823f51278 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d43ab203-6d9b-4bc7-851a-b911b750ea0e +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd53abac-1ca6-4735-8d74-2f5f14ef2745 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ffe275cd-ee81-4999-8677-9cd16c11ab75 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,4331b7cd-3063-4956-bdf5-95b23b8b10e3 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,30659b24-8780-4958-b7ad-39eb53b84c6e +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ab9b811a-3504-4255-96b5-cd7c84c3ca85 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ef99cf8c-4866-4c7c-aec5-ce04734ae732 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,25cab412-6d63-4621-85bd-a1938ca7138d +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1a9a4a19-ba6c-4f4a-ae01-fa6c3bae9efd +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,3893a354-c18b-40de-9d0f-5a7d04bbe04d +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,60a75bde-85e2-448d-a461-4b097ceaf099 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,969e2834-971c-489b-af80-d72a38e9753d +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1e1ad558-bec7-4391-8451-817790601ecb +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c68738dc-6886-4046-abb1-f70ac341c4b9 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,69447e65-41c7-4472-89f2-c28ce6014446 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ddf6c508-975c-4f53-9998-5d05f0493401 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fe01e014-7948-4eb8-bf79-609f8b70cf30 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c48c800c-6f6a-466b-be73-31dceaf6523f +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,64a9d284-815c-4000-a296-bb2d11905a46 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,79b78e2d-585d-4fe0-b0f7-66b636570230 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6d982878-ad38-4035-af36-45968b375cbe +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,0c6e10e6-0366-4d47-96ba-351fdeb7737d +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,996fe593-077f-46fa-adec-2be53a870691 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f25ba670-c4d1-468f-9f09-aacdd5b780d9 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,581f11a3-51a4-402a-a6fc-8ba91cda65d7 +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d2f8b7b6-1c86-4c37-977e-28f8009b495c +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ad9bf79-83c0-4caf-8c93-6926fe7c64fd +CO2,Denmark,kg/TJ,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d017f966-cb93-4db1-aea7-9cc01438a303 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59ab47a1-b601-4bd5-adb2-3d446e075f54 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c786758-a086-4c4d-84be-dd5e78f5c611 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5659dd7f-c421-47a6-a8ec-82f6607f67a5 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b29e9733-fc0d-455a-98a7-7482625f56cd +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2615cd76-06a9-401b-8bd8-071e300fb079 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,c0cb1607-bce5-497d-b2ea-086ba73c3eb9 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f391f2e3-48bd-4931-91c9-bbb5a48aa5a7 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1756e18a-a819-4ad6-a698-92684a630456 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4443ef77-6270-4ade-8858-abdaa5356df8 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b19363d-c8ac-441a-b304-52fcabc347bc +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,85a3ae23-0b8e-44aa-b27b-74a0854e024b +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d6ef2317-7bb1-4446-96bb-2133fb30792b +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bda5789b-7f3a-462f-90c9-18d9ce67a0b3 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d43f694e-0b95-4688-97e2-1d3b4fcfdc71 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,36ad09a6-e79a-4960-9e73-aa57b441ac3e +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,acd5d61e-167a-46cf-8f17-e5ce67aeb26d +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a54ad3a5-45b9-4fa8-8470-694443b45d11 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,7a7b60a4-1885-4752-bd21-0bbfbb558685 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8147f54d-d136-4f71-b4a5-b598f37a9ba4 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4ee4d8f4-a672-4207-8219-06b6e9588bab +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ef181851-902a-4525-83b9-1331c93e6d1c +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,07b7d10f-a417-44f9-8892-864523d3b694 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f0ee5e0a-44a9-4a39-a6b2-8c5a01bda54b +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fa6dc84a-75fd-47ec-a095-6c8a4d74b42f +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d62eadf-3d1a-4ea8-977c-8459e48c790a +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e1d03e59-05ec-4d59-9360-0b242333eeab +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7d293375-3ef0-418a-835b-90904b1913ab +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f8711e7-4723-43d2-8c55-8bbc487edb72 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9f5a3af4-ca92-40ab-979e-d4e3501c3c06 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,28169ebd-8212-49b0-a12c-8726ef0c85cd +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,22d1b9fa-9d2e-4116-98d7-ba0801fa4814 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8c015280-0e0e-4f70-a027-6693add72ee6 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,cf4a7966-9e50-4e24-b5b8-5f4b5741c86a +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7ac24fa3-7800-48e7-aa02-03de2e44eb42 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,448b7f18-cb62-4a6d-9260-694d46df8136 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e469151a-a2cd-4c03-b09e-67531e984dec +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3c19e667-d0e2-41d5-be57-f4c75ffc3878 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2f6acff5-91fc-462e-a2c1-271b70b25e90 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d2f0475b-431c-4252-8020-b75e36d4e473 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7a2c3e41-bae8-498d-8b67-b7f1a0737485 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f2df2d8-33b6-4640-88ab-8126396fc9c0 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,6653295d-3579-4564-ba46-2fd3aaecb91e +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,48329ea6-fff0-421f-9433-e5e628934c66 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7d2b1b15-80e9-48ba-8173-d84409bf7c98 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,dd5a7ae9-e36d-45e9-a4b1-60da0f4fbc26 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f3854a4e-4ee9-4f6a-bdeb-ddd1dc3625dc +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b0f5e23b-7e8a-4152-8ba0-ab124c1cb55b +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b1658aa5-62ca-47ba-8aea-e1e1d674028f +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3d94ca2-c3c2-40c8-95b7-f2a0e95efb1d +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,537bd68c-7d75-4239-bcf2-251b7b38f768 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,720ca301-ed53-427e-8b88-2c9ec01aa0a1 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,349806c9-4476-4378-9234-d727099865e1 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c141f48-d1e9-424a-81c2-911eab7e6f86 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,18e3f300-47e0-4091-b590-3992b368294f +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7c925ffe-c28d-4961-a766-f1677d3c79c1 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6012052-0662-4603-87ff-35a9038362e7 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f8da379f-6f7a-41b5-97eb-d914f8c0ee07 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3396414b-0b15-4e59-b925-e1adfc03b122 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aaee7415-1bc1-4ec8-b9f8-78d5fb252a63 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,37b46ab7-e31f-48ec-8843-9131e139d55f +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,39409e30-91c3-4037-83ee-898f5494d2e9 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1d683849-cfb9-401e-b897-93daa138f689 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,64e03cac-234d-4808-8519-7f85f2df4bf8 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd4f3180-de38-483b-9103-714fed6a7b52 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9b096bb-655e-4dee-9e31-4b1f806288ee +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,f9862849-3d62-40e7-9dcd-25da748f79de +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4cde3148-c5ef-46c3-9450-33ee4c6db57d +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c4343fa-fc44-4c2a-b847-e43f90a99f24 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:14.44, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c2fb611a-d91b-4144-85d3-9528dd320acd +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,932a483c-8180-475a-acf9-3f786ae54bda +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2eeaf2c8-fb41-4f45-8783-4f0284b30e91 +CO2,Greece,kg/TJ,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ef9b1efb-ac44-4800-b688-e4326b2cd061 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9a651e2-efbe-40ac-b21d-2c1be6ab0ddc +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,096b5cad-b705-4514-9ce1-1b73fe30084c +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,53d16003-b407-4778-9752-1323b44aef37 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20767467-7e1c-4296-8ed5-8072fbe6db72 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba024298-5e0d-4907-982f-679675e67986 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,010de659-a54a-4b9a-a753-51be1d437ee2 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9f819f81-0ea8-4e74-939c-0333385d0514 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a7ed304-886d-4db7-9aa3-4682efa635de +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,93e3889a-ac18-46ca-ad80-9ef87f9506b5 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,24df22e1-f62b-411b-8796-d86e67ad9a91 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,596daf4d-20f0-4737-acaf-976e3d270c0e +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7491a3b6-b17f-4534-904c-b5b872f5f162 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,06c05bce-7ebb-4adc-9746-b9373ff5b3b9 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e2f1e748-8593-461a-99f6-3e48ba6ff689 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,72de90a1-46fa-4498-890b-6fc7aee079e0 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,830119c9-a00f-4aba-ae2f-46e94d8b9994 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cda774f0-9338-4392-8dc1-e97319ae60e8 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ac6bec7d-e2b7-40d0-bcc1-c837747c430c +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,29a163e5-3cdf-4f42-938e-d8c47162f445 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6ddf6d06-ea89-4ecb-b585-d98c15b85a13 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8d047960-4eb4-4b72-aac4-5bfd54f91c2d +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ff830ee2-ba05-454f-94a0-4b78a74b6758 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e649577-e0ce-4df3-842f-21d59654568a +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d64083b5-670a-4f0e-91a6-106257065902 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d62a4d1-0841-4ed8-b761-3851f4fdb683 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c101ca7-ef86-4bea-a228-f5e1209fb5fd +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,de580d98-46e3-4be1-b35a-d8f5f9d2b911 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,252da0ee-6ed7-4ba3-9e3c-afe4172d7890 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6278d93e-c46a-4acd-9e46-5a752a34b7b2 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e1a4043f-8d26-47e5-93fd-50bd80d4cc18 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dd26c89a-6372-4556-9306-0ec0e02911f6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,72ee1918-46a0-4f84-8901-222cd08bced0 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,19ea75ad-5ca5-467c-9da2-13d3dce5126b +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1674b2a2-650f-4f67-999b-e843ad53b3a8 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b1d8114d-1662-445b-8432-a0fd181e3621 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6c9e225e-e403-4d04-b275-9d908a8fbda8 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,58498e8c-8666-4ad3-8abc-4708173d4311 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a86eea2c-df43-498d-a2a8-41b036dd2c9e +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,885760a0-a993-46a0-b9a8-5116540785a1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea1c62d0-5a97-448e-b12b-6f203947a8b1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0474d438-4b62-4c58-b108-bad42200ff72 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ea7ed360-3b9b-4944-987c-795a4fec5318 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bb746437-b77b-4d73-8a71-d690ba390c44 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1a207f9a-902e-4402-86d8-be308da2e27f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1a5c60c2-97d5-4912-b0bc-26efc922bfba +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7d9908d6-02e6-4213-8a68-fa1f052c6b06 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d4c99e3f-6c7f-4d5f-9c48-96bbf4ce870f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6e19e51f-a3c4-4e08-9696-fac036d7cebf +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,acaeaff9-eb84-47ec-bc7c-4a76d01c9df1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4fe2dc4a-b110-4217-a2b8-503cc7486073 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,5c548c9e-3a05-4ec6-86cc-d2f15c68ae62 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,110e9bbc-a7a6-4d3f-a257-d5d0093d94e2 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3128bb11-906e-4c64-ad80-aab2419a64a6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1d4a535c-2a58-4681-b046-6b5d3f03d551 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93628767-e0e3-42b0-a105-3298ed6732e5 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0bc0df37-6227-4d12-971d-2fddd282fe28 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,44867ca1-dca8-45b8-9611-fe85b7fa9d85 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,749b1bd7-aa9b-4b51-b570-eb1168e51c24 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c156660-0d8a-4086-a1fe-b0bf46798a73 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1318ed0d-a4e6-4b47-b378-a0c92cebe96a +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a18cee3-4a79-483a-b7da-50bbf6030c47 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9f39377-1d58-43b0-8227-31ce85f45d81 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d9285952-21b9-4cc1-b16d-25a873bb2e57 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,759c5edb-fec6-4160-a808-c0693dc03093 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,77b75985-fb5b-419b-84c0-177d70352098 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6402a56b-509b-47b5-a1f7-9da66847a9df +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,328706ec-7979-49b3-bef0-a9de97a2492b +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7babfa9c-585b-4840-a4f6-50d1f12ddeeb +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1b7d78ef-4ece-4487-a6ae-b6d0841c485d +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6e0c0cf2-8c1c-4087-8023-d9892bd50160 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39052999-61d1-4dd3-b2a8-f115278355ad +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,40af4062-5f80-4f8c-ade0-ef5576852555 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,caa895a1-190e-4580-91fb-de322c0e64c8 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1771a917-bf0f-4c44-8923-d78cc97a477d +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,48e234b7-3a7c-45af-ad54-0ec34b85116b +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,86edfd3f-dad2-4719-b49e-1c6938074fa3 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0e914996-b05e-4669-887b-770af9d8f976 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,441102df-1901-4d96-9a4f-584abd355a19 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd852eed-49b4-428b-901b-451a8a2b5915 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,774cad69-c60d-46d7-9f7d-804b8fd0ac6d +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f4f19bf4-b561-44e6-a027-b96d032aad03 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b1f3e497-7da1-482c-8842-239ad89aa1b5 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,066021f2-52aa-4167-808e-7e8ea5249cea +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2b9bc097-8cb9-4751-9c85-cf92f226be17 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97757df4-e400-4880-875d-dae2676daaa4 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7392f6dd-508a-4168-8290-a04544b70eb1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.42, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,58d08c65-1292-44c6-8ad0-a9864c883246 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,73f5f1fb-3afe-49a6-9462-09fed3ad9f7f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,26367ae4-6cb0-4036-a9e8-70cea5d553ed +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,93.61,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,92022e37-e31a-454b-a541-5f6efaecd961 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32d68674-bedf-4e4b-80b1-6b4e963c6d89 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9928165b-bc96-45f1-bcf5-8fdf0d2d96dd +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,664fb8eb-31cb-46b1-bdec-779740dd6995 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7261bd74-4d3c-4625-8f8b-a2b9c43976f7 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,83e6ca6a-824d-47c1-ba9b-f6d63f42d755 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d00bc6be-a591-4987-8219-d1978d50d326 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,09b2a796-e53d-4328-a63f-e25d7f25da16 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c3a1bb3-36e9-46ff-a616-c93a9f1bb5f1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,33351a44-cdae-4c9b-be08-d4aa5187d501 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,015f9abe-bee3-464e-86d2-0cf10985d8e1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,46a65c73-1952-4ffd-a781-570a0afe8d15 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,31e2bc41-abbf-4f27-9644-88469c49aa69 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dbf85c35-2318-45b1-b565-6224daabc37e +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,288e9240-6007-42a3-8f90-9ca993480a63 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,145f6bd1-25f0-43ee-a4af-b3ccec2f3841 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eabff09c-182a-4760-8010-26f7cc1ad956 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,75217e40-fc11-4dee-b41a-ea1cfbab8c4a +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,91ec6fcb-8ce9-42d0-8cbd-62e1baff7e6a +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fc755467-ea64-4265-be45-f7790eb0efaa +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d01d56e-52d9-49bb-8cd2-cdda14900341 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5e64d69a-6989-45b3-b87f-5893d3957f43 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b49ed3ef-7168-4f66-82b6-17a8ca25fc44 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b3881757-b7a7-463f-a030-a819076b3a42 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a0c21298-f88e-40b6-80b9-666f01bcdd98 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cde1bbd5-ac05-419e-8836-28ddbe3bc7d4 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f9a96a2-faa2-4e44-acf4-5f29b20b278f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c8e2b21f-1d8d-43bb-a677-be72ab3a7bc2 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d8476d4-53b5-44c1-a230-809bd48bc409 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5832c459-6ff7-4c22-a35e-cd2b7c207de5 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,bc5d46f7-3016-451d-a3d3-c203032abcca +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f35ed955-5eba-48e2-85a1-4946d7dd66b5 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fdf15c98-25e3-46c7-ba81-4485d1c2d528 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,972de304-c794-48f4-ae10-b41d67828a10 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,63d98812-2776-463c-9450-84a2f57cece0 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4cf4afbc-1e53-49ab-a0bc-ef266102c92a +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6344a0e5-956b-4607-883c-a5a6dad214a7 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59343df2-58cf-4f97-9aae-831a196dca66 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,11a5be27-30d2-494a-9c20-33a65ca72a9a +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9fb9550d-9cfd-4c69-8068-226f52df19e1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ab5119d9-7f13-4a58-85fb-a59ca241f600 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a764a013-4f78-4996-95f4-8582b0a5c190 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,18cfa2fd-1045-4ce0-a98b-06d649cd0288 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e90fe010-6583-4587-9020-7cf07edc9c5f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8ff1173b-d547-4f83-b2e7-d1757346a05f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e49e30bb-4145-4ccb-8d72-149fc51388ea +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,36e3d4cd-e135-40bf-bc36-c799e1d69575 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,40242f03-fa5d-434b-8a6a-ff9f7eea6450 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,16f255a1-2da3-4e75-a7a1-a0a2d60d6655 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2bbc087-fec1-46ff-b485-9604b6a9b8b6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4823d54d-cc16-4b06-80c8-97bb26230dc7 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e01991a1-f75c-4b32-8551-6d97f724e7c4 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93c24cf0-e95d-4d29-bc9d-a5e97dc44ab6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,813293e0-8f91-4a43-9f74-a28b378b5bdf +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,95.81,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2f7167e7-7156-4129-995a-9ba8d44137f2 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0685d0d3-cde2-4b07-b6fe-3945c13a2d12 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a742046d-6d4b-463b-9df7-bcd6f0fb30fc +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9d8e9a28-8e47-4eec-947f-d976942029de +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b65404b1-0497-484d-9673-c3b309667735 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc27e995-4420-47fb-ac12-8285600cd721 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,4df94b7d-5e0c-45ef-859d-49bb41b504dc +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,65e288b3-02d3-4da7-9d67-0def6cdfa591 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,62fc6304-97b2-4ec3-9e03-458fc7430d37 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a31f3d69-43df-4399-a1f4-539f4dcad004 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9b72bb3c-43c0-4ef1-8e99-5edc7895831d +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a55ba5e3-2ab9-462a-8de3-40feae3d74c1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,3a1553be-97fa-41f0-ac90-d11ce242fb70 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9490f51-eae1-421d-bfde-33601776509f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6c5f498-9bec-499a-a248-2558ab3c3789 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e1172add-34e8-4ff1-b00a-30b6c39f66c2 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,83d1f4b3-c815-4a73-b408-12bd0bd900e1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e7ff3fa5-158e-4a45-8102-9ca0053a738d +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,18f9dc66-c8ad-4b60-a8dd-c1c17bd400a7 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,88afba50-6045-4652-bd31-b5490a7497cd +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7ac68df-9a55-44d9-bfb3-9699a693562b +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d70a44f9-4ff7-46fc-bce6-993533f68eb6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,994d051c-347a-4346-b448-daafcac33b14 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5db8ffe7-1bd8-49d3-9054-5b14de360601 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,03fc0110-bd72-4596-a46b-e7f74e86b871 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5ca2c439-b9a9-401d-bac9-abb73f599a69 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,614f2dc1-8360-4cde-80b3-65c5a2c374b6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c3212069-894a-4b71-93a5-4c26b310404e +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f52405c5-2273-4cf5-ac8e-94a0f76c0473 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,add5a4f9-cff5-4135-9e13-71c69de963e6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5802632c-363e-47db-a141-b5f6d47620b1 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0afb32ad-1ff8-4684-8e7f-5ec91314c301 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a29fa1a7-2b51-4ff9-bf2c-af29f58d3ba9 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a80d2bcd-eedd-4707-b694-405b8c375d15 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f6ad80bc-a657-4416-a6fb-5295ea70a4d3 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7e6c6f83-7a92-4fb7-a204-15de56fc0f3c +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,928a888a-243c-4d92-9f37-e1f3b4846534 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,469b6aa1-5877-4a34-9bd3-c2385a5fa8ec +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,188a1ec3-c909-4e9b-8def-d0c80bc2f38c +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,25bd0f3f-1423-41bb-820b-77fafd79c226 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a6c2275c-093e-412b-8cd6-625350cacd76 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a309af8b-9499-47b8-ab30-7f99773f93da +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,246a3e74-55bb-496f-a470-8455f2517109 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d2e3b0b-5b8b-4b8f-9cef-e1abeeea9218 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e6c0800-c16c-46c9-8e84-eab6de752e54 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dc7d90c0-d850-4bb8-a795-e1b7bcbe1506 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7080b13d-1840-4a1c-948d-0bd6cd4695fb +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,21a61e82-91dc-47a4-8229-a730007af16a +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,98b2c88a-7347-45b1-b3e5-c361e679a79b +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d94a45b-620f-4d70-99c4-e3a698118583 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9301420f-57fe-472e-b7f4-ff06bff75fbc +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a99a540a-f9fb-4730-aed9-51c9d3fd2242 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ebf0ec83-a9fa-43bc-bbdd-5b2455c85762 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f3350b38-2f38-4f59-80ba-6224f086002a +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0d372226-66f1-4924-b4ee-b5c6fdfbc016 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b920a877-af8d-4b5f-9fce-54d2400b8483 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c90e0ad8-cbeb-4c16-a9b1-9ec68bd45ca9 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,54af0c11-a352-4285-b6ff-0770df3ebf51 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,933b7812-36e2-4e5b-9e59-063c88d153cc +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,15247dd3-cd82-4f52-b44b-ee12c6444fe7 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,973779da-5a03-458e-b306-93c9a79fd37c +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0b0f7838-0348-4a56-946e-1bb5644db5c8 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1fa713e4-d087-4cad-9bfe-b3e5dc28ae42 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7a486222-4499-4420-bce0-a9febb14a271 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,19b1e5a2-2e35-4d30-a07a-67afbe706781 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed4ac465-638b-497d-aef5-2c240000832f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,950684ee-92fc-4fdf-ad2b-eea6efd1e7f9 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7fe2bf5-c591-45d2-87bc-97e3bda22e77 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e84b9d0f-1be8-456c-b156-f6dcfdb4082f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3111ff48-34f4-46c6-857d-bdd118ba61d6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a603a070-99a8-4851-8369-ad44a84f74e2 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,efc95db6-a6c4-436a-9b27-1413e6b2854f +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8639eaba-b05e-4fe3-82c1-238d24568b23 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ae788f6a-79fe-4d4a-80b5-4940f1f9b96e +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1fa58ca7-d56b-420c-8763-250df35fa41d +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f5f6ef1c-32e4-4024-8d10-21989a05054e +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7c392ec2-aad3-4b58-9ba0-5383df5ff827 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2104226d-36ef-4abb-adfc-b29c08c2b923 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fe7fc5d3-a1f1-4fb2-8d66-0b517e46f2f9 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,553f28da-499d-454e-8940-1bf70fcf7ab6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,87493f66-3690-4a96-a63a-d400c11beff8 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0c9c5612-025c-4260-9d07-ae58f4caf8a2 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,af89e882-bc2f-4eab-ba28-347485ddd5bb +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9a65eb69-3166-4b6e-a57e-7303212783f6 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3c0684c5-c561-4cd4-8226-d1d5247c0286 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93943228-4197-4ee5-9b34-5b8546c86a17 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb5b1f76-e627-40a0-abbb-c8254a9c2a4e +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:26.82, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,5268ce46-4b0d-4021-891e-518bb296ce48 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5c6c572-6719-43de-a18f-8dc612f118cd +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e3b0a95e-8e16-4655-a4b1-54bee31b82e7 +CO2,India,t/TJ,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,106.51,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ff058cc8-f361-403b-8b1a-f61d0a0ddc51 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,83.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,771a04c9-c4c9-40aa-ab43-bbe97163aafd +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,83.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd04b4b9-cd9e-47a2-b6b9-a217e6a78a3c +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,83.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,04d6b047-6de2-4434-a044-d09a0c857cad +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,83.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a418ca6b-80b0-479e-96be-bb24fa0a9a0b +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,83.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a82866f4-7265-4984-8bed-6d84d68c3d4f +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,83.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,170178fb-2bde-45df-ab95-a4e0d0806688 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,135.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e0db5ced-d6ed-4a4a-a381-c60dd5c81187 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,135.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,301c0828-c66e-4f8e-991c-defcbc701279 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,135.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,ff2326a0-afa3-40a7-8202-d4307e76a3cd +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,135.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2f2e5e07-88a7-496a-a650-f33541b20446 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,135.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b1841125-b360-4bfe-b5d5-f7a353c020f4 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,135.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,2a9c5cc7-be0c-458e-b1d1-f317e2f7ab39 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,354.0,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8f26a8bf-6169-4067-b382-15123f18114b +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,354.0,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,42e28fa5-d9b9-4984-8f38-b8775f03488b +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,354.0,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,51314877-23ae-4fb8-ac40-d7d18ca70c8e +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,354.0,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37cd10b0-87b5-4b25-bce9-e0fc4d6ab7a9 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,354.0,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2dbeac22-cc24-444f-8b13-6a75c998e5ec +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,354.0,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,c00fc53c-7285-43da-ad6b-faa5e76e0a25 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.1.1,world,354.0,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5693cc3-606a-4551-812f-6d7a040cc5b9 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.1.1,world,354.0,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e804c78-d310-4566-a5d0-ec4817642a4c +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.1.1,world,354.0,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,46cb4873-4285-4ace-b8b8-bd4e814f4073 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,161.0,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5eeb13b-760d-4e88-a794-b56b53abc560 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,161.0,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,95f3c2d6-45b3-4b9a-a3e0-4280be1b0cd9 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.3.1,world,161.0,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,399e253c-d3e2-499e-a492-1cd813923d00 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,161.0,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80ce455d-28b5-4354-9429-9d9231732a41 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,161.0,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f40246e-cf91-4f8f-b36b-cd3959b0eb8a +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.2.1,world,161.0,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,296112e2-b164-43e4-bd32-18c2eb0dac31 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.1.1,world,161.0,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,45faac2f-2cbe-480d-a2bd-aa1e620a2195 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.1.1,world,161.0,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c741d507-1c2f-4282-9d58-0b66b0078e16 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p24 Table 3-1,I.1.1,world,161.0,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:540.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,9ec4cd66-be07-4fa0-a7b5-f49ec440bbf8 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,665.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bec643a5-46dd-4b44-a687-cb2bf6c56b3d +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,665.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e0782840-b2bb-410e-804b-fb026ec0bf97 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,665.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,af3409bd-5f5c-4639-b9b1-a3eda9bd55c5 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,665.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2e20104f-9c3b-4260-b8b7-f34c93e90d7d +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,665.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,caa4b323-3237-4e43-bce4-24c491ec4ef1 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,665.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,593b7d5b-5755-46c4-b0bb-b89665bef3c8 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,665.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,192c5e6e-46f0-455a-b442-eeedddc4ab87 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,665.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,805acba6-8ca5-4ecf-a2ab-fe4e90dfc4ae +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,665.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,9ac3e6bc-b0b1-4ecb-963b-ad5f25a4452a +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,59.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a76a261-698f-430d-9405-572230da3c90 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,59.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8a582af-958e-470e-a2da-1c86024123bb +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,59.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,e376db45-256d-4283-adc6-9a290526eb2e +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,59.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3d0845b4-be5e-4c1a-85a2-f36bdbbc335a +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,59.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cd843eb8-a9d5-48ab-84f1-1c236bbf2f5e +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,59.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,3fb386ff-3bb0-4607-a425-6e0f7ef7e170 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,59.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0862ed93-6ac2-4657-aab4-8a34493d1eb3 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,59.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c777c184-2b39-4a7a-8de9-73deb6d306b7 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,59.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,34d3e7ef-2311-4ceb-bd7c-5946a5118bc9 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,17108.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb05be2e-80eb-4e0c-947c-7424aefb17d8 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,17108.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,71dcc4c5-af4b-4fcc-ba4d-b3d2e288bc60 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,17108.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,fc715ab8-f5a2-471d-b950-9bf3f207c9a7 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,17108.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,054f566f-f92d-4040-b13c-d8489111a3fd +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,17108.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2483aa39-bf2c-4f47-8b89-6eef53935ed9 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,17108.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,c18f15e6-dcd6-4e0e-9f39-5d14466cd90d +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,17108.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6ff40b52-3faf-4601-bc84-2fc349b99fb7 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,17108.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,50577f90-9cbe-4877-8cc4-8241f4d63a08 +CH4,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,17108.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,3922ae6d-f8f5-4cfa-a62a-82ed95d44fc6 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,17.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,55a736c0-3d5b-42ea-ae0d-5ae2b3d7ec86 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,17.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f6794b30-88cb-4386-a530-432e28b04f1e +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.3.1,world,17.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,06732a9b-8e2a-4fb6-b601-004b6d6982bd +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,17.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32db62f4-647a-4f6e-bd1c-a8dba4cf236a +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,17.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f83120e2-8a0f-49d6-8284-a97df61eb435 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.2.1,world,17.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,6ac4902e-20d9-4d57-a3e6-48aa1a473635 +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,17.0,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4ca77d5b-a0a0-48f3-a091-54a32a9c10ad +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,17.0,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a261328-f783-4c50-8652-dfdbb1541e8c +N2O,world,kg/t,EMEP/EEA air pollutant emission inventory guidebook 2016 Update May 2017 1.A.4 Non road mobile machinery 2016 update May 2017.pdf p25 Table 3-1,I.1.1,world,17.0,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,353f9782-1e4a-416e-b4bf-b5de10ef26bd +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ed8701a-d710-4431-940e-52f653dbe0aa +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f3909c8b-ca82-447a-91f8-d0e592ec4b78 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,21a5a01b-01a9-486f-a43f-75b5e4dbcd68 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,21e8ad69-aa07-4c65-b43f-f4cfd552ce71 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f51a66b-02e3-44a2-afe5-bbaab4246f79 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4b4995bb-c818-47b5-8881-fd450da166c7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,abda7acf-506b-4435-8fb5-6e254c32b158 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,55e1cff4-e1be-4e3f-a906-2150c14c356c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,61f78b12-19e6-4558-9b34-6cc833645d1e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,43b61416-9fdd-49d7-a22f-b7c9a6a27bed +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ceee4a6b-ffa2-432a-9f77-593ddbc8238d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,495f6cb5-288f-41bf-ae26-4f288a5135a1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd518661-d112-4845-8a5e-c48ed89cb922 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b4b482d-94b9-4850-90f8-8c71c421c05c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,20c28ae6-6736-4a93-a859-c39c61280eec +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dfdde3b0-0f4f-4d5e-aa77-1f1604dd3ef9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8aa9aff1-2ee4-42e3-8112-9f752670be0f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a083dad6-6f2b-4a5c-bc40-8cc88384425d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,77229491-8853-4fb8-b659-dc1c191e70b4 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,854bda5f-a21f-4a83-b5b3-c58aa93e9785 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8e884db5-361a-4645-ac44-59f03bf074c0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,45f519d5-4431-4d7f-927e-35407b211f95 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f8686058-7a29-4f99-accb-ad0914f464a4 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,939f5f36-7c3c-4101-bd88-56203f1f7c70 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c35ef5de-0a4a-41d4-9f88-a87717e27b5b +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3054f077-d1ff-4bbc-bcd4-3278f905d708 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f3d7019e-ec8b-4027-82ad-82a28a85f6f7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8b064516-bc8d-4a40-9241-e2022c5002a1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eb2e155e-0d3c-4b70-b577-f9df7b726399 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6aceedbe-4f53-404e-9bb6-59693b57ec1e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1c60429f-51df-4842-b7b0-6df679eda773 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e03cbc2d-65df-4038-a12f-d9f01e8bae2a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ca609c83-f79e-4a51-b2ba-a867b1e3fe5f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80a31818-ac21-4ab5-879f-fc6bac8ad13d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f6b2c22b-c231-4410-88df-51e91ea459d9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4b732894-00c3-427e-b3a3-4b0d114b85cb +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ee10e070-d2e4-4771-bdec-a081fad45d4a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f930fd5-ea07-4ba1-a104-0f90885502e1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,eb253b0d-eb01-4733-b1c4-d6c7abe5935c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9da841e2-2840-4dc0-b1ed-0affe959ff17 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3d1019ec-f5ff-4360-80cd-ddab65472eb3 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,312162e9-e71a-4b1c-94c5-e90425c56f7b +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,978bb37b-d7c5-41a4-ac43-4aed80cf1b7c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,97a9d828-2d46-480c-9cee-f87e72ac71ed +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,61c2ee7c-716b-4ab9-aa5a-8132061276be +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6ac9ed7c-3d8b-4c03-bfbc-5103de7a580f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cd4462e9-1c64-4f29-858b-165a2e1bc8e2 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,47964195-feb8-4158-a3c4-16867a41e372 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74c3d062-ff08-4074-af88-d86763258bca +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3e25c539-7e80-4ba9-8a17-fb50d601ef16 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,34a0f730-3ab2-46d4-8414-481ebdbd6f12 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5878616-cc4e-4bae-b9d2-392ca511a5b8 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,02009790-328e-44f7-99ce-7aad1501ad19 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1e11d78e-3410-4aa7-90b5-f50034160c68 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,35a1159f-abd5-4f11-97ec-7d3722fe0de8 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eaaf79e2-1fd0-4f91-a65a-8b19174df400 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,209f3887-0439-4e97-b6f2-af61e823065e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7791509c-d9ea-4ab8-842e-1c86b65a9236 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,025dd80d-b06c-44b9-830a-99c853f2b4ae +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,663a2006-7ef1-4c05-8b41-d2d24289aed5 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,488d99be-db0e-4724-922f-73640b6c1885 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80342ef8-8c84-4491-bf1b-2e9a0c69600d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,af9a5db5-95d4-450d-9e0d-d9337ca09aae +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,98aade0b-fcd4-4a22-8144-4660ec360d5d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7c3054c4-3434-4093-a1be-5b30aac70365 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6531fb0f-55bd-4f17-b4a2-c3b916bf3115 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,42524eca-718b-451c-81ef-acc947d8dcb2 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1b3f8b4f-4376-4fc3-9c03-8789f2460775 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,900d183e-eee6-4ddd-9f93-d5453d5c4978 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d82d54a7-93c6-453c-93b8-0332192aa655 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d871b968-9429-4c9e-8cbd-7ffc7b08ce29 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,369a61a9-aa7e-459a-8894-4d811824235d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a89ab419-4efc-4882-8405-9356b326ecb4 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,feef9d20-128f-4896-9a1b-5cbe7e99e2f4 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,32a834e8-53d0-4772-ab6e-e043bd6a75a5 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea366b47-4690-4452-b28b-a8f8d65e6b21 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e3696c52-a455-4b47-ac47-0fdca30fcc14 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,26d21042-300c-4e32-8d93-92c0917d7aba +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d0bed7e9-2f5a-4dbd-b858-f4f8bfbd4b23 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,71f66902-806c-494a-8525-ff43b115bd39 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,010db586-5a4b-4fd0-82c0-0f4cfebdde21 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,66ceadac-6ca2-4791-816a-c685b4e38a52 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd95babf-bff7-4c2e-bc99-0ebee9fc0f1c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,74076026-d14f-4dda-828f-e129bf038067 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3781a1d8-18ed-4bca-9ec4-9d92525669ea +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a485a3dc-fe33-48c9-8da5-47826b7a1ff9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d51ceb7e-e362-42f2-831a-87e4050ff368 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20bc54f7-fd6b-421c-90c2-5c40d6fece37 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fea33666-9927-437b-b9c7-3c9fd2113f76 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,106476.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a22dd5cf-a545-4bc7-9774-14da34ebe75e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,947ae7e4-1ff5-428a-af51-6ea5038251b0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3c225057-d32e-4ab0-bb57-f96bf9123b4f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,185137ef-046b-4a22-9ea1-534016db36d6 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fa282308-b3aa-4aa1-987f-efc791ee314d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,781273bc-25e0-42b6-b518-aba8532a042d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3f0f10f1-dae3-4521-995c-5c30c2350479 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f4fbb867-42ae-45c7-bf00-9ba8faa12b53 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca501eb6-dbd0-4ec2-aaf8-2ba27f8a47ae +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a5d610af-9ca5-4875-9e30-5931edd77451 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7bdabdfb-5222-4cbe-b964-376d48790ef3 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94f8fac6-57ff-42d6-be00-fb8768dce8d0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ef428f0e-2b9c-4fdb-b766-677c4b4fc34f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bf5033d5-7f2a-4576-bf87-389773832a75 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3c6ef9a3-261d-47b8-92fa-dbfb0c8ed0ce +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bdcb2781-fd40-4dfd-b204-385744fe4968 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a9122ede-e9e0-4c02-ade8-81a81628bd25 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2eff2fbd-30dc-4128-b7db-93dcb0b7b8a9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dfc42099-16dd-4db9-b0b6-172833e31d95 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f49cc7f4-4715-443e-b036-979c61c3fdf0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,43b67cd9-c4fb-448b-8fd1-16b8d084a228 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,90747c46-00ce-4c99-9229-5fdeaec9fb2f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,570ad537-fe69-4004-9a0c-ff6bf5752256 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,14515cb0-df9e-4ffb-bcee-5fa5ddb484de +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,357e04b1-9986-47ac-8e1b-f32c8f911b8e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1e69a0bb-6db8-4868-beb6-2393322ce14a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,90c4b8f6-8f15-4649-99f6-202abef0d3ce +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,91b64778-ca6b-4e86-876c-68fcd4be6a23 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5086bd7-a759-4dea-a6b1-c95ab27d8e68 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae05063a-8f5e-4fc0-ac03-4e34e6b112e8 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,417dac49-f2a7-4a51-afe0-4699bbb94227 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,43de42f0-895e-497c-91dc-98d964586bab +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed0bd8ad-6dd6-485b-98db-d5788a25c85e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,614f0014-f3af-4390-9a42-a59f81e79521 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1b45fdb9-90b6-4319-844f-cb5a251e2305 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b9c7c184-74a2-45a4-b00b-b6b22f56e3e2 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8708276f-851f-4db0-b050-27b8e4c5d885 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5164e5f7-06b0-4652-aad7-008bac93cd0f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2b40718-d945-45b4-b410-fbe3edfe4097 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a5b2d8c2-04dd-4977-a067-3faf86987363 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80e1243f-0b3c-498e-bb5f-e59487d0ef3b +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed1a2d4a-72e6-4be1-aa4e-0b99476d90b2 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,48ad0307-7d97-42eb-82ff-d79cbbbe3d92 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b7c3890-7fdd-46c6-8989-225b76252d5b +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fd9d8fa4-c412-4269-a2f2-fe010af71076 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8414feb7-1afd-4f00-8d21-488540d07b93 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d31ba38-ec55-4fd6-81e0-69a0d50e93a1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,31343dc5-56e9-4ca9-a94a-7b10f7f04aa4 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b05d0cce-89ba-4606-b60d-8a5f1a72362c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,38779cd6-2690-4745-af08-fde027189b44 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bff13348-2faa-4ba0-9530-9c598d124175 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ebd2c817-7416-4bf0-aa09-1b7184f106ec +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d634b8f4-2b2c-4524-bb19-84f207ac2d42 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88e94493-e3ef-4283-9d33-5406f06af7b7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,100575.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b0bb9043-0a7a-4f25-8848-ed2ca4e03ff7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5cef7217-a9b8-4268-934e-d5e0856f9c93 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2677da60-ea3b-47c2-9059-97c1b016d71a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,13858948-4a9a-43f9-bcf9-c04247920490 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,591e7d55-4001-4b6e-8b68-413af1c87cba +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cb24949a-d877-4b95-b7f6-165cc40a3e44 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a4885831-582c-46fa-b146-413e615467d1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1afb3e00-2497-4306-bdb4-b35744733b43 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,06a7840f-5c71-4c53-8c78-d83a4f4d94d3 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9432e83b-4d22-4cf5-b89f-3f4e65635fd6 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d99bb64f-38e1-4591-9f82-3e21d6a4db0b +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ea51c573-54eb-4388-b602-ac279da58ddb +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,98b600a7-585d-46a2-8a2d-5ba96e764051 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,17d89030-8397-413e-9db7-32e1b8de69b9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0040eb6a-14de-4671-8fc5-a67c1f37580e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8e1ed489-0161-4976-b64b-65ec4a97e2dd +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f80fd35-57d8-4fbe-9d37-0acac11a9bd0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6d57b815-4b81-4d47-8a1f-bf7c547406b1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,729ce022-a55f-4a50-af28-977ec36fb2ff +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e644c24a-f97b-4e98-8634-162021105c72 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,efb786ea-289b-472b-9fbf-55d889c6dd93 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,528c3c08-d3ce-43ec-bd8e-8ebd212f070c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,443df079-49a3-4606-84c1-8bdb5554dcac +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5df4213a-ecf0-4aa9-a6f0-7ae866574ee0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ff000609-1ca6-4dca-a71e-9da38a8243e4 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0b911cfd-0e02-4fe6-8962-b3861b8f8847 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,53ebdb0a-0b03-41db-9902-f02a7e76e7ad +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,efaeed04-2bc2-47f5-96c0-385296e2941e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f1b29f4-bcee-43f9-a79c-24e7f3f22f8e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27c69fea-fde6-41d3-bb39-1b6fd0c909bd +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fb0ebb8d-3da5-4dce-aba4-36f7185042df +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7fc34de-b42f-4f72-af4c-5570aedd6b04 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac5677c2-7e94-4b91-8fc0-97e5b1118483 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8c4a7108-db7e-4802-b0cf-baa3b8658f01 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44f45a2f-9c89-4c38-a238-295c009104ec +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,779d5ca4-1c65-4b57-8021-fa26d94a2ac1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f3152116-f0a1-488e-bc45-73a483432ab7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,22fe646c-d84a-4fbe-85fd-0321c0131d8e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3cfa1121-619f-4123-a8af-9d86afed3be4 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1b94a954-f1a6-49f8-8cf9-4b0b6ba90d4b +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4d5bf215-7312-4b41-9721-6d0e31b3c19b +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,71747a74-2513-4d32-9ea4-2593b563217e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,860473ca-bc74-4475-8ea0-e6a5211f6933 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76ba2803-443f-4342-8fdb-96a45dd3f0ba +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a3a6fb47-5c6c-4b86-9b7d-29a978059316 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7a8f76be-cd7c-44f7-9b02-d05c4022a50f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a524ddf3-5a34-4193-82d8-dc1923cda70c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,536e2eb9-5780-4e69-9498-e44c18702cce +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,26861635-f327-4e5f-b9c2-c2211841bf6f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76e7c79b-3136-4dc3-a317-b5e26cd784d9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2783acc2-d4fe-4da6-8a6a-6b19e4e417d3 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fd9c3f05-4661-45ea-a5d3-7a6c023702c3 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9e41a6d0-031c-4401-809c-c92ebcc74b51 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a4d46829-cade-481e-b03d-23c350cfd2a3 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c88727a6-c6e7-4903-bec8-01e338db39d6 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5f048bb-0a7d-40ea-9bfb-5e7b401a8ac5 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c3d76dd-e67f-4157-81d9-a6e06f788b3f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,17e4cbb9-f574-4e7f-9ea8-4ce98269063f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1fa24445-9cca-4879-a97a-8ee143b3f7a9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f5677b15-36f1-4a9d-aa17-f7d15518490d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d9b50aad-6bd2-4365-b481-2e8481db38b8 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ae4dec1e-0889-4b19-80fa-510b70bd674d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5f182075-1030-4b07-8e88-4127cafd6dfd +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4ee4c298-1871-4b4a-a554-8cd1ae0a1ea0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,07f36690-655a-42da-8f1f-b8faea4e1c4c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eb66d0e8-238b-42cc-a51e-6e6b8bef1f79 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ba06b748-084a-47a0-ab62-66743e7b6a68 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dfc0e422-e6b3-4d77-900a-5c59bbc8df1c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,653f1c61-5b11-4d8e-aebf-d5265c712375 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f6f698aa-a9d6-49e6-94d0-7344e446c154 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dab5f88e-ea99-4095-8e3f-71fc149caa64 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eeac2928-6cbf-4dd1-b82d-fcd5903548cc +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9feb94c3-81b1-4ba6-a9aa-bb9187045477 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fa0df964-605e-4305-958e-2e18d4d1e284 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73f968d0-8bf5-4ece-9450-b822b0175450 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,128f5fbd-090a-4467-993e-5c3d0e204464 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,808deb62-75bb-42e5-b04c-4b9e299a3a93 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4c137fd7-b98d-4680-87fe-57bd8b32e9dd +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9983d83b-8eeb-4fb9-88a1-a94216de1228 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4150f69a-69cb-41ab-a53e-c157927789e6 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d06d5f88-a6f1-493b-aab4-f93797719e8c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a070063e-be11-4513-9af3-93244a4f7fe7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c8aabaaf-1539-4648-97df-257ec71c13be +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bdf5d971-46fc-44f5-b220-365923b59167 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8853b951-ee28-4aa2-a8c1-8cbe12a16f98 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,66645b76-efa1-4f05-9c30-9e591674013f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e1a73f2-eae2-4c67-a206-dd71dc3556f9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6f828cc1-d98f-4ac5-b81c-4ce3770a8dd9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e543763c-6298-40ab-9ba5-b6a215e5a577 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aee83c90-8cc2-45a3-876d-0d0f41d5da0f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,23f15a1b-8a4b-44ba-bed3-1978b808fc09 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2fe582d4-f5fd-4347-92fc-145016c8a5de +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,68c35459-a9ab-4c56-92da-4d596356d837 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,17157633-8692-47d5-ba76-be1a458dca61 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2c4b797c-4f6c-40c7-9a3a-1877a20ab93a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b17c70a4-64f3-4c07-a13f-f96b9f4889fa +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,85c87ab3-d954-4eb7-baa3-ffbd7be12bc1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b0074b74-a02a-461c-8f52-56e918aed675 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,03e76511-04ae-4a75-9a34-dd50b00ebc8c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f1b1132f-3da4-4e7e-8517-efb8afc5c5ed +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8735e72-a9ca-45b3-8349-5dbcaa2c97e1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1fec5ece-6404-4fc8-ab2b-b04ea1678fd8 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5e90c4f3-2535-4bbb-8c9b-6045afe9a425 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bbbeb331-70dd-4570-ba8b-9ec7df7c1d88 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,db339b4a-f1b0-4c61-a5f9-290af7fe7aca +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6b7a1760-f355-4235-9ba4-ede30925a925 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13903bbd-7e89-4bc1-99ac-41492c31f38e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a8762dc-7724-4237-92ea-d50d9928f877 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,94715.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fef38de1-f84a-4820-a01b-54b159a9b4c8 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,490e3cbc-d980-41cc-88c2-1540d6349eb0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,acabf258-deb6-4820-aa49-b9a0a2db87bd +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6e0d1676-810d-48e0-853d-be12ab70ebda +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32d829ad-43a4-49e8-9a3c-80287946274e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,554bbe39-14d0-4253-a500-2a5cdc2f3717 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,26d770fa-2198-49c9-968f-291f5ba051b9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,79c6728c-ed8f-43c7-bbe8-c1eff3744659 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,57f4c191-b3d4-4de5-ae88-565c785e08e8 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9f7ddc63-08b6-4654-bef4-0373a861db1e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bba84fa3-17a7-41e0-839a-732965c7dce4 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a6ad64e-2930-4a37-899e-f36aa187b571 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e2278c96-a799-4e3a-8e7c-034edb94efa3 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,df0ab44d-c174-4bd1-a0ac-a59a7f1d603b +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c49d6c96-2cbd-4f4d-9fcc-8f0e63686119 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c8bff9cd-05ed-4516-bb40-e0fe67f678b2 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0de72209-7ed8-415e-814f-9b8e540661ae +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dd5b9eef-64a3-4c9d-99fe-41728425ca4f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,950f79e9-3b25-43e0-8fa4-19dc848a4ace +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8c3b2d76-edb1-4e9f-a43c-8b3fae3c972a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e25ff6ee-ec8d-4603-bb83-f6912f03fff5 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,303dc24d-5622-4732-a413-11c0b8c007d1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1cd36e8a-68bc-49c2-8078-c95b74040ec8 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ab591e57-e702-42ba-a812-98b5fecc7d1f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3c14dea7-6c56-4b80-9472-510c9f5bf61d +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32e8f249-20a3-4baa-aa61-7d0f4166c54a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,98166a7f-1f4f-4337-8318-357b90f50f11 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f8ad43b8-4b68-442b-80d2-b74ab871b531 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b2a21b6a-adc0-480a-9625-c8cafc2ccf3e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8128d0e4-3811-4f2d-9203-b9412f2f2909 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,702a30ef-72dd-4883-80de-9452d67f3998 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5c771e2a-5c51-4ec6-8d9b-db56d7739dca +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,59dc4565-eb82-4876-abf8-724fa071407e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8dcf5176-0ddc-4c2c-a05c-551f53075414 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,47bbc8ee-324d-4dbf-9e1d-5e8ab3e2fd85 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,78d72f99-ad1e-4535-8592-1d5e337e6c63 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0514d8eb-add5-4dc2-9ebf-ac4eb083f595 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b0d9aaa0-e4ac-4ea0-85e7-84e508e2e366 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6313b6dc-c566-4ed2-a9f5-1951771e8244 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d7002b14-87bd-4051-aa7a-5da92ee73c9a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7254bce-db58-4a41-a218-9956f8bdb365 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0608eed8-f4f6-4ed9-833e-4bf39c38f389 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,df411ae0-f588-4ff1-9ddf-933285f2ca5c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bfd249cd-4427-4f8b-b7b9-bc8b1fc67a99 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9fadf53a-9724-4f21-b8e6-7ba72890faca +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fccd2430-1e66-48a0-b2da-2a6ebdc3125c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f8a08231-f62b-4003-b468-0072636660b7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,084323e2-643c-42ba-b6ef-9fd94d7d19a7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3796cb22-6b5f-42e2-9e7f-6c958544ddb3 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c48b8eec-d40a-4fb3-80e2-9f33e30a41f5 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a6adf1ce-0cd5-4bf7-9b3d-7ae973ddff11 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fcb8051d-dec7-4f3b-852a-8b9a70d0c5e9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c4a7f576-9178-4dc0-8601-b9b9431fe952 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd330fab-434a-4ff4-9696-2625b0a871ce +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e648b4b6-b9ed-4ac5-8267-2a411e5376a0 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7339943a-6c85-40ee-a038-79bc7287dc57 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,faf91edb-8092-4e43-8de8-b5aa19eddb5e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b724d925-4505-4847-86fb-805be053711e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f0576ac7-5ee4-445b-b9ea-ac42a83ebc96 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dd777ff4-28d0-4575-ae27-ebdd0f8189c1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,93c05fa8-8031-4b75-9e99-cf5604ee8f3e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7d11b80-9165-4a21-a0b3-e50050c9ac1a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c5fb87a-3115-4e13-83f1-32f15274694e +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ee2e7144-5d29-4402-9b4b-0a6aa17da55c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b25d5abe-2786-427f-9061-b998110fd11c +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2e0c4e5-6e60-4b1d-87f8-1bb4e0de02bd +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2712ebca-d4b7-44da-a3e0-04c2bc774089 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6f3954e6-7ddc-4713-a1eb-8d90daa10ff1 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,61d03751-574a-4e45-95e6-aac4cb1baa59 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6ca95c6a-ec94-46e6-b28b-4d31b8f9d6c9 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3fc6a0c8-0a69-4c2e-b25c-3cac28867a25 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,922e2466-fd36-481f-9c4f-fbb2b03e0511 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,095a98ab-bb82-4cef-afc3-9765c56ea447 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f5a0a636-4c31-4930-80a5-143bca23bc3a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,272a5375-f5bf-4a67-a251-752562873419 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,139e3832-ec09-451f-bfd0-b85639218f45 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b0431f3-7f7a-463f-99b3-b837e7673820 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9707ebcc-6540-48e4-a313-af7814373fec +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4a8978bb-275b-44b3-8181-b249a819d404 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c9986020-0a3d-41e1-9cb8-b4f66facfd3f +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,43da80f8-6585-464b-815d-5437ffc7d20a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2689bb9c-0772-48ba-8066-c2a22181bb38 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ffb61e48-72c4-434b-bc36-e8cb139eca50 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9894d4b2-a60f-40d1-9e06-3cc243e40c9a +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e4df3f47-07d6-4306-97de-cd9c62cf14d7 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2e8484ac-7323-49a3-81f9-839b980182a5 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d58bfaf5-f71d-42ef-9cea-a6f830d50362 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dceaf15e-fb71-4ce8-b3a2-7654d53ac538 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d03ecb1-9c3a-4e58-9351-978421684d89 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3415a06a-ef6e-439d-bbee-7bd6e8e65f15 +CO2,Indonesia,kg/TJ,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,95062.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,68ca4928-ea1a-442f-b0d4-6edae4ba82a9 +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d0bd8b5-434f-4a45-aa74-e69e7f83058d +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80f41782-7352-4866-901f-617b7263fa99 +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ba4345f1-a1dc-4097-a573-7c3fe02c18ed +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,82c74b92-d290-41a6-b1eb-05fedad0d4bf +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6e27589c-5866-4db0-b60b-5ac47cc93c2b +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,99dac883-f0fc-4821-8554-39692daaf37c +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93af0ad0-f8a4-41bf-8185-e8f8df683159 +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0820798f-ff29-4a81-8b37-c125b9f93143 +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bca22d39-a8c7-4fb0-b063-757bfa3dba0f +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,557b22f8-b645-4e41-b657-adbdaeddb616 +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c31eee1b-954d-4745-afd1-6c0853c39788 +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,243ef989-6f67-4bd9-805c-fabae43ff1f6 +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a569d14-2923-4b72-bc10-fef7462689e3 +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f2c68f08-f9a6-4ebb-ba1e-341f7656793c +CO2,Mexico,kg/TJ,,I.1.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,48e53ca5-705e-4df0-9e3a-7be340610673 +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c51bcc45-28e3-4d60-821a-881b830d1d1e +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c25181e7-aa18-458c-a39d-83f56e1e2142 +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b784e40c-0650-45c7-82a0-a0aa31c4a33a +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f98c9ca6-9b0f-4553-a15a-91954cf9e6dd +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a79e0ac2-eadb-4d48-b710-75a735eb16f8 +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b9da3d66-641a-44f2-98aa-19bfdfdc16ed +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e7fe5b2-edc6-4c7a-9614-ffc52c00f26c +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d8ba513-797b-422a-af2b-3c7381fee439 +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,869bb648-2b3a-47cf-abd4-ddaa3f767427 +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b4a1057d-27f3-4247-a261-cdd74529939f +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cef92590-4f21-4076-8dbd-0442e87dd806 +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b8fdb176-974e-49c0-9db1-7c558e7a311f +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20cb0688-fce9-4a9f-a957-e5f4eef78e21 +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f70d32d2-ca69-4876-bd10-9ea4893531e6 +CO2,Mexico,kg/TJ,,I.2.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8d6371df-986f-4908-a5a3-ff451c5a3793 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a85a99f6-620a-4498-ad47-e9c6d378f823 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aed9cb9d-ead2-4037-9943-e945b6b704fc +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dec90bd1-2315-478d-a634-87610936fa87 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b92cb71c-1155-4e9d-8754-2bfdbd630d7d +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6bec794a-beb8-476b-b141-6e3fe5565800 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6ad41585-7086-408c-88a4-24626a2e2364 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0ea0a31e-0a2f-4f55-8012-b71c07ea9484 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6d64f13-8266-417d-9690-7e3c17c63154 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,952e53cc-8628-44e6-8d52-5499a9260010 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c407b1fc-38e9-452f-b2f4-5e827f756e82 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,77f0b020-8976-47ad-8006-4865dcf0a6ec +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,af2500e1-d293-41da-aa25-1c0080e95d5f +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,259f2b35-b8d0-48f8-8193-1ab3fa94a914 +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6eff5c39-8c97-4a12-a763-038a0d037f4d +CO2,Mexico,kg/TJ,,I.3.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,03a0e2f2-676f-455b-8977-68ebae39649c +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,965331d2-51a2-4898-b942-7878478d8797 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2721b48-d971-400e-89af-97811a4b3cd1 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f74c6f1b-9597-42a1-b378-03e554be6df2 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,29874ef3-65e8-4040-9914-6aa305be0257 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8eec5797-18e8-4e90-b157-cb19a7987f92 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,420745b1-32a7-4beb-b4bc-ddedd5b359cd +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,27535997-c5e7-4b8a-9c0f-abaf6ed55e25 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,97d6235f-5043-493a-aea0-e2ddbbc40ea1 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,73c2248c-e334-4309-b92e-2dc72cc1390f +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a02004a3-3a12-42c6-ab47-14453b75ca53 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,78675790-834e-4748-a271-e5bce97ca295 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b760e4c9-b148-4829-ab0a-2c6927575c4d +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f1c79cb9-427c-4596-b400-d0366b8329d4 +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1b97b42c-119a-474a-9178-c3c87e11beba +CO2,Mexico,kg/TJ,,I.4.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1ba61140-53f9-46bd-96ac-1cf90b617383 +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,64bb74ed-a4cf-497f-a612-4cac7680381f +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,748cbcca-7a65-4acf-8328-6f6c806d0f2e +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c23aeacc-700f-4ce0-b9f3-005b8f6bcbaa +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a14a7531-fe71-4a4b-bb07-b6effc0bbc8a +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3426a511-4579-4aee-a3f4-7fc96600323a +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e8f89f41-1266-4ae6-bab9-f9ff170e0a72 +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,46c3f0c4-1884-4e71-992b-9205d42d0fd2 +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6f61276b-d222-4f24-a33a-d117f40e3aaf +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b9c51a1d-5780-4b95-8934-eb9587f559be +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,18c4e796-2e6e-4257-bcfb-bac4024783f1 +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a922be82-d20e-4f06-81bf-3ace259b4f70 +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1a03f256-42da-4604-99d3-8e84eccad401 +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6043e123-2c47-4d2c-80bf-222566564e8b +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3512ce45-9b0d-41cf-bc61-19d3b6befdc2 +CO2,Mexico,kg/TJ,,I.5.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,37108ae4-7ba2-4292-b820-016eea3e4823 +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bb196a85-edcf-4c1b-a0db-f4ab236ed13f +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,32fac5ce-de26-43c6-9390-a2ae1fe99b16 +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f6a1063a-7aab-473c-a66c-9fc8ac2fd5ff +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4130b82b-d633-43a6-80e8-4ebe86db2427 +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a84c108e-f16c-4dfb-a66d-1f5ec9c274f7 +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e3d389b6-0a0e-481c-a3c5-b686b40f84cb +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a08bbb51-f949-4ff6-a61a-c800c1495db3 +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8947452-4ad2-4c06-8fdd-67d3a3c36d1b +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9975119a-f598-44fa-adce-99b4947c4e7c +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3e8e1e1b-d2cf-447c-ac4d-188f3865aca0 +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,231874f3-f713-4ce0-b2a2-bd9d73774d45 +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d752a08d-b198-4c09-9215-0b02021953c9 +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ddf0167b-2043-47e6-b645-c93d9acf2c8f +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c5d4a4d3-09c2-4d12-911a-3ab17dc69d7c +CO2,Mexico,kg/TJ,,I.6.1,MX,90911.74,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bc340361-1b14-4fbe-ac24-6402340640ac +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,562fa848-f506-47af-9f53-99149086054b +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7cb2575c-84a6-4d6c-ac9e-b8900de01689 +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5a4603fc-426b-40ea-a3a9-363685bfe452 +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e9367a40-1b9e-4879-8b04-776bd96a2f23 +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6a554246-f79c-47df-97d9-b98f7c8c3752 +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8b2b821e-c607-4d7d-9ad4-f98ade8c131c +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cf9a0e87-207c-44f0-8100-5675bd187028 +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,62dfd0f8-c2d5-4529-98fd-f24d8ccc5b4f +CO2,Mexico,kg/TJ,,I.1.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4cc0917f-e04b-4b78-85a4-ea33d7194dcb +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ca1153d7-8d6f-48c0-b358-a6c5bf9ec8f6 +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6b70211d-3a25-48d9-b459-12d115f3e8fa +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9e9641b7-e061-4f55-9867-c94b483d1040 +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b99faed-ce6a-4117-898c-ed96bb24e72f +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba1da50b-d7c2-4c61-8810-1b53d3cb94c7 +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2c154b51-45fb-49dc-8cbb-c4fc6c804a40 +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eddd0680-105e-4c46-8923-78f9809b8561 +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3cf85e0f-4709-438a-9112-a41c75c877e9 +CO2,Mexico,kg/TJ,,I.2.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,80a4030d-50a9-4b82-900f-16c8cde200d8 +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d05a80f8-f13e-4350-a916-4f773575ed4a +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,caa3d701-171c-4e45-88e3-e2662c368537 +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cf1dd2fe-c769-41ae-bf3e-5a9e87f73d1d +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3e63fb67-544e-43f4-9f22-d0470579617e +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4f28d5ea-98ba-43de-bde8-d532ba71df44 +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e7c95b9d-a57a-42ec-bcd7-875de5e7d2d7 +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76be34e2-6359-4679-9358-558eb4140a3f +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cb1e7a32-16e2-4203-af15-f141b422b844 +CO2,Mexico,kg/TJ,,I.3.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,430759bd-6cac-4d5b-83df-b3382faf5bd1 +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b71a5501-2692-46c1-b89b-d26c0d248e3d +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d048fcb1-38f4-4667-ac03-a945ed4cf87c +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f212b7be-443d-44df-aaac-b597abe958f8 +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b24255b1-87c1-45e9-9dd7-4bccd3e805c4 +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,87f5ca49-594b-4738-8ae3-27fbe3142099 +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,92b65178-c9f4-413d-a010-ae3127d2b25e +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,30f4e6c1-6304-465c-9e8e-be8268e50623 +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,edaef023-d260-443f-9fdf-06f2ab940616 +CO2,Mexico,kg/TJ,,I.4.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,34095a76-503b-49ce-a7be-7e66457e00ff +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,78d7320a-6a2b-4317-bdd2-4584ec8ec406 +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f499a11d-ebb4-46d1-85e9-0e54d75e8730 +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6aa30790-1c78-4226-9356-c3c3c257ff70 +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b1bc148e-336d-46bc-9a4b-e8e0190a4fc1 +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f4354822-1cd2-4212-92ab-87ed2fd7209b +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ee200a80-bd60-48ff-ba04-67c0df961a1e +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,563495a7-0208-4e1c-9b3a-0c94d9f65095 +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,250c160c-c796-430e-8a74-0ed9fce493ed +CO2,Mexico,kg/TJ,,I.5.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,89011ed3-7eed-4789-900c-96fd57d567af +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4685d360-5dfa-418c-a6a7-a090059a5b3f +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9e8254af-39f2-4dd7-be2b-e10390d8ece3 +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,318e8a5b-aff1-4a80-be91-c8b535a36815 +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f3eec78-88a3-4c3d-a1e9-14892f0464ce +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,93423b3c-8569-4afb-8ebd-3e99e9c39ccc +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dded9c37-788a-4786-8f8b-9830b476a48b +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,57591437-59d5-4b9d-82f0-64c3026ae0eb +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35f074fb-7938-443d-ada6-37976021e2aa +CO2,Mexico,kg/TJ,,I.6.1,MX,109598.01,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d68bacbd-2a18-4e93-b301-3e148f7a0044 +CO2,Mexico,kg/TJ,,I.1.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b7fb05ce-2565-40fd-891c-65863592116d +CO2,Mexico,kg/TJ,,I.1.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,05eac17b-cb4f-4bbb-a6dd-bc8902335102 +CO2,Mexico,kg/TJ,,I.1.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,250197f8-a21d-4074-ab6e-8e93825cd748 +CO2,Mexico,kg/TJ,,I.2.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cadfc4fe-9255-40c4-99ad-1ab1161e4c6d +CO2,Mexico,kg/TJ,,I.2.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a85b7019-b9a5-4a92-95e8-ac5f854fcf85 +CO2,Mexico,kg/TJ,,I.2.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8f6be1b1-8d32-4c50-a8eb-eaba713b832e +CO2,Mexico,kg/TJ,,I.3.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e42e3658-1b4f-4018-b540-34f29d662f08 +CO2,Mexico,kg/TJ,,I.3.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e0ec793f-5fd0-4865-9787-f504b774b1c5 +CO2,Mexico,kg/TJ,,I.3.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ef47c7df-9370-4b73-8d1d-96e84daacc0b +CO2,Mexico,kg/TJ,,I.4.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ecb9ed8d-f98f-4cba-b911-56c98e1b0d52 +CO2,Mexico,kg/TJ,,I.4.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2218b9c1-1fae-40d3-bbb9-2ed1c983bdc4 +CO2,Mexico,kg/TJ,,I.4.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,48c44156-61ee-4270-b153-1d6397200b6c +CO2,Mexico,kg/TJ,,I.5.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a46a17dc-d241-49f8-9288-5abbba971f3e +CO2,Mexico,kg/TJ,,I.5.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,57cdeb06-bff8-4769-9f40-cf59a4cbc14b +CO2,Mexico,kg/TJ,,I.5.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1f249fea-1aaa-4801-9632-3bf8c81e1724 +CO2,Mexico,kg/TJ,,I.6.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,94b370d5-beaf-47b8-836a-80566e5dfce9 +CO2,Mexico,kg/TJ,,I.6.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b35db6f-801c-4a08-9073-301985c4ea05 +CO2,Mexico,kg/TJ,,I.6.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,13d87779-b36f-46b5-8d47-b135fb16f009 +CO2,Mexico,kg/TJ,,I.1.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a3b475e1-6bd4-4cdf-9853-f40e786061ec +CO2,Mexico,kg/TJ,,I.1.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5d7b13f7-290c-4238-b34a-a1b68096dcc0 +CO2,Mexico,kg/TJ,,I.1.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,00116683-a2f6-4b98-95fd-b51e716307ab +CO2,Mexico,kg/TJ,,I.2.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2ecf674-541e-43ba-8d28-a9bd30026c6f +CO2,Mexico,kg/TJ,,I.2.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c4e900af-a0ab-47ed-aa70-80dc042607a9 +CO2,Mexico,kg/TJ,,I.2.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d117d599-6e54-4626-8dfd-3e4268030b47 +CO2,Mexico,kg/TJ,,I.3.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e57d27da-ffc2-4c8f-b72b-cf300d7ef8e9 +CO2,Mexico,kg/TJ,,I.3.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c8f4f78-e650-4f61-8b02-7e90f351efd0 +CO2,Mexico,kg/TJ,,I.3.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fc2206d5-721b-49ee-8003-6fc8a941954e +CO2,Mexico,kg/TJ,,I.4.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e9197661-69d1-4d78-a403-5d4a3c45da0e +CO2,Mexico,kg/TJ,,I.4.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,78a0bc3e-1c4a-4b9e-911b-89b1c22ab64e +CO2,Mexico,kg/TJ,,I.4.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6397e2e9-8d49-42d1-b3f8-546724e7d277 +CO2,Mexico,kg/TJ,,I.5.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e8dcc110-5cdd-4fd2-ae1e-3c6349fce214 +CO2,Mexico,kg/TJ,,I.5.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,86d4d2f3-d089-411a-bc7c-f13ac8c99c86 +CO2,Mexico,kg/TJ,,I.5.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8b4ce312-a2ec-4b40-89a7-dc4363c1280f +CO2,Mexico,kg/TJ,,I.6.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,968d9b15-dbd4-4d82-8bda-bdaa9470e9cc +CO2,Mexico,kg/TJ,,I.6.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b11003da-351b-4cc3-b651-f7c42cdad9e9 +CO2,Mexico,kg/TJ,,I.6.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d67cfdaf-14b5-47c6-b1fb-41feff9f8fbd +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9786dc5e-edb3-40fa-8003-87806adf00f1 +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b87ce3f6-e304-4457-be32-f63d478f0f79 +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f7607d33-6fd2-462d-a1c5-82311b68b08f +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e3ac4b19-90d3-469f-92d9-33f0d7e3e098 +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3a440d3f-af09-4431-b004-09029deeddec +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,aaa91817-c074-40ef-803e-6b3726b1c9a5 +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1612ce02-4309-49d3-a801-c7a325a2e6d8 +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,58c7772f-6a39-4774-ac71-1bbb4732c508 +CO2,Mexico,kg/TJ,,I.1.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,99def8cd-2c81-4990-a94f-8719d80d2934 +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a9cac34c-a0d5-4174-af37-4d7e8b9a25a8 +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2bbee8cb-5151-43ca-ab66-9059d99da2d4 +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,851db968-8c65-4412-afba-598300996c74 +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2805048f-e31f-4294-b922-dbd5870ab777 +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2ae6cba-1b9d-4672-8d48-110b3f4d8096 +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,30f3ae5c-b6e8-4101-81c4-fabb1f1e7739 +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eba7a0bd-75b0-4fe5-9b57-5d4394de151b +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,29969148-b03a-4545-b276-c1c4aab2ffe1 +CO2,Mexico,kg/TJ,,I.2.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0824e5e0-dbe2-4569-ae16-151eeeb1137a +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bc2b4aee-c052-445c-98b4-d9a34f41124d +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,13af1131-716e-479f-8794-32cd69d1a723 +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,db71fcef-082f-4e99-a3a2-37f4fbc259b6 +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a4530032-1884-40fb-9c22-64d4c0bab9b2 +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,552b1ef2-f1fb-4bdc-8324-7b41ee4df991 +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f24538e7-828f-477f-bdc0-98287a1304d8 +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e9ecb4b-236f-4d12-84f7-b57179441578 +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eacfce8a-dfa3-4bb8-8114-95221f6dc911 +CO2,Mexico,kg/TJ,,I.3.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dd20f9d1-1df4-438e-bba9-9ad705625c70 +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,83056db8-fd47-48e3-ab6a-bda8aadcfc43 +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,809f4b99-6df7-41ac-9b0b-9f465ff0e6e3 +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,03e0edeb-4421-4c38-90f1-0771f3ac14cb +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4ef035b4-dc54-4a6a-8de3-0a497c9200aa +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7027fc61-ef99-4e25-9c6a-c26663b38e43 +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,65d3fc75-0ec5-4557-ac36-67fb753e27ed +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f6ae48cd-5c11-49a6-8f4f-c47f63688891 +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ce2e276-088e-45f2-9a9c-86a6afb1d52e +CO2,Mexico,kg/TJ,,I.4.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a870927d-e657-4222-a12e-b70127b5b2f9 +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,057ae5b9-3b83-4871-9ace-82cf09f3c064 +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bb1d0833-957b-4048-86cc-915eb8844477 +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0f6a08a3-d1a8-4f0d-8090-9afbdef2c642 +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4fe89642-2244-46a5-9406-b14914acffef +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,72d59997-7251-4d78-9a19-e26cf33a0279 +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b3a510e3-4718-483e-94b5-59be2212da44 +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,300fb53c-ffaf-41d7-b4f5-dee150d3986d +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,532c5c24-bc37-4c01-b521-8659afec5c5e +CO2,Mexico,kg/TJ,,I.5.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,89629517-2363-4f7b-96b3-1a65446934cb +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,714969dd-acd9-49e9-a3e1-1328c48275a7 +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0e5d7299-a951-4da3-975b-c2e8e3e834f3 +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,912c4a12-4b71-41a3-9f8a-055373eb4e03 +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd4b2da9-c841-4b27-bd5f-4e056e94ee6a +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,25ce1722-6c1e-4d98-b1cd-0a79d0d4cf2e +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1c5737c5-5e3f-4613-86e1-0fcff23cff6c +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b7b9a165-1187-48ee-a62d-179368ecf6d1 +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f159ced3-f01f-47f9-97cc-be6530d4a1b5 +CO2,Mexico,kg/TJ,,I.6.1,MX,69552.71,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c92eed5a-0962-4ad0-a446-e3a1a3e5b13a +CO2,Mexico,kg/TJ,,I.1.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62553d80-316e-4f1e-a93d-42ad2e1257d3 +CO2,Mexico,kg/TJ,,I.1.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5602013e-2a11-4d14-a2b5-f9f89ed1b28f +CO2,Mexico,kg/TJ,,I.1.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bb49da24-2fe2-4ea0-baca-d99f6ef9698c +CO2,Mexico,kg/TJ,,I.2.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,57092424-95a0-4ce7-bb26-a48d655042de +CO2,Mexico,kg/TJ,,I.2.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f830d8d-b679-428c-bd2c-0d4d425a877c +CO2,Mexico,kg/TJ,,I.2.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3d42d265-2624-4608-a729-7dddee742437 +CO2,Mexico,kg/TJ,,I.3.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,94f11367-32c0-4ed7-99da-003300c2e3b8 +CO2,Mexico,kg/TJ,,I.3.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a463e43f-f2cf-4c47-b201-bae13177f9cd +CO2,Mexico,kg/TJ,,I.3.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bf42487e-78b4-427c-b166-8815a5c06902 +CO2,Mexico,kg/TJ,,I.4.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d68bfd8-84bb-4beb-8e68-6db9ed2a3dbf +CO2,Mexico,kg/TJ,,I.4.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,df229220-1f7c-4592-9d3a-b5854f84d4b4 +CO2,Mexico,kg/TJ,,I.4.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2511463f-3a50-4a51-906d-6ed6ce1fe988 +CO2,Mexico,kg/TJ,,I.5.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8bd635b7-c888-4074-9b95-db53f79b697c +CO2,Mexico,kg/TJ,,I.5.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a742458-36e6-42ec-9fb9-f7122ee48d22 +CO2,Mexico,kg/TJ,,I.5.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,edb6086d-94af-4ef2-8143-3e2a8659c195 +CO2,Mexico,kg/TJ,,I.6.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0715a6f8-f288-4623-bd27-7fd5c05f6a96 +CO2,Mexico,kg/TJ,,I.6.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ea3d55ee-0ff2-4f44-87f2-053c4e0d0eef +CO2,Mexico,kg/TJ,,I.6.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0e9e90f5-1f64-459a-847c-76da73563909 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6dc3ef03-2bf0-4658-a6cd-7c8d194da6d6 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d93e83df-6d8d-40e0-b56d-1bde8debedd3 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,17b5c6f1-b735-4ac3-a6b0-de41cf2dc134 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6474e640-d1f0-40b8-b11b-610326f162b2 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ef12392c-853d-4935-a958-6eba30d3f13f +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b36bb835-4bee-4f41-9936-783909679e6c +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1d1d381f-b460-41b2-98bf-ddbaee6cafb4 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,704376fc-7f3e-40b1-b5bc-1a45007b2afd +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6567645a-7b52-4f88-830f-fe8729c6ff09 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3df7f03a-5817-4dd2-9f71-2f34fd4fcf4e +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f2b0f32-94bf-45ce-b30f-61b7a831f347 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3b0b0dfd-7673-4b97-85ba-aa498d4636c9 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f692526f-6cf1-45b2-b41f-d8fa823dd9e4 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,867a6a87-4e5e-42bd-8e33-441c88189364 +CO2,Mexico,kg/TJ,,I.1.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,88a950fd-20dd-4cb1-830f-9580c67d8973 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb8f28a0-b88b-4adc-931d-de4283a32bde +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6914218-4383-4b98-afc7-b58306aca9f3 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9126eb1f-1776-482b-8b39-603821ff98bd +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1a09e3e6-6e6a-4b1a-add6-6b40f5687b13 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,60be07a6-794d-4b6e-849c-9ca28f154f86 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ddd13b9f-cefb-4728-9305-c04ef29fee83 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2a436891-2593-4569-9f41-3fb3ace694a9 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b9c1b346-8263-4afd-9a4f-d3284ce38efe +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,be825532-ac12-4c29-a22d-a84d467e4c97 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3128fe9a-c1dc-4456-be90-37dc435b0e82 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a3b61a31-b3b7-445c-9da3-8bf845b83fe5 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f5e73bad-db43-4570-aa75-ff8cf21fdb07 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,50dfbc62-07e5-45f1-bd8d-7e18d908e14e +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c1667558-20de-4035-abd9-3d20c55f4b84 +CO2,Mexico,kg/TJ,,I.2.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0866504c-eb7b-4b2b-a6d4-60f669dc4e3a +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f119a5b5-2e6a-4083-8bec-f4e39631d26d +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,285be65d-b46f-4ec8-a91b-0be6c7e400d0 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3f744b5a-bc6c-4697-8ede-b31d4f4bd221 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,34fc3a13-4d28-40c8-ab2b-4a471d8c8588 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d68e6934-9902-4e0f-b831-cec9e8f6791d +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,16b7e233-8447-4945-8241-36564de171ef +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f22e2728-1ac3-42ae-9ee4-91f919e9ec86 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f6c4dc96-ce84-4f43-9124-c6028efd8f0b +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f65978ad-aa57-4a44-b46a-ed0b288a4924 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0faae7fb-cc0f-4736-8177-dce17dd8e748 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f327749-5815-4fb5-a39f-a32b23a5c3f1 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8b992f2b-a122-43a2-a3b0-c543cb31af60 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bb26477d-e6d6-4f01-8076-13d8ccbc03d2 +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,680ff1ab-500e-49d1-99c7-74f3a8aa0e7e +CO2,Mexico,kg/TJ,,I.3.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,475bbe26-e497-40b6-b3e2-5eabb132d932 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4c2d334a-adea-40d8-8daf-a2b133ef2d41 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b8117df-05e0-415c-8f25-52c4b725b857 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f57115ed-32f8-425f-9732-fb9e464cdcfc +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,57e3cea3-2d13-47de-88a5-a877a9de27f4 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,87f30095-5f77-4275-8759-8f2f08a6e2b4 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,91762cb2-e58f-4544-959f-2452a9e5f7d9 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,021b91bf-6e11-47a2-828e-549d083d4554 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6bf9b804-a00d-4748-b850-b7fc96e10ddf +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,eaed851b-e7e3-430d-9c36-7313a1bece55 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,00995746-19dc-4223-9748-89bf746afc9e +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6e2929a6-87cd-4a59-8b34-adfdaba8d718 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0fff0110-76ce-4166-b4b7-e17996b3f97e +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1ab166d7-ddcf-4091-89bb-13e60ae10fc9 +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f8ecb4e-56dc-4c0d-9cc6-c32edd73594f +CO2,Mexico,kg/TJ,,I.4.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,475ea6d4-da9e-45c8-a08f-57a1c4cc3385 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1e87e79f-092d-46bc-94e2-e74844596f1f +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fe270ca4-54e3-45ea-9586-2490baea2e52 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,81a8cf33-3c83-4f1e-b2de-03d18d3f9248 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eaa628f0-38f0-47d8-b7d1-c197b49b9ff5 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5dceb46d-5193-48d9-be43-ec29231494ad +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4ccf749d-af6d-4b96-b72e-10200092c31b +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,92764fad-65a1-4ce0-8102-b54b203b0822 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e19c327-5aa1-450d-915f-d44b71016686 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,376a280f-7772-4c60-86a1-b771f67c4ec8 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,272446b2-f322-44ed-804b-20825f5b5fd9 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,263a9d48-f0b4-4ff7-9157-8e15642133b8 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,034ccef7-3830-4c7c-af81-c57f4679824a +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e3a2ed7b-f912-4a05-a087-08a017dbefc7 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49381883-7718-4697-8219-508d4d475242 +CO2,Mexico,kg/TJ,,I.5.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cf27facf-6507-4af0-87f3-96be2b92aff6 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a06d9e9-7bc6-4446-9b34-79828a07d011 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b1f4cc4-d683-4ea2-977c-92ed0141c3a7 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ce70ccf9-8936-47e9-9c80-d6fedcc7cbb2 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d079594-4ad9-41ad-8dd6-aa4aef60bc00 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e642e67-634d-488f-953b-a1b756cd6b13 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,28fa934b-fea3-40d3-ab9f-7dbe2793b3fe +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b29fabca-e631-4987-a2d6-e1a601da32a0 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f3c08e2-8141-40c3-8fa3-4adbadbd56d7 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,70ac5784-5ce7-49f5-8971-f0493bb5c875 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,356edc45-0a54-4e96-96d3-e1f715832a92 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b65517b2-204a-43a7-810b-f38bc3c1eaf7 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,afe7bbe1-5231-4b25-b834-05542e14b7e6 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93cc6d51-9f3c-4e0c-8d64-6c9ca656f8e7 +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,77acc915-1308-40de-b802-aba3ead6bc1d +CO2,Mexico,kg/TJ,,I.6.1,MX,57755.93,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,26db9085-3305-4c58-893a-473b25c00d0f +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f79d2d5-9a3e-45e0-8bb2-09a604ee22ee +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,41b890a2-2ea7-4778-9e48-85a050f78022 +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,33edb420-f109-4d48-acbc-2b6acb0cba20 +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,737f76f2-c834-40b1-820c-8d3466830879 +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,03073427-7ea2-469d-8b79-00731a9254e6 +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6ed0a590-77ac-4d07-8225-5b1dc6a92484 +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7cafb798-0adb-4060-ad4e-6e8f9e73ccae +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bacc63a9-457e-4adb-8ed6-570f502f8aab +CO2,Mexico,kg/TJ,,I.1.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,66cded11-fbdf-4f43-b210-c5f30a8777a2 +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7ccdf5c8-b8c5-4ae6-8526-f6f96dad0dac +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d11d60d2-5977-4923-baf9-b709d9cda354 +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c9fd0302-e159-4c12-9d7d-9e0d4f908f73 +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,082de9b7-4806-4cfb-aaf4-a67244beb6b2 +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e5e3437d-823d-4e94-a35b-715946ef3922 +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bd1c030a-e338-4cef-be21-03a094f354a9 +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,066fd5ce-7e09-49ca-9daa-f954398e1d9a +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2fcb878-1fd8-4f43-9962-20a187e9fac7 +CO2,Mexico,kg/TJ,,I.2.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b912d182-cb86-40fc-a2ca-c73200ccebe3 +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,388a24e9-eedf-4ff8-a7b1-922786c353e1 +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c395b04b-963a-4128-b0e5-5c136f34741f +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bc0198fe-f8fc-47da-92e2-05bd9c48491b +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e935daf0-3c1d-429b-84a3-6225a6864fbc +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,99f033f7-0581-4b13-a388-6260f7223f3a +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c65b52a0-9bf6-4312-917f-1f5b0dd63fc7 +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f96b92de-de5e-41a1-b225-bd5d884b2e0b +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,64a12e4f-b52d-49d2-8d68-b0c187d92f1e +CO2,Mexico,kg/TJ,,I.3.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ac9d2dcb-5d1f-4284-92ad-7d3758737a65 +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aa70e595-1601-468d-a267-fbbfabc47257 +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,085dfed3-c8ad-4421-a700-a6bae96f9ea3 +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c949b0c4-3e3d-41ef-bd77-6f78b53cf845 +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,139e6d6d-865d-4d34-af8d-450f1a8470b5 +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d826f049-29ea-4257-8b4c-842c23b3572a +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ee6e77d5-8f73-48c7-b8da-ca0895be9562 +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ebe487ed-969e-404b-b6bc-0a3defa1fcc7 +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,576aeaa4-aa8c-415a-8c98-c975498ce5c3 +CO2,Mexico,kg/TJ,,I.4.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,971b4aec-db65-48c0-bad8-c7f69412c41d +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,767190f7-56d4-4b91-bfcd-d0816a3c96f1 +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7efe9f8a-b840-4228-8606-e2dd6cf930b6 +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f56bf4e8-b00c-4840-bbde-6adf0eedcfc9 +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d43e8711-58e0-4de5-82b4-9d0a08d62615 +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b144e936-9cd0-41b7-af72-a3fffade1dea +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5f14ce72-52b7-4ec7-b5e2-b2b6b49a8f7c +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bada2145-25d0-4ae8-902e-42aefcd85919 +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0c81c692-3df9-4f5c-ae79-6e136b45db2f +CO2,Mexico,kg/TJ,,I.5.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b0cb3056-45ef-4276-b63b-40ad3438a362 +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5c228a21-2e06-4a98-a34e-a1064d51cc2e +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c230133-d046-44a4-b485-e5028e1d7a7c +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0f142af8-3ecb-4d0f-8e3f-55f99fadfca3 +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5a1ee8d-78a8-4e8d-9727-2d20182a6be8 +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3e02a9c8-4d5f-4aec-92e2-6eaa114335c0 +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ebde8d09-b945-4205-882d-b722d5bdfdac +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0934eb3f-d604-40a5-8858-865b577c68f7 +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c2cb3ecd-b307-4890-9c08-c7be54d4c67f +CO2,Mexico,kg/TJ,,I.6.1,MX,65082.9,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5bb7d65b-a876-4c96-998e-230307725007 +CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,96.43,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cbe12a98-4ce0-4577-8c35-623db51868e1 +CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,96.43,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c5e3dcf7-7ce9-41de-a7da-0890dfa5a473 +CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,96.43,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,ecde06d8-029b-43c2-8549-c3a39db7cc77 +CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,93.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72874b1d-a195-4faf-b77f-37db7f5bee04 +CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,93.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7de05b5c-6726-46b8-ab18-7671231dfb50 +CO2,All over Ukraine territory within boundaries recognized by the United Nations,kg/TJ,"Chernyavskyy M. CO2 emissions from coal-burning thermal power plants of Ukraine since 1990 and the main factors for their calculation // Intern. J. of Energy for a Clean Environment, 2023, 24 (1), 97-113.",I.4.4,UA,93.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,24354350-9d23-44ee-9e9f-90c6fbb1ba8f +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f53bfdc8-77cb-49b7-aa15-74922189268e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0fedc614-1f8b-4c6f-a5d9-17e0113f3ed5 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6eee5d89-f383-4b44-a2f2-ccb5364acdbb +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,66bd85f0-6d8f-4847-8812-f89b6be71f22 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,51910689-ffd0-4d1e-a29e-3436e79f473d +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,509d06ab-4a66-4b12-ab15-629037884b7e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cbaa48d9-08c8-4e30-8ea1-d564a282c546 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c5b633e-7889-4136-a56c-ae6d39f1d080 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,3b955d7f-f41a-48f5-98a2-186beb3c812b +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cafb512b-a1a7-4c72-b6df-282fc5fa4a53 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b860699e-7745-4be9-a76a-7235c0de7ace +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,dcc1471e-11f7-4ece-8596-d25038b2ed77 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,023e5603-5578-4fee-90dc-e9e3aff5a000 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cc042b24-32e1-4540-bd37-388e8ff44e11 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b2c983ad-5ffc-4331-bd1d-b5bda769c531 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4546e2e6-3e05-4e60-84a4-d80414acf7dd +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,be572f50-56b6-4f7f-8fe5-a76f216a4683 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,14fae756-f8c6-40d9-9035-f62db5cc3025 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,95462792-cc11-41d5-bc89-d130b631e93f +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7643954-04dc-4039-bec1-209f16a275ab +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,92ca35f9-0072-4f81-80c1-061c0b9f76cb +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bf3eb442-9076-4578-a571-eddc892fbad4 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8554b5cd-d653-4364-86dd-69dbee6543bb +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,5a705d5e-a06e-4995-98d4-9dc4abc31ade +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,baa70cb0-1745-416a-a58c-a22e9701e3bc +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5fca22ea-b33f-4ac6-821e-c953abda5f47 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,9afebe2a-2dcb-4751-9f9d-b64c56a4ae0b +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,508621cd-4a3f-4a45-9607-1664ade82c2e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,131bda4f-f7a9-48b1-99cf-87650420f4a3 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d58b6867-fcc9-4ab5-9644-3915ee0ad316 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0fad3687-0feb-46cf-a360-6764b765d73e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc0a9892-2c93-4d7d-8d5e-b5ff55d73d6e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7789bb1a-2255-41d5-866c-8e52cec65439 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dca8b50b-f43e-4447-b7b1-9485e7d0f7b2 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,760aca96-3fcd-4d06-b6cd-250a759f2050 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,27d68e65-b8dd-4bef-819b-ecd67669e89a +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,213c5bc6-6b6b-4db4-87dc-76af7be1091a +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1774cef7-1914-408e-93b4-4a0edbd08b4e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ee5e040d-2f48-44af-8f35-51287c55d00e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,02317dab-603a-4022-9d93-68f0a40ad6a1 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,722ad324-dfae-4c9b-bbab-b32ffe78bb31 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,693dd802-2fca-4490-8553-f3737d6ac89a +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9eb4992-ed40-4621-9a0d-b55ce383075c +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd319407-cc20-4c60-a956-7411d2e85835 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,aab936d3-1774-42bd-98fb-bde272a62697 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0938471b-b44f-45f7-b59d-7fd3dc8c31dd +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,403e7f1a-36b7-4bae-9743-6cb392b6e259 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e50f4155-eaa6-4fb8-9906-bf600d314c3b +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c404e561-b808-4eaa-b6e2-8ec6995d3ff1 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ec1e4de3-5b46-457a-a3d6-9ecde10b693f +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c61b887c-251b-4741-845c-4adcaeb33b25 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8efdca23-5470-4855-8f70-558b84a9013e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e96d1b7f-d1e9-4be3-9ca7-0d9664d624dc +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0956b586-db48-4325-86f5-ade9a1b9747f +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2dd38ded-8b0f-495b-a9ea-3f7d02d52f57 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e1deef8d-4d89-4fb2-b615-d82000babfa5 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,23442419-6765-4e33-a717-85b063528f26 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b78b6fc2-6f15-4ad6-af2f-dd5473874569 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7c61a0ac-bd4d-4741-bcc7-03d90974d576 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2f531fcd-cf1d-476c-91e5-1be7f834c58b +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d7054962-98e1-49d7-90cb-5d756d125be4 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b517b130-2d84-499a-b5e3-ef8ef5bdcf2f +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6473db4b-611c-4735-a1be-d2ce73665aef +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e211a0f8-ad29-48cd-8dd7-cc06ab5be997 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0e2f94b4-9c90-4553-9e1e-358721e2c881 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,95431470-a5ca-41a9-8933-52816407c803 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,94135789-5945-485b-ba54-85350a859f48 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e943b501-9175-4644-8bf0-602d94050256 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,237c4e8b-2c3b-48cc-904b-db3ec23a9588 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2dcbe5e3-816e-4ef2-8894-102e94c1db5c +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,685a2feb-2499-4045-aa20-e5276d1d7451 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,45386aae-6847-4f59-8463-3cb0aff7227b +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9e89e598-64eb-4315-976a-73b6fb4200f1 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,edbf6a52-b54b-4787-97df-cfb7f768a10b +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,e1c0ac4d-9175-44d6-ace2-b00e4a612f94 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,798cd738-bb92-475a-a62b-16093810445e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,46bed969-223f-4aa8-a875-3b372ec8c1bd +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,77f38972-575f-4a8e-9c6e-c5be8dc92a98 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b02a6ab-6e3b-4e0a-9cd0-a97846925d24 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,50ee321c-c174-45aa-98f9-31264a062f61 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6111d639-778f-466b-b151-0842935ac14f +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a9b836ad-5e81-4d44-b659-71b69355d1ff +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,621d5da4-8487-43f8-973b-538f20532b90 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f14c0ceb-e272-43b2-ac76-b9a5060f780e +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ffb944c-0f88-4a24-962f-680cfd84c892 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4bbaf6be-03c1-404f-b885-3b1d22d65f9f +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,b575fb51-02d6-4903-a966-fca3839036c5 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ee27c14e-80cc-4ae0-873c-4176c07a92a2 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6b876f6c-9287-4fe7-84d8-56af73496223 +CO2,Australia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,15.04,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,98ef0304-143b-4aa8-a712-93ab20f163bf +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a98b0edf-1e75-4dfa-8fc1-69307c306484 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,65198ab7-8be4-4477-9257-a6fabdd8b66b +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b9a9d8f8-9e16-4950-9750-82d1b29f91fb +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c23cde6-622f-421a-a408-6f04f55d1cad +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73e0ec1c-5e70-4e00-95bd-a4aaf17d48ad +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7d4f7113-7652-471e-b6de-fec621b2d83a +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,02fe6bdf-a178-4675-b56b-3048601fdfff +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3a3950b6-3770-465d-b6d4-79a4327c318a +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a966c949-f78d-4703-ae16-ace2488b1c2e +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,81797570-b348-4225-aff8-cf98f9d36bf9 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2bbd587-17dc-4806-90ce-1a81395c154c +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,be4b9075-00fa-4a51-8224-7bd69bce7de5 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e83b1baa-1736-4d48-a9c7-d67ef99f033d +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49255236-7806-4319-860c-8e0ba4cc5e8d +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,b2e2afbd-c921-488f-b6f4-5d767561bd02 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ba9cdc89-e934-4790-8d88-c1284f626a37 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6abb7e1-c3ad-4905-9a0a-1f16bde5005a +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1a733006-16f8-49ba-b101-942cb084cfc3 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a07bf64-61ec-4939-a385-4655b94127a0 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2dea7fa8-2a88-428d-93a1-50bcdbf1d944 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e2b642f3-10cb-4487-9e53-557ac778ded7 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d9fedc63-6149-41a1-bf0b-b77ec15f9286 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a9a5693a-0776-4acd-917a-c194639f2f37 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7462c9f8-dc06-45aa-aabc-8c427f6f5127 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1c809362-c7b3-4320-9693-77501e2a9179 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,828d1928-b165-4f73-8226-fe01167a4caa +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,9a4ba535-b899-4909-9b48-7fcbc60547dd +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2c4f11e3-2f82-4a5d-b7f8-f1df77847929 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,85e480df-a010-4b3d-be22-548a4d4ddc64 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,417fa41b-531c-4fc2-a8a9-8b263f8a01c1 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d4a39fec-efa0-419f-a37c-b08a9f478001 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b62fa3bc-e6b1-49a9-9a22-42f38d71c918 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f19b7115-65a3-4777-bca5-95d3c94a9351 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e62ef0a0-1b96-46e5-8de3-c8fdd201e27a +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,68d49536-07f9-4484-b16b-f5c602898c07 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,4496d143-c385-427e-97a8-24516f7945a0 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,132fb5be-0fee-492f-8a02-42b8bc71ab61 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,170ea04a-1df9-41a3-8858-6b6a3d54630c +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,85644066-39dc-4230-b787-1cad216c9f25 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6396bc6-5354-4d65-b99a-2af6cfd7f799 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0553fddd-e2f5-4bbf-a794-07c54cfd9896 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,3cfecb93-ec08-4563-8d56-25db96bcba39 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c811d886-c659-43f1-98cb-399e37bba954 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c0c1c363-aa7c-4f03-b409-bd3973c32174 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a7eeaa22-001f-4999-a6ae-e15a37862019 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7f468f3-4bf0-4218-b254-a1bf795e6a41 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,48fbb20a-6325-459d-bdeb-ac45c02db68b +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a478c6e3-d253-4ebb-bbb9-2d9a33e4f3c1 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,29b4b496-5b33-4136-af7c-c5f559ff684d +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2a7ca5b-7a86-4092-b08c-b32263a16066 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3152489a-72a2-4b22-a004-bbe9cea95f43 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72316ed2-c558-4030-8ca0-3b6b670755ec +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8be35c34-b2e8-427e-98d8-9eda5aa5f744 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ed8dd7ae-9fe0-482a-a2a9-b04b3fac4faa +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d354b6ec-9773-4ee0-b6e9-66fa8b923320 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bae264d3-b126-4ae0-85f6-6a26c27f768f +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,38940339-8dd5-4035-96b6-c92111abe198 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,035575a4-63f0-4131-8e46-726472dc0d11 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,324d18ab-e034-444a-a14c-a5fc47c13388 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,cfa87903-eb28-44ca-a44a-610b721fd132 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,946429ef-90d9-46e8-8536-993b710e8edd +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6a00ae92-e9ca-4d91-9788-5745ae0e2e3c +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6d7e50ce-e8c3-4347-8bae-d0d318f9fd3e +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,48af9335-a38f-4014-b975-6e5a945f8c07 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c1bc11db-b847-4e72-b665-05e0b2b0866f +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f924c5b2-6473-4a62-a962-1da27c7ecec1 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ae35895b-03ba-414a-8e0c-de1644b56780 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c54b2210-f78b-4ab5-8c15-bf3bb3c25dc0 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,dc17093b-f07f-4928-ad2d-3ebf70fd0d24 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,50e5e86a-541a-4f4d-9440-e507db865728 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,151f761a-f8c4-4e78-88be-56c2b37a4c17 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,39e878e6-f40a-4308-95c8-bbb03171ddfd +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,018d2877-8287-4356-b61a-36da514ec136 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b301ebd0-5a14-4cda-ae59-8dbb234ef215 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0ba08a87-1d42-49ce-9031-4e319482aaad +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2428df8e-6d58-4770-8774-2b1bb65e9def +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2520bb9-41bb-46ff-bd91-551e32e70cda +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fba20487-fb10-4044-90d6-2d1999aaa517 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6dd9b619-22df-4da4-a66c-fc7979fd4060 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3c89af6b-4fbc-45ee-9c97-0180340113eb +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6fa61ca8-6bee-491d-a3b1-71a02d6c7c4b +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1a717c84-bb61-4bc8-bd89-6d1ec7ea5ed8 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e2ac15dc-aa90-4744-8cc8-91f1ec892a61 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,28c88063-af11-441e-b1f7-d16f28628a11 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a64b2b2d-1593-4b7c-81be-3cfaea5dd076 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20d4b500-6f75-4d7d-aa80-edd70f8e7bff +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,3288b7b4-35c2-4151-a5ba-f0e56b57ec86 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32115251-c428-4201-9a0a-ed07e1c45264 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fbfddb22-3491-4d5f-8b24-05b41c57fe58 +CO2,Indonesia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,15.07,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,44b439e9-db56-4b8e-8b55-5d8d92c98ff0 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,51473b25-4f76-4af3-b6d7-f6617c1ed064 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc795431-4622-454e-ba79-cde9b2ebcccc +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,281f0d99-8b6e-4bb7-b82d-cf0c62269927 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,921c7acb-7142-4b9a-ab3b-6cff5ea0af22 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9beee0cf-648e-46e7-a5f6-6c8429cd1b4d +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c03e10d0-1e22-4975-8d56-5158c409ea45 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,035feefa-23ee-4105-ae34-3de7aa92a1a3 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4977de0f-bd5d-415f-81bf-1148cda3661c +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c928e053-eeb1-4535-9318-060729623b72 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5d3e7ab-1ce2-41a3-a773-4256a321a390 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,da1d74b6-cd79-4e87-9010-98eb64491135 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,68de9d50-1399-40f7-a675-6eef25ed2bd2 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3d0c6ed7-b352-4c5e-a72b-be5047392e01 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,103fad33-e433-442d-a1f7-6e8c08d46bf2 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,dab7aac7-863e-4076-8977-a7c593128f82 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,274bef82-d5e7-4cd1-911a-fbe3241a2de6 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,889c552e-bb79-427b-8f48-a910a245cd7b +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2879b4ed-6572-48bd-8a95-f21eee4468aa +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ada2fd02-3d64-4ef3-b079-12c9fbe3ba94 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73af997c-f701-4e69-8a6d-3ea202e88674 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0536fb3f-30ce-4380-89fd-5354bad4ebf3 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3836c32e-115a-44cc-ad60-d05f79953c36 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e7c3416-6272-403d-852a-516bf1025623 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,229e291b-aa53-4b4a-afad-d32a948fd57f +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b4560fda-fc67-4858-9a73-5a4c9e4dbf10 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,32ee490a-3974-4d5e-93c8-2ce9f6942a5f +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,fb573941-d87b-4c8a-b456-1dd6731619f9 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9cf7d78-108a-4c53-a074-f96ea8cbb4af +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,df2b4682-5d28-4f83-b128-e82536a332d9 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,49d0815c-f68e-4c52-99b5-d5683cf3362e +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74b07da3-a75d-4a8c-91b6-a5567f512c90 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e70bdf65-cd97-45ac-8b95-40ee667e8a74 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5ed4addc-572b-4d1c-afa9-abe15056e095 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,571067a1-e568-429c-a7d3-31509b4e35c9 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a6ac24f3-2af3-4e6d-b163-3b86ef53ecd7 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d130889c-5a2a-46f8-8f91-fc461c3735ff +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9c94aecc-cd82-4ceb-ae11-3ff8a179d863 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b7880791-c52b-416d-b242-b164ec8a9b34 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2a4b4e17-4134-423a-824d-68e9db1a105d +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14b4569e-c035-4c6e-aa72-296884884c4e +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,557132d0-6a7c-4e99-b2a6-bf444ade959a +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,3481fea5-4716-4c73-9f59-39e55319f7dd +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e1270b08-2598-47e4-9690-6607cedbc1e9 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d25ea4e9-67da-407a-8705-b21cfac2acab +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,73aea4c2-dd9e-4e6b-b77a-3f763a48a128 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,844718b8-22a2-46cf-a9ea-787d38e93f54 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20fb4f24-1796-475b-a69a-fbd6194bfba9 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9946ab6a-6a10-4835-83c2-bcfb95a567b8 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,98336d67-c649-4617-a370-4452ad32a64f +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b351735b-5a69-4b7a-a1aa-a5a0af957406 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,52941aa0-4f1d-4ec8-8344-42c75c61ca11 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a016c197-a7e3-4b2a-aab5-a5ea5dde31aa +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb5ee1b8-8948-4a84-8d04-987b566ddfb0 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,47277d9c-4aa0-4279-877c-c35b408b64f2 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,89e6bdc4-c762-49f8-b133-01cce241bd33 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c6f6f9c-0e53-4c9a-91c1-767946cb1c0a +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,e35390eb-281b-48bc-9d23-07d7bf2f3251 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ca7b222a-6666-4d05-ab3d-7f93eee1567c +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,360da4e2-42a8-449d-96ed-e45157f388a2 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c336af7e-1c85-44e3-9c84-e25aa4828d7b +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,26e9aed8-7d35-4658-97cd-1f5ab8406a6b +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3b4e238d-6a87-4abd-808c-cf31d7b9a789 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c13ac717-622a-471a-8b09-482ded2906ba +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e139ce02-0c08-44c5-bdf6-bf2acd963113 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4060d433-5205-4355-b472-5a7e0270bb7e +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b31bfa5a-3b82-43a6-935f-1c1dae6255ae +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7605e921-2ebb-4a6f-a904-3d608f2e0868 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e592452a-909d-43ae-82d2-b7aae9ca566a +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,1fe3d44a-40d1-4dd3-be8a-04d07be46349 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e10ed77d-7c43-493a-b84c-0ad8c97e9f46 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9f36f120-79ce-463d-83b3-194a3620d2db +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,800e4e56-a68a-42e8-976a-94afddbcaf0f +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fbfb7597-46a6-4a49-a796-bad1b06129b4 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f6153df1-3f01-4e9c-9df3-8e59f726b143 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ce24892a-69e1-444a-868e-cd3240f83fbf +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d3870e2b-34d8-4d02-a5a7-8a789d6ba777 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,55e4b834-5458-4455-86f1-d8ad786bf4b3 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9c0b1a35-3dd8-4337-82e7-b6b471a8152e +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,db010afc-ca0d-433b-a0ed-e8ea26f7c034 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,47ccf04b-683c-4d30-8768-aebeb93e79aa +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,090ffff7-cf56-42ab-a517-597190302121 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aca316ca-f761-4f80-834d-9975c3cf3d86 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b28bf5a6-cb49-4086-b3e9-5a8e837a790f +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,67caaade-7f92-47bd-961c-d011166a0526 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ddca4696-14d0-4cc4-bbbb-cbf73199574f +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cffac861-9f3a-486f-902f-b115cae571fc +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,64ed3a1e-53cb-4a3c-80f1-919e2d7560af +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1e92aeee-55f8-45ff-ae87-48c378a4664c +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cad98901-3202-4a07-aab2-65ed38e85e54 +CO2,Malaysia,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4c975786-3865-4600-a3c8-29b1e2fec282 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,43f9ae67-d330-4c08-a3b7-1e0476a06c3f +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ef28a716-a017-4c11-bab6-062059fa46e4 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,24042e11-c24b-4118-81b0-bf00d2a4668e +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,16d4fab1-f892-43fc-abce-88e6aa5085f1 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,010d0909-1e2b-44aa-8ea0-3b1a02163d39 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6cbfd1ab-61c2-429e-9291-b2115f30d630 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cd5d5058-6b76-4d0c-b09a-70bef16cbb8c +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d44f00b-4891-4f73-af8a-bbef3ee47fe0 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,5200e46b-3782-441c-a500-3e39f455dadb +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d012bc44-e7d2-46e0-a1fb-36fcadf2dc5d +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,85ab3c6f-acd9-4940-a7d5-230df9a8d930 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,7fecd1eb-0a1c-431d-a219-250569ca5cc7 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7e703542-96fa-4ca4-995d-f513357f5344 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,43e9915d-91f4-41e3-bec8-7e6bc8a9b9e4 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7affbdc3-33b1-4c88-8622-b19358885b8f +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8e1f84f-ddaa-446c-a772-7bc8919e9be8 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a568de18-ab62-4b53-bedc-1e1f06f5562e +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,63401599-d86a-4349-be23-b5f7ab1e4216 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bea8cf0a-c95c-4e04-90b6-ce0c90f490e5 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aafe3493-bf5a-4dd0-b46b-d202ece38196 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,afac448a-c6cb-4d02-ab68-cb44a82a45ff +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0b5a3967-8d47-41eb-b09b-5d743d7b14cb +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cdeb1d7c-5828-46de-a551-c8b9dec9d1e4 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,cac8ecef-8770-435d-a37e-8bfb88f2c619 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,28400a89-b778-4b9e-9c84-e98935f107b5 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,397bd178-9c05-46d0-bd35-78a36691e78e +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,9848ed3f-4676-4dc9-a29b-cd68ec0132c6 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d8fa0def-0eac-4866-9f6f-3ab45ec721f9 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9360dc01-d68b-43d3-827f-03a8b46c6236 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8c798dc3-0e78-46a8-b013-d5b451c047e6 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5844dfb2-58af-4d3b-b116-6b1c85986491 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7eec3abd-a94c-46c4-9236-204dcdd8d830 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d1317ebc-76c9-4de9-baff-07105d8f48ef +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e5b90d03-10a3-4670-a158-7431cd059c93 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9aeb25d9-522f-4b90-b6e4-a5d31537a544 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,59b302f3-0a92-496b-90e8-1b949ab6c8da +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13ca94be-19dc-47fb-a942-c895ecafb312 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b8fa0bde-a25a-40f2-8f4c-65e560063934 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,02e0959c-020f-4f5e-99a3-01100e01e7e9 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5ab2d08-ff49-41b4-a901-e5525c651dee +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,000a32ec-d761-4d3f-b0d2-d5996d48ff42 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,b3081ef9-2f77-450a-869a-4ee2dbc3b51c +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b589661a-2d5f-403f-ab3b-6661f221615a +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7b82fbe9-751e-4c62-bbff-449e170be205 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,6b8cb3ce-8750-4b35-a222-8b9271dba0c8 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0daca1e3-c982-41fc-bcea-b367a0a08d32 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,46076175-8159-4849-9e7e-28c4458ebd31 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,04c91fb5-4ed6-404f-933e-bf7ddc3eed93 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b889ee59-dafd-4f1e-93ff-ea9c265805d7 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,523fc7fc-d93f-48c3-a314-b27ed7fc81dd +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c08dfa7f-6c69-45c1-8153-4f8b8e0b6e4a +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8c46d8a5-3148-42bd-b71f-5ba42ce5178a +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f48abf67-24df-4137-a54b-d9fbe62ee861 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,bd820883-9de7-40ab-bd71-4ed23f19c3f2 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44150397-a69a-4ad2-bb43-d018a4f9502d +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e5cb698e-6d3a-45d4-b043-1c9e1158d905 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,bc8721a7-284b-4818-ae43-f3fa58943789 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f97943ec-c2d7-4720-9c03-1405086e80cc +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,532d26a8-3c29-48ad-947d-67fb600da466 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0b64408c-d3c9-47c3-a1b5-328a9bbd1b8a +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20d9d9cd-388b-48f0-9872-d5814f294f9c +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ef7f35ca-91cf-4baa-a689-e1d23b12f544 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b5166f91-a003-4fc6-861e-f070780159f9 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,edf3138a-e7fd-4593-8ebd-1872a09b9575 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0a53607b-fa38-4f33-b922-faabb89a159c +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,eb17d295-a061-4d91-8f58-ed0eebbcce3a +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9cbff887-4c3e-41f5-bf82-2de31a887d83 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,109fbe8c-a94b-4e49-ada6-8fb5b284a222 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,807502c3-6581-4476-b208-f0ae91f975f7 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,969dbe3f-50fa-458f-83a3-1a974edbb2e3 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c7e7e037-f73c-473b-9b20-7db42e10f1a8 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,612c8387-0a0d-4450-96b8-6abdce08abdf +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9eb18785-5a72-4ff4-9f1d-f0f7d2287d2b +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b8f8c3b3-cf2d-4620-a4ce-37bce34d1d61 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d1ddc44a-ea67-4fd5-9db3-7c7a6d8f803c +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f503ff74-7696-4faa-ac46-dd86637aeaf3 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,486331b0-ee63-4da5-a3f0-e056f8bf6bc9 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,541315ff-223a-4d9c-bda4-80d88991d18a +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6ed098c1-066e-4aa9-9f16-fdbaaa4521c7 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9e0712ce-14cc-47e2-8d83-fd64d6899e3e +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8dd3d684-d0ee-499a-aadb-d48b415925be +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,01fb7421-05ce-438b-98be-b9f20d0d1e30 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7d6753c2-7baa-4f41-98aa-48e9cb5cc591 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c60809b5-493a-4ada-b4e8-2c97a1851932 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3e493258-97d3-4d90-b84e-358b4034b7c9 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1b4cb32f-db72-490e-881b-d5e3acc85f10 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,44992471-e283-428d-a2e9-ae9592ad0d4e +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,269bef11-76b5-4a5f-95fe-9aa2fa52b0c7 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,417da2fd-00f8-4abc-9dd7-3ff256b4fc74 +CO2,Papua New Guinea,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,15.19,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,026163cb-8054-4272-9405-b035b5ac35ad +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ee9e399a-01ec-41f8-9308-c57a47502292 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c7b89007-ceb7-4b1f-abfd-24a59dc15a9e +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3e454da6-43a5-42bc-81b7-0ea1ffb4ddab +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dcc9f5ff-8ded-4272-8e1f-2a73961cc33b +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9b6060d-a2ff-45fb-a65b-089f382ed683 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ef532cc8-edbf-4a96-80c4-0b5414cf4fc0 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ca2812e6-7282-4145-929b-67ad1db1096a +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ec68e2b6-3b5e-46aa-a302-1b03dfc78ad0 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,77ddd861-f3c7-4ef7-9d15-c879e0a972e2 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,82424c16-7097-4266-8a0f-b8c169fe0ecb +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,16abc9a4-bb4d-4c3f-8e4c-c9d76cb39722 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,7d316f08-9602-46c5-a2a9-06f2c4a00563 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3b26f710-c67b-4aeb-a316-f115ecef0058 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c57c604-9a9d-4faa-99aa-d2efb45fecff +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,aa989c18-fdca-47be-91ae-5e23bf4e34dc +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8622bf7c-91af-4109-b8b5-c97dc473ab85 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a47424d1-55b6-44d8-8bff-c2b94ece89be +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8865f245-70d4-4eeb-bf3d-fa4f83360182 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8abb9e89-a5d2-4e69-a8ee-d315de2f08f9 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2f40e9d-ffd7-4d46-9d0e-d7ccf0cc5834 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b1534139-8bef-414c-bc0c-e01e47747907 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,29237526-eb9c-4ce1-ae00-ee07c57fcf54 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5d7a83da-6efd-4907-869b-6eaab3ba6958 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,7f05bb57-3b45-4f43-9977-f94fa5cf5295 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e522a755-0ba2-422f-bf65-67876747c85a +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9385ca6-f8f6-4259-88b0-f63298725a9d +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,1ffc88ce-e635-4d9a-8f2c-07bd7fd5ecd0 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2bd1e9e8-de14-4637-a786-02dac75b5c28 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a07734c5-43a4-4dc2-bebb-44d5dbfa02da +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,096ce050-c40a-40bc-896f-29b5f0a9b59f +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7d635da-0e87-49c9-99c6-3e0dc19ee57a +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,07dd1f6f-5697-42c9-9fe2-2842d0c26197 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6244711b-b8d6-4af3-8737-e4d07c2c6c5c +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e19a2dca-7d37-45bf-a188-1dd69801ebad +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3adbec9b-afa3-4db3-aecd-ed3ada902a0d +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,dbb78945-e9bf-4ee1-a62c-f8b5f6b13ab4 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b122f3de-4b1e-4727-944f-65682d67bc32 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4da269cd-ab8f-4802-8cda-eccc7b879bdd +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,fd2e6a51-8c8a-424b-88ae-ef3065d03f99 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9b8ebe4-fb1c-44c8-b02f-ef40b21b8e5d +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7561b49c-5ba0-41b0-a985-1429e4b8a1d9 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a69053d1-314a-4768-a8fa-1d18e7713b66 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,84c446db-7996-4b48-8d73-f9f3054b795c +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,70d2684b-52ee-4dfd-863d-fc3687e30a14 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4ddbffa5-2d26-4eeb-a919-c067bbb83d2f +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b4ff9dca-5f3f-4bec-8d08-f6acf3cf3160 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,db3a825f-dd0d-403a-afd8-0c80fda1343f +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7604eb24-5953-41ce-9df6-52b019d3cdb3 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,211d99c4-aa1b-4664-9c07-18090ed080f3 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6ad37c67-4b68-437b-8b27-86ccf97f0007 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1f38495c-c7cf-491c-be94-84a827ae8707 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0c678a2f-0470-4133-bd15-cf725db64474 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ffed96f5-fe12-48d7-890e-35f07ad28cd0 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,98bb0cf9-e34b-4ede-83f2-f1f875235121 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e192a30f-3b83-4e00-8720-8faf0c0b85be +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,203aae57-d89f-4859-b63c-c41b27481fe7 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,e2bf255a-ea69-4a13-a1a5-42789d1b1768 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e7ca3cb4-893d-4603-89d7-9b93ca6a8338 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7334d3d5-95d1-4c56-83a1-b13944835c09 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,fcda1c5e-4c9e-44cf-b8da-940fb163c096 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,745d157d-c485-421e-9624-e131b2f17ecd +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c88c64e0-709c-4848-b847-418ca2a9aeac +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f5e8360e-603c-47c1-a826-185e46eca28f +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f2756542-5b1c-47c7-a2c1-d81c760887b8 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2eee764-e043-41a7-aa86-a05f2dd97755 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7edb7609-526e-4b9c-9e44-909254a19275 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97a2a52b-a9b0-4de6-8834-b92ced7c1a29 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4624f058-bf20-48a8-accb-eed430231603 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f06bfcc2-843f-46c3-88e7-613934cde094 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8aeb908c-9a77-41c6-98bc-5fb6c14ca5c9 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4344c369-fd0c-433e-b700-a55dc184c43d +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,2b17533e-de44-456d-ab57-b3a7c2e3bcea +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,95b8b30f-0ac5-4c02-bf07-4042405ec50b +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d5d807f-703d-49a7-8a99-b078a31c648e +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,e47e15bd-6035-48e4-9faa-3cca1a3649b8 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,796c5d71-918f-492d-abbc-b7780f7e9079 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5fbb8467-55ba-488c-9171-4f1d1b4da269 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6291b82b-8e93-4dc1-9032-b6bfe0f5d468 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6dbdeabe-eaf3-4074-8037-96069f0097ac +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,132fc5f2-a658-4148-9662-286f5854d0fc +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2cdc11f2-0e48-4ef3-baa4-1e09430d6e55 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14eb43fb-7b3f-4429-8fbe-e32bf0de952a +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d4733358-e563-41d8-be10-16ac71eeb8b1 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0f3d005d-ecd1-47a8-a6cc-1bcdfccad3bb +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1fc7124b-4212-4e81-927b-0a8c93776ab6 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd941923-e683-436e-a24f-2872c638e179 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,fc8422b6-6ab0-4757-926e-da344f9e2546 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85444714-afd5-4e42-96e8-da0f3357f880 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f2f414b8-beeb-47a1-8c31-144388c44174 +CO2,Russian Federation,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,15.09,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,8adb7a3f-7390-4a49-81f1-60f3fbb63e2b +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b352cb8-4c01-47e9-823c-cc14e0c072d0 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,79c2ec0b-c59d-4559-94a5-bfda66a9c81d +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6e1bf280-892f-447c-942b-82ae00378f1d +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fa25202a-3af9-4880-89fc-667034bc676a +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f95d54f1-d40c-478a-aad1-ea64be382c2f +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,9aaafb4a-ff15-48f1-9354-9fee1d295289 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,612fa49f-a7c0-406b-8f72-25128abf4b41 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6815d679-4fc9-4c7c-8f61-a70bcbb9fb8f +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,d197ef02-8726-42c4-8762-4e0fdc66ed28 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bf5f2136-4b9e-4332-b443-651186031195 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a20c71b9-457f-4c51-9227-1e82a02d9107 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,0626e446-f4ef-4e67-a413-15c8d78954dd +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5aa0b56c-de24-4b13-b5e8-209f15a76dec +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b364f823-a7f7-479c-958b-0f2951bce8cb +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ac8530dd-39ca-4e0c-9f64-c7a478ab845b +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd78b247-f695-4fde-98cc-84622f6e6a93 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a1d61e6f-87b0-4281-a39b-04f44dd5aae6 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,49c89b02-3577-435b-8e8b-29e670d504d3 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,178635a6-9622-404b-af5d-764c38e48cd0 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f86751e-c11b-4ec5-97b3-be240cec54b1 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b33fbc7e-c44e-4612-b5d9-ee4adf07ebc8 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fbf6bf28-47c3-4e96-9e60-36ff31753c1d +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f48b4542-3e0b-49e8-accb-99cab64a6222 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,78cb4cb9-a5b0-4a1a-bdc6-d285b2ec7ff3 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8e82e951-5a7d-4a6d-9a79-064258558d4b +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1cc43d1b-dd50-487c-b4ed-4a5f3ff23af9 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,66edc953-fb3c-48c0-a6f4-4df8a0844837 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,41e95340-f66e-4062-8c72-de9428f4b83d +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,74c89055-06ef-4253-a261-80f7a9ed68bb +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f1adab51-99c9-4637-853b-09e987fff2ef +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,748cae20-7f9c-4eb8-b0ec-e981b575cfdc +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,784535d3-8dae-49ca-8200-1afa5f561cec +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5e19b712-f06b-4366-b324-470267976253 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0216fdfc-e8e7-4dea-91e1-a031fc3bb1a4 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b002c95-167d-40f6-8b65-37aafbd44361 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8318dbbe-fad4-4a07-9fe7-8deddcc12dca +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b787c47d-5944-4513-a879-efe55b8786bf +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,13d7771b-9ef3-4307-8475-5ecc8ded8697 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,73ed638e-84ae-49f3-8823-77dee385aca8 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,43af2dff-1c21-4ddb-a438-e88b31e96e1e +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8fd0a20-a11a-4690-b624-f5bf5ad8d6d9 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,b938e838-7ddc-46b4-bd82-d044329781a0 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ecda0d44-10b1-40d2-83eb-d50002327993 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27aed873-72a1-4ffd-96c3-769fa7a8f08c +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4cd806b0-e4de-4d57-bfb3-6fcbe59a098a +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e9f85dc8-d5e5-4d64-8e85-50b843311638 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2a360d75-ce15-4bdb-8df1-dbd8f572ad5c +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c26f205f-a151-4e77-9a02-2c4840be53c6 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b3c505c-6e14-4059-bebc-61fd530c4b9f +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a5f27d9a-b61c-4c45-be95-7d10c79c3e48 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2d631565-ebfe-4c33-99dc-64044d5d046b +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eb11ec09-35fb-44de-851f-82cc8d12ae94 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,108867bd-361d-4215-9437-a19d1762bca5 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,5c323372-4f61-42f2-8d71-f0aec22500f7 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,db9fe56c-8e19-4939-9404-71af208caf69 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3c22ed3a-25b1-4f47-9b26-7eb349d43671 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,0a10ba1d-fabe-40de-a97d-ca6262ac4f33 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1ce929e7-cc0d-4299-8e52-d201a9731120 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cf3e85ff-108f-44d5-9fb8-13c56d95637e +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,db28ab24-0448-49cf-bc05-787c9de10c03 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9893c25d-3bec-4b74-ba8b-15aec0f2d8b6 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9acb6b8a-50e6-4961-b6cc-a11a04457373 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d6fffaf1-6024-4fcb-8ac7-21d31f59463a +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd6a13de-3cbf-4d60-8b41-a17b260215e0 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1ec3e062-47f3-4c51-a848-dd1465613808 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6d7db620-76e3-43b6-8065-bbe7c845c25c +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2431a23e-b41a-4af0-8ea7-c734a454b881 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f92a3fd6-70d0-4dba-bcfa-62e9929f8d01 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2e33e81e-5849-4f06-ba87-64ded7738776 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c82182e8-154a-43f9-bcda-db682a58f689 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ec3a18c6-79aa-49e9-9c3b-5ecd533ee640 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,9e62151a-143e-4534-a1a1-e4aaf98a6fa4 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,601bc20c-9d65-4376-82e0-5838b2d6a2e8 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0eab8e28-9b7e-405a-af27-249362f2458f +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,c9ae97d8-876b-4fe1-a7ea-a23661a975f9 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44c15474-b1db-4ebb-a49b-7304362750fa +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c0981383-98b7-4e1c-8c9c-c5d23caed8c1 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4b4712a9-5bb6-4f7e-8d71-e1f6da1483dc +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,54edc27f-7d64-4369-b9ee-3caeef653256 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e607d3c7-3a99-4147-8246-3b3d028fc159 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fee26dea-0a45-438c-b361-4f819214311c +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,73b990e4-9204-4c0a-b742-8b139f1788b1 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ff51ebec-9d52-4fd1-8a26-f03b6e7c6011 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,59b2b21c-5075-4c92-933b-1e2e4cf520f1 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ac277b3-4f47-4738-8722-cafff3f6e462 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cdb435d9-4825-4337-8277-9ba58a3feb67 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,60b7f020-f510-40c1-975c-54c0041a036f +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,daf1a797-6e59-4beb-9923-759443b5f654 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b90444cd-d261-4418-a4fc-dec2454118e5 +CO2,United States of America,kg/TJ,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,14.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,03dff311-4059-4200-908d-47167961f69a +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a85f6983-f030-4b3b-b9f7-d80d230c1525 +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca0ab8aa-9423-4160-a2bd-caf4fc485dee +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f45ab37e-004f-45fa-a81c-ac37b534b0e2 +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,400e73b4-73cd-44a8-ad9d-11353c6c9bbd +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9241ec0a-f4cd-41f8-8c4b-89fc8fe68d55 +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,5d14afa6-393b-40fe-bff9-4f3075f87996 +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3cd77900-329d-4a64-a677-9b33f75cfd6c +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,05531573-12ba-4ab4-b4e0-595827bc4fcd +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,92be276f-8bef-4581-b876-643dd423a0ab +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,645d132c-9531-45a1-a8c4-7f361d854008 +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b9ced913-b362-4516-9233-fd7d8f227eaa +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,6572bcdd-dc99-4574-a257-327b7ed8528e +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e81c2599-54a6-48d4-a775-ae796c6efcff +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8fe0bf6e-bbc3-4853-805a-a97803c53661 +CO2,Russian Federation,kg/TJ,,I.1.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,5fc58d00-ca24-4c40-a403-929e2bbb326b +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9610aed9-4837-4792-84d1-6e2f6edc31c9 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ff998507-84c6-457c-b8e0-1856d7ca2d2a +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8364108e-6924-440e-9da5-e8b863ffe5d6 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0cbf83ed-1b13-4b7c-8106-277e39756141 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,63d1712a-af2c-4fab-b391-ce5562a8e3ef +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,bd854a22-2f09-4d15-94bd-4b1dccdf3d95 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,985bf279-3ef2-4c44-bd4c-cb3d075e8347 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5796f65e-8f3b-4ff4-8fac-0f750c18f00e +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,966a2e85-bc0b-4589-abd3-7bc801a066ba +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,06acf29c-392f-4897-9eea-20d17b4ced8b +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7ad60e6-963c-415f-b9b4-bb4221051a61 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a4325903-91da-4a51-a064-3573ce7c4024 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1b1af1df-aa47-47f3-a8ad-6e7383f30362 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f42c048-9a5e-4ea8-afb4-c495e1a7fbd9 +CO2,Russian Federation,kg/TJ,,I.2.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4d0d3434-71d2-46d8-aca7-eba47110dbed +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e6d83ebc-6559-40a7-8971-4d2ac3aafdb2 +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d094298-b5fd-4888-96cc-37e8bd51d198 +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,afb98a2b-de12-4c08-a458-2a554eb1291a +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c65c56e5-d382-49b8-a2bd-2c7f7a088225 +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e5969961-4919-451f-9b42-f34faf26d2b6 +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,bd24462e-5f49-48bd-bc01-a8a948c3dc5a +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c403010c-ab45-4684-adea-f4c7235b7f9d +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19469644-0504-4928-b322-d5f53faf94a6 +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,f72b2743-1b91-4cdc-8363-168406f834de +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,01cb1ed9-6056-4b30-89d3-bedb4e898a74 +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,da5338a0-260b-462f-9aa0-293649b36dc9 +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,0943c751-483c-4ea3-ba00-83b139b896e3 +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a66d53b4-17d0-4011-a0cc-34f2ccbb5cdc +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc292540-049e-462a-a30f-63422e30660a +CO2,Russian Federation,kg/TJ,,I.3.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,299f2da5-eaf6-4ea9-918f-1a5ff405d362 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7270b248-77ea-4b6c-9eb3-dcf18611a694 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c8bdc12-35a9-42f0-9b38-62519756823e +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a7127c77-3a08-49a4-b34a-e9b13224c7e9 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20f865d4-0dca-4941-8718-32d418a4aaa2 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7161654e-3f48-4737-b7d3-eaec26a8e2be +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,5398ec2a-dde8-4892-b06f-34a0c1f3aa45 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c9c50544-38bb-4371-98dc-a8b05a2403fc +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8cd0377e-93e9-4bca-8f3a-4c817752ae45 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4d14b4ca-4cbe-4aa5-bdca-0c856b81266e +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0de4a4b1-8f33-4e4f-ad25-9b190b5f6787 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d68047a9-3ca8-4c33-a79d-cdc10e2a8f4c +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,d843cf71-9d92-48a0-9ec0-761f0478af32 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,826f2082-460d-447e-814c-1b9761364216 +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5c3dedb-c22d-4dc8-9b97-cb84e7204a4e +CO2,Russian Federation,kg/TJ,,I.4.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,4482cf3a-bc27-4161-828f-534d15a842ac +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e4a7e23e-e919-4fac-8f47-8dc8db66a702 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c997459d-cbca-40cb-9977-a6710453fe83 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,af5a2407-ada6-4dc8-86ba-c06a4f1d2d9e +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,86df2777-3f7c-4b88-a89d-3eb614148531 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e9e52ae-9ead-4387-a3ae-5375053e4201 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8858ad46-8761-4e1c-b936-3321b5681bb4 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d823ce71-c3d0-48b5-bc21-75d1381be4c5 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2f23345-06cb-432f-83f1-86adbcb8d22f +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,a033cb8a-531b-410d-bd5c-c697aa4c4fe6 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ecf1443c-3ffb-42b8-a228-76a1e5c2ad13 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8957e0f1-95ba-4062-81e5-cfde4f364ecb +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,8e68c493-b91a-4247-928b-ecf1a8486598 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0b3c86e7-7418-4d31-a781-94722c915ed8 +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,31f56545-6833-4e9a-b7ce-2ab04783346e +CO2,Russian Federation,kg/TJ,,I.5.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,0c7e0400-9344-40f5-ac89-c0ea4feb9600 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2502baca-9fb2-481e-8579-f14c203a7e38 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,22c90e06-3d1e-43cd-be70-fcfbd75072a0 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,bba1cc33-da47-40f5-8b74-c5ed180fc757 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2acdaee9-3f8d-4e27-889e-eb120e939878 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f44baab8-1468-405c-aafd-94bcadbb8a15 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b0f46a88-3b17-4524-89b4-1010824c24d1 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6fa191c1-10b9-489c-a296-becd4fb051ef +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c4f2223d-211d-478e-824a-21fd7120e6a7 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.95, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,2f16a426-fff0-474b-938a-4c46963d798e +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,17b18d19-699f-41d4-9596-7a26ae758dc8 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d312aa1-7fe1-4d96-8bb6-b81a30ff66a3 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,768f8d92-451e-4228-a66d-e8f7e7e180a2 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eb4d5a8e-ca39-4567-b77b-c21cd8103001 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,45488709-de41-4733-b908-a800e33df7e8 +CO2,Russian Federation,kg/TJ,,I.6.1,RU,14.69,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:13.97, NCV_units:tC/TJ",,8ac51911-476e-3427-bb93-6057b733eee0,ef453f59-b8b3-4325-a2af-a71c32a3e958 +CO2,South Africa,kg/TJ,,I.3.1,ZA,89.5,fuel-combustion-consumption,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ca46b02c-721c-4784-8a55-507dc0bc9991 +CO2,South Africa,kg/TJ,,I.3.1,ZA,89.5,sampling-scaled-data,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,87d4da14-b6be-483e-9193-dca9d2b2eec8 +CO2,South Africa,kg/TJ,,I.3.1,ZA,89.5,modeled-data,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,929edfa5-545a-4c05-9e11-8f650c728fd7 +CO2,South Africa,kg/TJ,,I.3.1,ZA,105.8,fuel-combustion-consumption,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,34710731-793c-4617-afe4-1d1089c61e41 +CO2,South Africa,kg/TJ,,I.3.1,ZA,105.8,sampling-scaled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d8247ba8-a0c6-421e-b0fb-95a34ef6c23e +CO2,South Africa,kg/TJ,,I.3.1,ZA,105.8,modeled-data,"fuel_type:Other Primary Solid Biomass, density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,f3bc8170-2b99-4772-9d74-cc078c8275a6 +CO2,South Africa,kg/TJ,,I.3.1,ZA,86.3,fuel-combustion-consumption,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed19f876-e86a-48b9-855a-a255e3e99a08 +CO2,South Africa,kg/TJ,,I.3.1,ZA,86.3,sampling-scaled-data,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e09470f3-789c-403b-98f9-59ca8571f236 +CO2,South Africa,kg/TJ,,I.3.1,ZA,86.3,modeled-data,"fuel_type:Municipal Wastes (non-biomass fraction), density_value:nan, density_units:nan, NCV_value:nan, NCV_units:nan",,8ac51911-476e-3427-bb93-6057b733eee0,a674a9ba-c4cd-4431-9ab6-c0bf307f2142 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,715.56,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1562e65d-14c0-4de3-b6f0-7a397904e0e4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,715.56,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6e8c9174-feb6-458d-b190-b99dfbe99b02 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,715.56,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,273f5370-22ba-4b99-80d8-b2fbccdbfd00 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,745.0400000000001,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b1b12071-8634-4e97-8aa7-0857e54ca17a +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,745.0400000000001,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f741d99d-d189-4325-898b-f62c8f34b4fa +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,745.0400000000001,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3adedf47-847c-431f-a3c9-27b82521f609 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,715.56,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,02adb248-9537-4664-be13-315715153fd5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,715.56,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f80b03f9-fd42-4389-a402-fb0e4c2960c0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,715.56,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e3f274c6-1579-4329-8f6c-20120382c380 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,745.0400000000001,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e5626ab3-11fb-41bb-8331-c725ece513c3 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,745.0400000000001,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b062e4a9-071c-4c08-b813-e897cf9ab4fe +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,745.0400000000001,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,4c6d1d78-4f01-4f0c-9dc6-d182c24d4ffe +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,715.56,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5cac06a4-0775-484e-9e59-5612e8f492e8 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,715.56,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8897f5bd-c5b0-49d0-b86a-71e564f1d501 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,715.56,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0938f7f2-30c5-4c32-9362-40cda17b5495 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,745.0400000000001,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8f1acb1e-eb10-461d-9620-609bd2dbc192 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,745.0400000000001,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b9947a74-1fd3-4fac-92c4-54dae1e87901 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,745.0400000000001,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a6798aad-3a33-4781-9551-c15ac92d5c5c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,715.56,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,07ca0ad2-5a3e-47be-b6f1-f9cfd900215c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,715.56,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c4ab0f4-68ae-49dc-b48a-7c52dc6fac36 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,715.56,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a232ab9d-048e-414d-83e1-5b05d84e5aae +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,745.0400000000001,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8242a595-cfc8-4c37-8290-2125fe61c597 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,745.0400000000001,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c85bb4a-487b-4e8e-b3ba-ae5e07749fb7 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,745.0400000000001,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,5a2d3cf6-afc1-49e5-a698-e51aabaddad9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,715.56,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97344001-9270-4ecb-a515-c8005b0a8cd8 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,715.56,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e7552dc-4cc9-4fd3-b9f6-dc525fe25e35 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,715.56,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e7ee2c14-73f4-480c-8f20-8f2d01cce204 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,745.0400000000001,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b2d3054a-4f8b-47d7-b2fb-c7b60f797c3a +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,745.0400000000001,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ac5b0cd-22a4-4091-965f-92379b898751 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,745.0400000000001,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0c8595a4-8ee4-4297-96d7-7f9cbcb7c306 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,715.56,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9a80a05-62a5-468a-8a19-071fd1fecdb1 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,715.56,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9e076e4-c850-4c45-a369-5bda530cf4ca +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,715.56,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d70d6e3f-b720-44e1-befe-051c1773a322 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,745.0400000000001,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,22c4f296-a4e3-46e2-9fe5-fb39aab715b1 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,745.0400000000001,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a662e18-9576-436e-b21f-b94af3f2b4b0 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,745.0400000000001,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:27.8, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2f471e8b-3ceb-4de1-9f7c-b03165f06eb3 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,657.9,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0cfddac3-e05a-4975-8e7f-9c876b995935 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,657.9,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2cf78355-cf79-40d9-9a5d-e0d09d85a80a +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,657.9,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f7f3d8d8-f53d-423b-894b-0027f62ef117 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,714.255,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59087bbd-75c1-4f95-8a7a-fdfb2c537c75 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,714.255,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b1005701-747d-485f-89ac-1ae9628837a9 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,714.255,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0fa877c6-740d-4cf9-900c-22207e73ae97 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,662.235,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,feff931f-a357-46cb-9e7c-01436e9e043c +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,662.235,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,544057ef-5154-452a-a53c-9b790eedd776 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,662.235,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,cac9f1b0-f537-4409-aebc-4580519d24de +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,614.5500000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,36218b9b-169d-4a11-be9d-ea56f4b6238c +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,614.5500000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b8db99f-5c2f-40ba-8cb8-09742f0f1c1e +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,614.5500000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1107f20c-227f-44f7-91b4-64aad01b5e5d +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,657.9,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,22705bf6-0b67-43a8-9ec3-557f23abccea +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,657.9,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88314621-05d7-49c1-bf9c-c77469db722b +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,657.9,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,21ea5dc5-baeb-4b80-a73b-6d5a2e363e1c +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,714.255,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,226345ef-5fd8-459a-a088-0707999238d6 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,714.255,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fd8885d9-155c-43e5-b081-8b1028660a18 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,714.255,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ce2f6e65-da4c-4e4a-9e85-68fef99f9876 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,662.235,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,46fe0b4f-3511-4e21-8073-2fc138f19c98 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,662.235,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a3121431-753d-41df-818c-9e3fee0d9f80 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,662.235,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,92f9ad68-1052-4440-8a13-d644bd6ad8db +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,614.5500000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,12e0ad3e-30e8-4bf5-b032-b7cd392873be +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,614.5500000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5d950b0d-f1bc-4ee5-a917-f2514e35b6d0 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,614.5500000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,bc2bd4f0-05b8-44e5-b0aa-f0e075fac8ab +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,657.9,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,39cb325a-ba43-4e96-9c3b-2db00ab87cb0 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,657.9,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8efdd68a-d2b0-4565-a685-8043b5e2f088 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,657.9,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,027083d8-fa81-4ea8-8357-d98da754b778 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,714.255,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4aa74af2-d34b-406b-9111-dccc65f9f77a +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,714.255,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,595b5727-2e73-45b4-9c56-0508a2f515ca +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,714.255,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a2b00eeb-6f8a-4371-80cd-bc3015c53ba8 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,662.235,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8f4607b1-7e8d-40dc-8462-0debd21a902c +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,662.235,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,db37233c-75aa-4322-88c9-7fd3ec0ba860 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,662.235,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6f42b9f7-ecc3-429a-a121-112d9981b92d +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,614.5500000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c2f687e-5fdd-4c37-b206-4be548f2d16a +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,614.5500000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7920164-b0a7-4533-b81e-d863c4a473e1 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,614.5500000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b6f2d027-ecd4-4fb1-ac72-91721fb4e3b7 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,657.9,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7e2cb3d5-ee25-43bf-b9c6-75a700916333 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,657.9,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ede716f3-ebcd-4e9b-8d29-e874256aaecf +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,657.9,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,eaaddf39-f696-437d-84f2-86d2c70aa32d +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,714.255,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dc10a0cb-60da-46be-a529-aaa7a438466b +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,714.255,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,004c1636-9552-4a94-aa20-334f035eb4bf +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,714.255,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,bc5ab051-b727-49f0-9f57-d1108f7e3ef2 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,662.235,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3c48a8fc-418e-4691-ad35-89742ad8a5c9 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,662.235,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,938e0671-5f9a-4690-bd9f-14234313b9bb +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,662.235,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3a076c7e-1f58-48ad-8989-00bb4c7bd775 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,614.5500000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0e68cb47-1390-403a-a4e5-6049bdb88d5e +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,614.5500000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,64195b25-4f3d-4401-b44c-e2d311ca1843 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,614.5500000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a175a3f6-50a9-4d4b-927d-73f46658f346 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,657.9,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f049c530-ba65-4de2-b87a-a41afeb9428a +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,657.9,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6727de76-ab75-4224-90f3-a892462c58de +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,657.9,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b20232ab-b3c9-4145-8c09-f333e2158baa +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,714.255,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e530c26a-0713-43e7-bb27-a85289fee5dd +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,714.255,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2f541df0-7497-409d-9544-c972985340f9 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,714.255,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fa6f935d-b2d8-46e8-a4ba-54c1fc8a7ce0 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,662.235,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,538e9dd0-9c29-475d-9533-5d730f10a425 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,662.235,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b6b8aa0-050c-40c0-bc41-d3867cfc60b4 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,662.235,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,dff4bf4b-8396-48cc-8f9b-a203b67c11e5 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,614.5500000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6fe92877-6575-49a7-9970-d11c24158483 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,614.5500000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,79c54514-71e1-495a-84e1-264b9b6bc943 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,614.5500000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3448c318-2253-45fd-9a7c-35be89e0636a +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,657.9,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5175188d-5b07-4cab-be7b-d5a9a05818e4 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,657.9,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,48333b48-cda6-4232-a36c-de44768b476f +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,657.9,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6b25ce2b-2ba9-4c06-9338-a262e83a06f5 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,714.255,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b496aeab-5c15-4a3b-be01-076542303870 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,714.255,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fdf5c035-be81-4db3-8f1d-f5370a9e9858 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,714.255,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,9192bd4d-1761-40f2-bf6e-7cdcff6b0ea2 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,662.235,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7cfbd69f-7291-4d94-bba5-5f94e36b4dc5 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,662.235,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c9acb0c9-4b7c-463b-aabd-1e53aa591f43 +CO2,world,kg/t,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,662.235,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0c2c44c7-a072-4848-8122-be334af1500a +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,614.5500000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd27a2d7-3cf9-4768-accb-76d3fb033106 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,614.5500000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,66ee183f-5dd6-4a53-9178-89d8df5eb581 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,614.5500000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e10a8443-4c25-4bd0-92a2-0b2f36ead9b3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,655.3199999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85d4e9b5-399c-45ca-b762-ecdb22a5410f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,655.3199999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,56240c5f-9a3f-43d8-ab8e-27c92bd7c3a2 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,655.3199999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6255b9d0-90ec-4bd2-85e9-15e63a1ad0ab +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,711.454,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f2cbef52-e014-4111-b3fd-74d2b5cde686 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,711.454,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a37d8148-a9c5-4a89-bee2-cbad433b4501 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,711.454,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d0755004-e5e5-4116-bb18-28704e95533b +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,659.6379999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed531303-474b-4c18-a1cb-c003c4301b66 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,659.6379999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ebd86809-8da6-4214-aac8-ae5912764279 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,659.6379999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f5508a2e-700b-493c-a49e-2ed1cb93f310 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,612.14,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0a1c657c-3b7f-4abc-8900-3d7a90b10097 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,612.14,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,83c41530-3605-4a01-b0f1-80a9ca00a73d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,612.14,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,eede98a9-bc7b-4ff2-b7f2-76e4be140a76 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,655.3199999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9abb6bfe-8278-4ba5-8bb0-29be3c73619c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,655.3199999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,08081e2c-dc03-4bfc-bf1c-42f94066724b +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,655.3199999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f752a996-5bb2-4303-b3b6-97d503423e2c +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,711.454,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0b7d8f7d-71f1-4860-b0c8-926420d348a2 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,711.454,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6fa2cb5f-e0e0-4c75-83d5-27fa5f059d48 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,711.454,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,26e3b81f-a905-4d6c-aa96-712ab312f408 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,659.6379999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6f7be35c-b545-41a4-affb-971d7d584fe7 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,659.6379999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4765678f-84b8-4dfc-8fc3-516c86b769da +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,659.6379999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,876b407a-dee6-49e6-b7e3-7f3cd6d94731 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,612.14,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5cdb0e8-3f92-49ae-b4f3-2d985750d44b +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,612.14,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b232e5a-dc0b-4214-b59e-438d6d1eb318 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,612.14,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,68f843c0-1c47-44cc-9a82-26235ebc1da5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,655.3199999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3e7c1004-8fd6-4836-94fd-78ce7976ac70 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,655.3199999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bacc8634-d315-4cba-8a1f-c38273713d68 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,655.3199999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d50622d0-26de-435d-ab02-e1822b461ec5 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,711.454,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,08add260-c7d5-45ff-97ee-57a2f5d59e96 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,711.454,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac8228a3-8a73-435b-9b50-79c8ca04134d +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,711.454,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b0bf5a97-cdd7-4ad9-9cd6-d8b7fdd1ec9a +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,659.6379999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1396a92a-bf8a-4a6b-88b2-3c2b13060685 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,659.6379999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,794c7ac3-b4f0-46df-9c2e-1a2844b8b799 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,659.6379999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7eb684e3-bea3-4e7b-b22e-ec71da135cbd +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,612.14,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd63230a-5c09-4253-82d3-cf9fa673e4f9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,612.14,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,25833262-610b-4702-bd5b-1a513d702600 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,612.14,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5f782777-3266-43a3-9b38-6647a399bc28 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,655.3199999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59a6fed7-d493-4b6c-8b17-0b5221c7fcc2 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,655.3199999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ffc02783-9684-4c69-a140-1030eda0bcea +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,655.3199999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d419abb8-cdfd-4cfd-982b-6290d7b53f50 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,711.454,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3681d350-48b7-4249-934d-41c52e39fac5 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,711.454,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f88754fe-b893-43ee-a1d7-477e4c8cc7da +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,711.454,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7e788000-50d6-44cb-acd2-9e1d2106b0dd +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,659.6379999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,31571e84-1d55-4dc7-aa72-af03783d3f32 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,659.6379999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b7dfb36f-097a-42e2-96d6-1109fe1ba17b +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,659.6379999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,13f8d9f5-084e-425f-8488-378191b01e60 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,612.14,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e7d40744-55c5-4439-8b75-4c6fec26d87f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,612.14,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb05349d-f21e-4428-8078-2e020aa8fb86 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,612.14,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8836a9aa-6f6e-46ea-9828-87ae859fe042 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,655.3199999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,547e211c-968e-46ef-8303-c557a9dfbd59 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,655.3199999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1af9dd5d-686b-40b0-b3c7-cebba0d9c87a +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,655.3199999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7c60db1a-f96d-42a4-8c4e-272b4894fc4d +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,711.454,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f421fbcf-2634-4362-a25a-87e28d01c2c2 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,711.454,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,af43e686-772d-4c0f-b376-1f135d81c03b +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,711.454,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e9b78ce3-28cf-4907-9fcb-73efae8c62fd +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,659.6379999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,66b587d7-2f31-47e3-b275-c85650bb272f +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,659.6379999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,499bffdf-9092-42d4-bde9-f0707288e1a3 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,659.6379999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,eb360edf-502d-4297-9ce4-f11be3a38b82 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,612.14,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,adbee5b4-f402-41bc-bd6f-c21dd1e25ecf +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,612.14,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,02a0cd3a-db83-472e-887d-b5263953c4f7 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,612.14,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,03b88a31-22ae-4356-bb67-8656e2419efc +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,655.3199999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ffb6826-68f4-40da-9ff8-96e322f0b153 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,655.3199999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0ed2ed8f-7d2d-4c59-8912-b3e25e2091a2 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,655.3199999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7d7353ed-437b-4650-bcc7-679f96242c75 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,711.454,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49ce08ea-ee58-43ad-8c4a-91bd6e0070f1 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,711.454,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b3427fef-dc89-4edc-82f1-69ed23ea8ce4 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,711.454,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d93c5c7a-5810-4c27-81a1-d0901dd0364c +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,659.6379999999999,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d13ef66-7c7b-4575-8363-2d2afe1cfe44 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,659.6379999999999,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d8c0d8e-0cad-47d0-b9bf-b5d43028cc27 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,659.6379999999999,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f3b75be3-27ec-4a64-b6f5-f4e6803d9ba9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,612.14,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1ab6334a-af23-455a-829f-fd3ebed04466 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,612.14,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8be8e89f-e538-4b95-871f-aa3a4ec2c69f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,612.14,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b127f01b-dd5b-4b6a-9e47-8634ccf5fb5b +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8847dd3e-1e59-4c9b-8711-087a65f4c380 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,74998911-2c0d-421d-9bb6-ec9013c76329 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,73585fdc-816a-4783-b17c-4803269ae052 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7137c823-6c7a-4faa-b692-db42103c2d68 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9360888a-6ab5-4f8c-a673-081bcd7cca13 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f4fb248f-d620-4e2a-8352-5ad50395123c +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6027355b-04df-4612-908a-6db988d3e41c +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,50d8f0c3-d76b-4f4f-8192-735398ad6c08 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,bb359327-2a51-4394-bfd5-e8fcc9172f57 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d22b4018-dde2-4979-97f6-301a5d9a49be +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94508e6e-76c8-487c-8652-fe32eb914047 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,686d4cd1-84f6-4dc8-87f0-7bf282e5f98c +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2bb49454-0d43-47ac-8908-96396f77e208 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c349a072-2153-47e3-9796-5461331f8938 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,21a7c9dd-5b68-4eb9-bdc1-a12fc6e66241 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5baec719-e7fa-4a47-bbfc-0e0d76b3c810 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dadae4ca-12c6-4dc1-8579-5554048a30c0 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,dc4d6432-a273-40c4-8a66-227e63ef0e99 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,58881111-b419-4a4d-9245-334f6bd8cbb3 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d77b350c-6c41-49e4-a7e4-a3c680a869b6 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b1a90a80-26fb-4d5f-8cd9-74e7d5255b17 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,848a780e-ba5d-44a9-a9aa-8e795145ab7e +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2f76808d-07b6-4469-871f-d797d1cdf8f7 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ad5c381c-f4ac-4cba-9d70-f6ea5d88725b +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8271a042-347e-4793-b6b8-a9325f423728 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cfb1d5f8-5909-4282-9068-b5c3aad0f87f +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,270a0b26-65ef-44b3-8ed8-201c417df775 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3bb8b053-f336-402e-8537-96a0bd25cc04 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a540e98-6fca-41be-8e88-b4c74cbab00a +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,30470f35-1f04-4dbd-b05e-0c773485c9ed +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8841fcb4-368a-4722-83db-bc05a1ebb466 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5d2538a5-03b4-4cc2-8aa6-b04ebd068e3a +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d46ce1cf-1282-4b25-875d-4c85653697c0 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,df61a533-8eca-47bb-970c-01e178071b7f +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,32630813-43ae-4875-be52-b9b2af64ddd0 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ec953561-c2b3-45d3-8cd9-bdcc58d16ce9 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6612172-b246-4c42-8b53-14f19cb83885 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7c2d1043-0510-4bc8-bd6d-463b7c6688a6 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,297ccf5c-2e39-48eb-849f-c2173fdec346 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6f32d0ff-1a20-401f-b3a7-1b9374ff05b0 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,686f225d-cbb2-43ad-9701-c4240f57d091 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,dfa8f2c1-80a8-4392-94a9-0676186fc3b1 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5be72fd-8302-4162-a813-8cc718b0c9d3 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80ba38a4-9497-4e0f-9f4b-bc715d2b6ec3 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d6e36d35-eee8-49b6-9c9a-85c7e4e45c44 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ac560b6-76fe-47d4-89a7-8027396af5f5 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cb825db1-0134-417f-a43f-cf5982a4f33d +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6e9a71d5-ded4-4109-bc28-8ac6ba1d329e +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,234d4f0e-4920-4e37-b5a2-41811ad9293b +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a59c48e8-56d4-4586-9be8-e079aa8d16a4 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dd03b871-3fb9-46db-b8cd-577c4e09d10d +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1db0503c-3c52-4111-bc33-f76a6cf69e79 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4e861a98-5abb-4a11-9d01-1112c75b1a07 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e354ac31-aafe-469b-845c-619d5450e324 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8bb45ebd-65c3-46e0-b89f-b205c4aefca7 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a7283b59-214c-42b6-a610-ee64e9cc8065 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,710c9ba6-68d9-4adb-9016-de0d29af16e2 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b42bbdc3-936c-4ada-ba5b-b73dfd7dfe59 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7e27625c-ec42-43bf-9f65-d9e905053995 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2ae40105-40a8-4e35-9214-97ac38028129 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d2659c3f-6261-48e7-912c-6d823d048da5 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e4794ed9-8426-4344-a239-f593bc463c08 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fde4f200-6d20-452c-a483-299981e57369 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b9a21b34-1153-485c-b739-7673b5d58b63 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e325a1f3-d66b-433d-8e8e-0beaf3c5e45e +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6c1a4e6e-5e46-4851-bd42-feffdbe44b8e +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,689d1f81-9912-4a8f-b524-f3ea25a8b552 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cc95e8ad-8f03-4007-9f36-12021daace4e +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,49264cdf-fd57-450d-94b7-3d8cd2bcdf13 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c23c06fc-8bfe-4189-a795-01e43f177d57 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1ed5e50d-ed3f-4a54-8d44-a3be0bb28411 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,22e3f9fd-bdf9-494f-806c-7bc587efee74 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,09eb5af7-47b5-473e-a314-3380b9b9030e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f983fff6-21df-4ae0-be66-efcdf005e3cd +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5af7ee86-5a08-421b-8a31-8deb467c9667 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e2bff4c5-8c85-411c-9df3-5e61a4f9569b +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,618b67c9-4eb3-4cda-8fc2-a18439f18e72 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,4b3d72af-19da-4448-bea4-0c1458a701bb +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dc53e173-0b6d-4767-ad19-05e096eab91e +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c95f2c7-e46f-4ed3-ab31-443af8ebba5d +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1b30d057-3bf4-4a19-86af-0859171f978c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a20d7baa-6b3d-495e-a375-b3fa576757f5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dfa09a86-1b7f-4109-8709-1211a3186315 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8e1c0d99-5e35-4b29-a044-58bca6fd815f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4d21f44e-9bcf-4967-ae64-e6a5fa6e9937 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f2b9d50-4d39-4228-af8f-3b8dea122ebd +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,411234e2-7054-4ed3-ae48-4e5ab19fa349 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f56a6706-cfa4-4cbd-9410-5347c9b9c682 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fe8ee1a8-60dc-46d0-815a-18053972e3f1 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a2c2f532-365a-4f0e-9384-ebdab233aa4c +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9fed204-0480-4769-bd02-d8653ed016a7 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6b0228ae-e46d-4c66-9b5f-56fe58e11fe2 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0d848257-dfc6-4bc1-896b-a83a79fc13b7 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aa6bbabb-a513-4693-b801-bc22130a94b3 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,11b086e4-a070-48bd-8d85-2f64c812806e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c9f368fa-5869-425f-af85-b9f2bbf8b442 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1627262d-6166-448b-8be5-d87a6fae88f1 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a5ee1be6-90b7-4eb5-ad3c-f1700d4f7ce1 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1a3c4cbb-c076-4ade-9898-b6a9104be39b +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59347f89-7ecd-4f39-8a58-31736f18c7ae +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,33e634e2-35b6-407c-ade6-2335c0f061d8 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ad6521a7-97cc-4924-bad4-b32618b53d82 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,19304c23-1e2d-4c04-a453-9845b3987019 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,379f7c34-93f2-404f-8026-7bd294737704 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fcb3e0e7-1187-46c2-8cdf-e22d9f782270 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ddfd6a97-df78-4147-8319-df1c0b6aff61 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c820563-7ffb-4cb8-8a24-fdb162c5f9c7 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,08fcf72d-af87-40e6-a588-41b0e1644197 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d2dee2bc-25e0-4525-8943-91740a7b3840 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aae906c9-59ab-4ad0-b44e-d053d9384497 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,679b8812-f873-4570-94e4-59a1bcb0b7ce +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,46681f23-6915-4bb9-a6de-29eb53e4bdb7 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aa06a67f-0581-42f2-b223-6207a9afaf05 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7d7fce7b-9f60-4228-9536-253fb8203608 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7d1c7908-32bc-4e08-b309-d047dfd1b89c +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0d8d1516-dfa5-4c74-9558-a0c811a8b40b +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fb01f69f-00cb-42e0-b70d-2ff537503749 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,10f1568b-d31a-4ec9-84d6-2aeba238235b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b7ef5045-e3e5-4776-b186-6cc50c45254f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,447d94d9-a7ef-41df-8dd5-460cc42f39b6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cbd21c53-9cb6-4bae-9717-93a0d8ca71cd +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5f8637c1-f90c-42c9-bc03-8d43a12c0c32 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3943ef44-1241-4327-a055-f5ddec249122 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b7f892e6-78d3-48ea-b0c8-e1cbe340d431 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ba0b41a-0dbe-4d01-a390-fd46be883061 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,13835ee5-2ada-4b26-81d1-d7d3fb6e14ae +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,92a7a523-a9ac-4479-a9a5-dd9febf6e0ba +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bfa32928-783b-42b3-b60f-e1c62a928515 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fe5f3ecc-f1e2-4631-9dc8-752cd4485d5d +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,75fd226c-3027-479c-a7e0-cac6c85747c0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f85f882-3191-4895-bda4-1d20005dea4d +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b86006e3-96b8-44cf-ab9e-a9efeea37054 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,665.64,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5433a16d-d550-43ff-af63-e1433ea7e1bf +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,665.64,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1148a9bd-d7ad-4f71-9ef3-f856e44ebf8b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,665.64,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,02bdd903-0bea-4552-b63b-e40f1898eece +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722.658,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5d0fb37-ae12-4f40-a19b-34246d931778 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722.658,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,839116c9-50c3-4ef9-8a4f-31f03273120d +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722.658,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:28.01, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6d3d75ea-0ba5-4bfc-b491-881360c7868d +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,670.026,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a3767dce-64ae-4cf6-aae6-96ff1c88abe9 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,670.026,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2c40564-2b64-4862-b315-4922178f9135 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,670.026,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.97, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8f60bcef-724b-4c05-9aa1-610bffd9f183 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,621.7800000000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2169f1f2-e8b7-4bcf-a969-2e905e287d95 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,621.7800000000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a901ba11-1935-469e-bd86-72291b8da151 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,621.7800000000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,bc8adef9-e61e-48c7-b40b-42331038bc41 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,328.44000000000005,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5102b278-70ae-42d2-b79d-06004ed16039 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,328.44000000000005,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8416de3b-cf96-437a-a536-1aa3879dddae +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,328.44000000000005,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fcde6fdc-89cd-45e9-9836-a65286939e01 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,267.444,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e666a285-1ebf-42d8-877d-3a020e717167 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,267.444,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f68fb1be-9566-4368-b076-501f8bbe4767 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,267.444,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,835c8087-fb1d-47ab-b49c-dcc6f020875d +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,360.18000000000006,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fbb01099-a21a-4236-b56b-2a314cd98624 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,360.18000000000006,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,01b52e82-96c2-4447-ac7a-7502960b7dd3 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,360.18000000000006,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3d3f0875-ccf9-4bbf-8375-9dde410ef774 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,408.48,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0fcf7f16-6a9d-4a30-b911-515f7da3b22e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,408.48,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc4a2528-17a6-4e4f-a177-bf6841a3afa0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,408.48,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c6fd9de9-e0c6-4de5-b254-c548acadff7f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,328.44000000000005,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7fb789e5-0e6b-4940-bb6d-27de13a7c653 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,328.44000000000005,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac771948-b348-465b-ae50-0ac317924dd6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,328.44000000000005,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1bd53779-c90e-4cf1-8a42-94a2d4e86ace +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,267.444,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,17fe7a41-fd5a-468e-ba9d-3a72ef4c3538 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,267.444,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,429e8825-6949-4928-a13f-1b65a3696f4b +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,267.444,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f22cff6d-2760-468b-81c5-bf83b063150b +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,360.18000000000006,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3ed96311-71b7-46e5-b696-d9eebb3d6c51 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,360.18000000000006,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1fb66163-986c-4e2b-8bd9-19ba20bf4e05 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,360.18000000000006,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6e103a36-203c-4b68-8f85-9c66f842dd06 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,408.48,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9b1534c4-cbb8-4f65-a23c-8edbbbc623af +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,408.48,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,217ac42f-d0a7-4167-95ae-2ab6de3331d6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,408.48,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,94c025d4-cfc5-49e0-b4af-c57d7f4777ce +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,328.44000000000005,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cee529e8-ba23-4664-a429-bf88b7b19604 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,328.44000000000005,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e5f77481-0db2-4fc2-a6f7-c8346cd6f931 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,328.44000000000005,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7992c39b-b2b6-451a-9719-118e63362f19 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,267.444,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5f8a12bb-8398-4799-9a72-e4eecf83cb9c +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,267.444,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27f07599-17ca-42f0-a248-0bb7e02bd258 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,267.444,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fbfd2cc8-f227-4506-8754-132b0b40ec1c +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,360.18000000000006,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e83e5d9f-2476-41ba-94d9-29158b81ff51 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,360.18000000000006,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,477d6e84-90ae-4d7c-8fc8-a807eb94efd7 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,360.18000000000006,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,73843800-7746-46ab-92bd-53f2ed1a7cde +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,408.48,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,61562e27-059b-4f1e-84ef-bd275fa11a0d +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,408.48,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c37b1160-329b-4d2e-a5e1-f379e8385765 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,408.48,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8d55e3c8-57bd-4d9e-9d1b-b479f6a8dd39 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,328.44000000000005,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8a2f91a4-bd95-4592-85d0-2ea5c8165dfb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,328.44000000000005,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,893f6666-624d-4c6b-8d95-da22763f11c8 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,328.44000000000005,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ffd2b01c-2628-4eb4-8500-a37d2bc59403 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,267.444,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,60668f3a-ade3-4da5-b64a-8078f9bf732f +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,267.444,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3c946145-7b05-400e-9355-e44ea1ed0385 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,267.444,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0e0dbd58-2b62-4658-89f8-e5402ef8b499 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,360.18000000000006,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,40bd0341-da49-4a9a-aee8-1d6f23c32977 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,360.18000000000006,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b32cf478-d62c-401e-a120-fb6ead3e69b5 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,360.18000000000006,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ea690bb3-cd5b-44c7-88f5-c0972e6652b8 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,408.48,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fddce2ab-4854-4288-979d-b90861a5f863 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,408.48,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e0c778f7-7306-46e2-a1a5-bb3ccda44359 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,408.48,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2b3a948e-8263-4a5f-a9e1-f7e66c96cc10 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,328.44000000000005,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,501ad9c1-3b90-4052-945a-c83296ab83ba +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,328.44000000000005,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9bececb-ec1a-4fc6-9068-729530e3d3eb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,328.44000000000005,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,27142889-9ae3-4a5c-902f-c8a56b620a77 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,267.444,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4502e87d-a501-450a-bbdb-6da07bf96d85 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,267.444,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c32674e9-9638-41f8-92b2-5bbe4a0333dc +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,267.444,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,80b0a545-6b43-4afb-ab8c-c2e153f89ff3 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,360.18000000000006,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,273d87b0-d558-45b7-a351-ec2e61a8ef01 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,360.18000000000006,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0647f620-39ae-42ff-882b-92853be1eea1 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,360.18000000000006,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6cbf5cb5-0140-4c8d-a2cc-04bc84c63f30 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,408.48,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d55329f-1521-43b3-be8c-a1e63fa7c4a9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,408.48,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d88b23cb-5651-4942-ae40-2716c8d4cf70 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,408.48,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ed3e9f32-9855-4f07-b88a-7fe6a5ac779b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,328.44000000000005,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,52abcee1-f162-44a3-b658-931ecb81fa40 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,328.44000000000005,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d4756ecf-4a30-4f96-b140-6eb89d45dd9b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,328.44000000000005,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,799c4d9e-886b-4992-8bde-5241f726d406 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,267.444,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d000adf9-0974-4380-8d07-d2fa2a162514 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,267.444,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5b8d5385-4360-46eb-9def-005ae6bed81a +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,267.444,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,bc77859d-c184-4429-892d-d5d8df3b9a08 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,360.18000000000006,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ef2adc89-e49c-4aa3-875d-6fc1732b6809 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,360.18000000000006,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,574f9aca-3dba-48dd-832b-875e2ee85236 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,360.18000000000006,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,74f7abcd-c772-4738-bd04-2eea5372754c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,408.48,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,852fc013-fc22-4124-af70-a30faa8aafb2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,408.48,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aa535ab4-4d4c-4fe5-93ba-53f027d4ebba +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,408.48,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,944086c0-d507-495a-b93d-c23233e76656 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,282.06399999999996,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4dde392a-8a08-45a6-8927-166e63a6bdd1 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,282.06399999999996,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2f120a16-fe4c-487b-9954-e000a004b8e5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,282.06399999999996,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,00254155-db67-4a8a-ae64-f7b12c2810e4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,282.06399999999996,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4c0eb0be-c78d-42ea-b9ac-b2e7b7aadc76 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,282.06399999999996,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cd68467e-77d5-4e2f-9d17-90afed043c69 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,282.06399999999996,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9babace1-6385-4be7-8d02-928ed26a5f43 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,282.06399999999996,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1fcaf973-60b5-4436-b354-6ab2826b3416 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,282.06399999999996,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39167e84-603a-49bb-b1d7-d118a0d46ccf +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,282.06399999999996,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1f41f4b8-74bc-4700-b2d0-f78954c18c3f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,282.06399999999996,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,748aa118-5038-4cef-b8a6-67b737f12f3e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,282.06399999999996,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,13129517-3691-4d04-a74e-1c79ba8b4bd5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,282.06399999999996,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,88c2c1b5-8e42-478d-b276-6a72b8d79f5b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,282.06399999999996,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b32a587e-4fc4-4bae-b10e-44958be39468 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,282.06399999999996,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,466ac0aa-c763-4dbf-ac6f-addbe251a3d2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,282.06399999999996,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e6c61292-67ff-4e5c-9c17-1086c33f9442 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,282.06399999999996,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,989ae7da-fe0c-43ef-828e-e91326301128 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,282.06399999999996,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a226f10-e7d5-44f2-ac8f-9d06261b3b00 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,282.06399999999996,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a9d89588-8302-4c11-96f1-1710b1c217b3 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4cb485b5-c39e-4466-b828-37acc3181209 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0f48cfed-9773-4813-a41c-d36b931e4c3d +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dfab254b-8199-4f76-8756-dad660ba5368 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7052b433-d3be-435d-b127-93363c8e69e8 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,463eb644-be13-41d3-822f-d2189a753af3 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,ac195c90-8b0c-4aed-8519-112a958c5b01 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ede7e392-3e8f-4a83-b42c-2455664f87e7 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2d43ef29-e84a-44f6-a9c0-2d8c6c5b423a +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fa89091a-4ae2-42f9-9619-49e50bfcaf25 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f1c6eab-7497-4665-bd13-b4af043fc972 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,55706a54-1981-4116-a009-4b24c0c41eb7 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,310c5149-b65d-47b6-87d2-43293c59d6e1 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,35355859-785a-4c7e-a5ab-3fda4f2a68be +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,01c574e9-1487-4550-a315-7d18448a2a23 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6d0d1c62-cc95-407e-af3e-f3103cf61f93 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d102aa26-1797-4872-b671-4c4844320db9 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8c1e86bf-4ae9-4213-82bd-a136b0b1d5e1 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,6ac264c6-ae99-4360-a8ce-f5b5960ee9ad +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cedd14fb-4f3f-4769-bde3-c4924e7ba549 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ed2ca74-21e3-451f-91e5-71433f4b281f +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b28978b4-2126-4073-9782-406a5089bda7 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7b89845-ef84-407c-a44e-0937facb5fb3 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f683c85-f8fd-440a-9bfb-e0a2075b847f +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,148b2894-09ed-4857-84c9-664453e002fe +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b9e6ab79-8f8e-4ade-83db-37437219362b +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4f61267f-e0b8-41ee-a7db-76f09f3a9f2c +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,72eae607-4722-4fd9-8d5e-9bd42c860ba1 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,73c59e49-3de0-468e-a765-6b67779a0003 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e605279-ca7b-45e4-a7a3-8998fdf3ab41 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,134356e7-2809-42bb-bf7b-f0159c7c4740 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,891eeede-7d87-4d5d-b90c-91b94798a586 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d839ef39-a338-4218-ab53-de3a6f7a225f +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6bb26b08-c9b0-485f-9506-e5bfe8e602af +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,96dee70c-8a38-4ed1-88ac-b1189428b37b +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f2f78464-1f9b-4300-a581-26d3285ede4d +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,fb402474-d36e-46f0-b0ce-842f3a5b0384 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97af729d-5377-422b-a405-4fbecd7891c6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,24687bbb-5b1f-45d4-b736-04bcb8436e41 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b1020c9b-b7af-4fd4-89ae-5b99cbfe5a19 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4afcd1bd-2d44-40de-ab5e-713434248408 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e3077f78-f79d-4a23-b4c5-44de70a90664 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,daad6c41-0d42-416f-9c13-9645088a00f6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c111cc59-6204-45af-bfbb-cf2fc909a9f5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eb022ccc-ed23-467c-8631-0c933179bf1c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a4d15388-5728-4f02-ba7f-1ecb14bdcf4c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3c6dc189-3a10-4b89-8111-c2b0d12e7890 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,417e7463-500d-4472-9d99-dd2dbac834c7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,367ea6f7-8503-4e6a-894d-3cb492f6a0da +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a0db9390-b39e-45d1-a42f-0f2a1bae1447 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aa274b49-6ae4-4d43-b484-abd666eadb72 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e4eab549-cb31-4524-9cb6-831d27508edd +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e7094329-8915-48f1-8bf7-af6171149dc5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1cc17b43-bdca-4b33-83af-f2b4643a7be3 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,d9030926-be98-4c38-b62c-b79181701e5b +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,10a051e2-4ca4-45ec-b363-c6684fe10bc5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b98459d6-66cd-4b1c-894d-8e994babdef3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c9c146f8-8b8d-48cb-b57f-825a58e1555d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0b81e112-51a9-405a-beb1-1d067db05522 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2dd17725-7d0e-4463-a5a0-198316e33ea5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,5e17e2a2-1f91-4e1e-bc64-19c34bfc93ee +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,70f82af2-c425-4767-8f54-dbc910b7dcf1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9fd856a7-7d73-493d-8162-16dbfcdc0697 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,51149afe-a641-4914-8653-3178ee39f0f3 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e45e0a2b-39c6-4707-9fab-2ff2e3e0b343 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c39bf0db-8b68-4f82-bf94-a5a87e06b390 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,a2f1cd0e-4710-4a51-9e4d-5772fb9a895d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,888.3,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d220d46a-6e39-49fe-bfe1-e2cd02218a19 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,888.3,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b804b42d-1613-4dda-bebf-955656fccba7 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,888.3,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,61f913fe-6f04-4337-88d7-275951abde11 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.804290771484375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1162b8d4-f3a9-4170-ba77-26c7273aefd0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.804290771484375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a1d11030-7b35-491b-95b0-424579fc4523 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.804290771484375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,6aa55d5c-0318-4686-a4a7-da8d5268ccf5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e43a58ab-2dcd-4f6f-8934-26821114bee4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f7f33ac0-6130-460a-83ea-f821fc1fac90 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6fd6ff48-1299-45cd-87e7-8d3f2991beea +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d009369-9f81-479e-b30c-6deed92526ee +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5dea41d5-3039-4053-96eb-9c8ed4ebeeda +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0d437ac5-0198-47db-a2e8-076a97bf69cb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e7d3418d-1ecb-4d1d-92d0-ab8d977c1d70 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa24af3c-88ce-4106-a37b-17ef328e9f94 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,08dd372f-7750-49a4-b1b4-55988f93fe42 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,002d8a28-3569-4f4c-ad2a-efd227b08973 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73fe317f-3efc-46d9-9bcf-ff4791848a72 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,94f6695e-9c22-408f-9353-44e53b75e86e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd7410f5-b1d2-415f-8091-7c963a59eb84 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,74379c10-33cd-4a9c-9863-c97a704448c7 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,61bcff20-66a0-428f-b9c1-23f3566da91a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ba78cc5-b913-4ed4-9286-3dd12d37f29d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e21d4497-39b5-486b-afaa-f21b00bc4b26 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,7bea2d7f-efe3-436e-86db-9f842d39ef52 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a91b5b57-9325-4a53-8fb2-1ac592778126 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80e29689-833c-46a1-97a9-dedb52f576c3 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8291b64b-d7c9-4920-8065-2e60dc421d28 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a73f5d7e-ef69-4f09-8f59-de16395fc818 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a4cad2fb-0804-429b-9685-c8fa9e037623 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e865c4c9-dda1-4368-85c0-530166717c91 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,361f31d0-add0-4af7-a1a4-2e750eff13c4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a53cb91e-1d60-4ec5-872d-37645026455c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a76db897-b447-4dcb-9517-d6477bd78c13 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f12fc17c-1ce9-49d7-92f8-8fe5886321d7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e7b58707-214a-4301-b749-4d6b437c3dc9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,50ca1296-8ef9-4945-b4c8-2782e79848a4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8b048f57-6914-41c9-963a-9d714ed7bae9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,33ddae20-abfe-41de-b707-43cca1306f64 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a3741998-5992-47b1-bb7a-67eb16678a69 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6bfce501-a518-41b1-905d-ae464747e4cc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35c86961-d8e8-4d83-aea2-c7bc51ed8348 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,768b9868-4e35-411a-a7ad-d50a4da85c0c +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,46debbee-2d1e-419b-be3b-f33e8a317c73 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,485ebd89-7f96-4646-adf1-10b7854efb1f +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,274be16a-5727-4a7b-9816-0f5a601e7bc8 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,366df59a-abde-419a-9e14-69079579dd10 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,23909812-940e-4357-87ac-36956435f464 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,fa41a3d6-eb69-443b-8577-f7d6eb57ebd6 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,734c9ce7-32c0-4d28-8706-372a912f1973 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,01335583-6810-404e-a124-6c408272cfb9 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cc0f2ea2-6d94-4fe4-bbdc-0d363db0e661 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7a50e29a-2cd6-4c27-b668-b01862f3e9c2 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b61282a-2dd3-4035-b40a-84d8cf72bb1f +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,dec36a37-40eb-413c-9028-3c5bf3709df8 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a0da404b-38b7-47ee-abf5-36f2794ff0b6 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,55fc58cd-81b3-4280-8d20-a55aee487858 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dfdfdd8f-0ed5-4403-9b8f-265822efaad4 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ae2a2f39-58fa-44b9-b1c5-91bc0c9cb070 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f5bfad5-efe9-4362-82f3-a640f47b7d6d +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,c1f01a32-2f4c-4a64-8378-5021eca49aee +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9e8b6452-20d5-495c-8dd6-1e525fdeb5a0 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,72bf34ae-0912-4620-98c4-5ea35a3848d3 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,40262c69-7a5f-4cde-9b08-a00f9ea5e9d6 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20dda63a-08a3-4678-afd5-070e836ba808 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35d71e98-236c-44d4-84c4-e0ae7c851c2a +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,2440b316-47e0-454c-a043-b35f0e251846 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,09234127-52e2-4ab9-a049-5de792f5ef1b +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,84aa39c6-3d64-4f73-9e08-acc6777ccf68 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,66952782-30a4-42c4-a2b0-fd63e80a45c7 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2505da91-15f8-49ab-88de-93c7ec2edc9b +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,099b6357-590a-42ae-9280-4907737b75e0 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,bacfb0b0-20e1-48c8-9e25-31341c0d9d88 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,846.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e20032a8-8dc2-4c74-867c-511b9eff85bd +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,846.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9312b600-a014-44a5-a5c2-7be27e40a84e +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,846.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,749630b0-6ef1-4271-91d8-6451a75b27f3 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,0.7659912109375,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a0c63773-a1f6-4b4b-869b-3800a75c0223 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,0.7659912109375,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0fe6ded4-c20d-4745-ac53-601650a79d77 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,0.7659912109375,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:0.038299560546875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,29bb58f8-2a93-482e-a03b-0b2afa06ef2c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,859.4199999999998,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ccb266d8-5dd8-465a-8217-02d86a6d1118 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,859.4199999999998,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0bbd9efd-7d2e-4b7b-af1d-305b427da3d1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,859.4199999999998,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,09f70627-6bed-4d83-90ee-707a6d0b68e7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.64769287109375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,83e258b4-652f-4f8e-84bc-16cc520644e7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.64769287109375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a576cd3-f5a7-47f1-b6fb-aec962fe91db +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.64769287109375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,f03a0509-04f6-4219-916d-d7c71738ec49 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,836.9159999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d448f892-4c90-4586-a563-492d1339c8e5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,836.9159999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5d67a152-1ddc-4d6f-86f1-fb9c0b222cf3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,836.9159999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,48d4271c-1f43-4118-b729-af92d62b84fa +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,830.126,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,214d348c-ef48-4f32-b55a-86aa4e6d2d5f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,830.126,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,84d4fef2-2c8b-41bf-b25e-4f00a84c0ba7 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,830.126,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ba862dc9-2d41-4d2a-94df-e28c71567701 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,834.7819999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0d1d26ac-f9f6-494f-b2b6-70405b9fc0ef +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,834.7819999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1689d58a-dce9-4746-8e30-7ff800ebe1fc +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,834.7819999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,16608f61-2db7-4cd9-998c-2a594516cbfd +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,859.4199999999998,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7541cdcf-5241-419c-8588-50fea55613d5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,859.4199999999998,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,70646111-e602-4872-bd00-ee8a75c4aef5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,859.4199999999998,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,28c72d16-658a-4325-b3d8-95fd98f7c63e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.64769287109375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,055b73f3-80dd-4b7c-93df-4690d19b2a51 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.64769287109375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d79f8da5-62cd-42dc-8df9-7bfc717fa6b5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.64769287109375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,9789a263-8864-4546-a5cc-9384dfe35de8 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,836.9159999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,57c82c34-6cd4-4393-8948-a86780e7a4f5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,836.9159999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8365f22d-c8fc-4225-9d33-58d4a7a4c231 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,836.9159999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bdec62c6-3008-4ff6-beb4-c80650dde40f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,830.126,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,abe2ba51-59ea-41f1-a4f4-4e2dccea27a9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,830.126,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f1ddcca3-fb5e-406d-b956-9130b213e454 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,830.126,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9e0ecce8-9740-460f-9bc0-90352ba85087 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,834.7819999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6a6a663-2cb1-48e2-bd73-2886a61bfa87 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,834.7819999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d9db65a5-833f-4e95-a6c3-8ea75876d698 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,834.7819999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bd9cc5fb-beb1-40b6-bfbb-368ca5e7d1b2 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,859.4199999999998,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49e18d54-51a0-4f89-b21f-1d0fe8ccff8d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,859.4199999999998,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dea8d645-0b15-4b9e-bc46-3e6ae83bb080 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,859.4199999999998,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6ea2258d-11da-467a-b539-999caa9eadfa +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.64769287109375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f2fa20a9-0c4e-4b7b-92f5-08b956ccc5e7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.64769287109375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,63c16555-1688-4736-9345-e32ebff7aa88 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.64769287109375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,d72ccfc3-2e6d-4ab8-9728-5e6acd213881 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,836.9159999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ac3c0f8d-79e6-4d03-b2a2-4ff12e12b59a +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,836.9159999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5c061be-fa15-41dc-bebf-6bd71ac5564e +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,836.9159999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e52719e5-241a-4356-9b73-d423e31d2cb9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,830.126,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f37485de-6775-4771-bff5-baa606018078 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,830.126,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,54dedea7-3b28-4332-a35c-7ec7a5b185c6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,830.126,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e68ff341-cf42-4b6b-88ca-052ed66f3473 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,834.7819999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,269a562d-9b53-4f9c-a0d5-487b860d1e05 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,834.7819999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8c3ed442-e8a4-489f-a18f-dc872eac21c3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,834.7819999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ae4a4205-0ba7-4c54-b256-91f81c9a14df +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,859.4199999999998,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d7304c9f-ee07-403a-8791-2c0a7ffc9a1a +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,859.4199999999998,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,40e9adf6-f857-4ed5-8af7-142d4331a5d8 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,859.4199999999998,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c786a33d-a091-4718-99fb-c1462770ad1d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.64769287109375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a1d6d523-170f-4028-bfb6-65c352a92bc5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.64769287109375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,178647d0-ff08-4aaa-adce-e79f6d853e3e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.64769287109375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e0d7bef7-35aa-47c4-996c-573db6144b41 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,836.9159999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,30c0f200-da99-48c6-a813-0907c3213d7d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,836.9159999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,053cee49-0625-4cd1-9a74-8d96a6dbae13 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,836.9159999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c8084ca4-92aa-4cca-a7bd-f4fdadfe1ef1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,830.126,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2ece58d-9c69-4316-8308-c1aa93d6cd73 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,830.126,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e8323650-79e6-4952-b794-24f04514b908 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,830.126,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b193c003-1b6b-415b-8705-762f5c1e4c40 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,834.7819999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b8917859-b85d-4d63-876e-06785a0505ef +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,834.7819999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3b8106b6-1b08-4087-b69b-78a739b3e815 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,834.7819999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,37f7a884-636a-4134-af29-5eee562bf778 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,859.4199999999998,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0e03db80-06cb-48e4-b088-16b5a9a44393 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,859.4199999999998,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,71a8d629-807b-4bf1-b291-9141b9f4e3b1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,859.4199999999998,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e03c01ad-232e-4e7c-a2c9-7d2b929a8922 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.64769287109375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,388e082e-9b29-4bb6-8e3d-0577df980914 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.64769287109375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7757472f-2ade-4b0c-89b9-0a16eb5cf951 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.64769287109375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,c5157b96-3b01-4893-87e5-d637bfce396f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,836.9159999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5937f5b5-7cea-4cc9-8e0b-bd404ff2b411 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,836.9159999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b72f9e6d-f363-4504-bb0b-818165357176 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,836.9159999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,43832706-4146-497d-9d12-3163824484a1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,830.126,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,499ade27-160e-4858-9526-c463c20118f1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,830.126,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5d4cb05-7bf0-41f5-b053-d4b145886da3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,830.126,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a48acacc-be1d-4364-8411-76cd43ca3325 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,834.7819999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9f0f35de-4c04-49f8-a62a-e631071d2955 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,834.7819999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d1cc4c8e-dd84-4681-9e13-4d062fc60cf3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,834.7819999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,40250723-2f94-4216-b2b3-d7a95f4017ad +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,859.4199999999998,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c0caf890-b166-4f2b-a2d9-22c6ea133da6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,859.4199999999998,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1bea7bf7-db68-468f-8f4f-8b10df081b26 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,859.4199999999998,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ac66bb94-beb5-4675-a45c-338b4f45fc5f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.64769287109375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cfecb32f-020f-44fd-9dc4-b2ef4d08f7e4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.64769287109375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e2e6117c-a4d3-4a9f-b18d-e09fed7d70b2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.64769287109375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,828242bc-14bd-481b-95dd-277814c9d466 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,836.9159999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,65faa900-975f-4f71-8258-cd508401cebd +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,836.9159999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f660e74b-323e-4179-8106-55d9dc110efc +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,836.9159999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,08045159-4261-4549-9eec-df44d68df6fd +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,830.126,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,55bc59e1-9802-4858-9ae5-2f308b802e9d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,830.126,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,10e9d27f-2d38-434a-9a43-132053e0f342 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,830.126,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,55375160-287d-4ad4-ae12-71a2c2043b49 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,834.7819999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8753ebe3-7d5b-4c2e-9305-329f6907a756 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,834.7819999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0f4dfed5-993b-407f-8326-3afcca9c9246 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,834.7819999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5611d047-55b4-42c2-a01b-fc94ddec0d08 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,837.2699999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9da4a11-790a-4760-99d8-ea897b34c45c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,837.2699999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ab23a652-69d6-424a-af52-dd9a8df1c212 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,837.2699999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6a87e130-97d9-443b-a16e-8a09db5af985 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.630999755859375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9c71042a-e858-4345-8988-80da1f2ce797 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.630999755859375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,596428f7-fc1a-4841-8f30-99a6d7483d39 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.630999755859375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,89cec0cb-1f09-4cd6-90e2-246b9a5e4830 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,815.346,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c4f6827c-fe63-4406-b9d9-23c6fcd318b6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,815.346,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f553e2bc-f6ef-46ac-b4b7-42224c9fda06 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,815.346,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3018bb68-1ea7-4a65-8179-9cb65b48ffcf +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,808.7309999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,19f869d2-9275-4049-a1d1-183d9f8fea5c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,808.7309999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5733f13b-19b9-4e62-a72f-11fea95b0b43 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,808.7309999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6094d694-8189-443e-952e-7f74e8dd64c3 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,813.2669999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d489f9c0-c7a6-413b-bccb-2744a0d2510e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,813.2669999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5df88aa-b48b-42bf-bfa0-8d9f1a05a9c9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,813.2669999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,80efcdb3-5f87-478a-a6ac-c9371848b71f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,837.2699999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,027cc5d1-3bfd-45b1-8878-3c1599871fe6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,837.2699999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,282dbf09-b171-43c9-9bc9-321ebfea797b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,837.2699999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dc828e68-ba7c-467c-9b5a-7e783b8852fc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.630999755859375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0dd20c72-6d18-4e9d-869e-5a8f76c418bc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.630999755859375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,59ccd30e-e201-4ea7-bcaa-2bfc4b8b3b7e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.630999755859375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0499edce-1900-4409-9465-3194dace72a0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,815.346,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,98eddd7d-4694-47c8-923e-7eb5a29535e9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,815.346,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,df8a0484-caba-4907-b232-0f8785935124 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,815.346,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cec1a170-5d47-4164-8669-9fa606c0b24f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,808.7309999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,de3bba63-474c-44e5-b1c4-7bc3482b895f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,808.7309999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b119e87-9db5-4ed9-8af2-f4609e9bfce1 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,808.7309999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a6a2df9c-5554-49ce-a516-7501e38cd154 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,813.2669999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,24766388-3025-433f-b797-9041da0f1835 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,813.2669999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,378a0b1c-e708-4548-8809-48714ce8089c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,813.2669999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ea60639c-9a36-4803-9571-5f606b927404 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,837.2699999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e44086b0-f4c8-4f1a-9831-eb1e32aef00b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,837.2699999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed384df5-0038-4df2-8958-3ab57523d815 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,837.2699999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c13d7a05-72a1-4b6e-b454-901fe431bfad +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.630999755859375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e005dece-34bc-47de-a821-4844af63aadb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.630999755859375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d40f1972-4625-429d-acd1-c4c27e90fed8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.630999755859375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,1d8728c5-81c8-48b7-a3e8-76e6d9e63692 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,815.346,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,958d9239-998e-4271-ac5a-3201a845f08e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,815.346,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e5390f5f-7ab4-4bfa-a71d-1e22ac561cbd +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,815.346,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6f0e4327-4ab8-4299-93df-82148048f332 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,808.7309999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,41bd43cc-2c54-468f-9b3c-4e7680db3c85 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,808.7309999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e646f537-c99d-4e2a-9e78-0ed770c056df +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,808.7309999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0627e899-58bf-4e06-9baf-ab5253b1ff81 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,813.2669999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,17447850-2cb7-4fb8-bb78-bcc4bcef47c5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,813.2669999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cec334c9-7ded-4d66-b2bf-81c5e1b3ff26 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,813.2669999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,52a4092d-8437-48bc-8692-8e27737fbade +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,837.2699999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1d8cd077-0a15-4cc8-960c-4437c42d2333 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,837.2699999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,93d2f483-3e36-4f40-b99e-38c9f1610eda +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,837.2699999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3a1385d2-3231-4a37-90c1-8956b783ff19 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.630999755859375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b0a3954-be84-476e-a13d-da1d0aff6d63 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.630999755859375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,04b8188f-c1ad-4ef8-b23e-424b2f95a3fd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.630999755859375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,797c3782-920a-44a3-afd6-a7400469bbc3 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,815.346,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b76dfe6d-e476-469c-9eff-1fcfe269a3ae +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,815.346,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00e2029e-9c3c-44b5-8f7a-c1543ae3e34e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,815.346,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e8a9de27-dc7c-4fb1-9b80-39713a572d9d +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,808.7309999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5ae0078b-069c-46ae-ad37-323c8d8327cd +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,808.7309999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f2cdbd2b-53ab-4c9a-a35e-c33ad596cebb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,808.7309999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,da382e9e-ad08-4852-aa7a-7e4e9612fa31 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,813.2669999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1e9b1fd7-78c3-42f6-ace9-39325223e48f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,813.2669999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3e81d83f-eff5-4ef6-bc4d-f1137bfe72eb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,813.2669999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b52cc9df-1d8d-467a-899d-67d23459295a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,837.2699999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,493534c9-91ec-4f10-812a-a79b319f9f9d +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,837.2699999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,66ff0c03-74eb-4ebf-ba02-97974135a7ee +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,837.2699999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,37d597c4-f7bd-4994-8e72-652e3a470f11 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.630999755859375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b1bca128-ae57-47f5-a9ca-98be4d67fbba +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.630999755859375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,82dae83d-2d9c-4610-9a07-babc65448b5f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.630999755859375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0cd30b8a-d8b7-48c1-a081-4160d3ed5881 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,815.346,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,469b6ddd-6b9b-47f9-a53f-994494d87458 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,815.346,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b4e9835c-ee1c-40b0-b2ba-b2ba8f96e31e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,815.346,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,50085c8b-803c-4d5a-a4fc-d7967ed167eb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,808.7309999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97d9970c-13eb-453e-b4a8-87da05fd5a38 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,808.7309999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c61860c1-f627-4ef7-95c6-cba09e200984 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,808.7309999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8071d74e-d129-4481-8ef2-d60c901f6855 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,813.2669999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76a570f5-25cd-4fb4-bb72-f30ad64cb6e2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,813.2669999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7039c4a8-5c66-49de-aa91-543ddd83f69c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,813.2669999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6b5664f3-44f0-4aa0-ae7d-18182fe28e7a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,837.2699999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b4987960-5a13-422d-88bc-1584c43b8791 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,837.2699999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,84f20585-65fd-4221-8e4c-70f3aeef8e2f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,837.2699999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1be2f0b0-775a-488a-b063-44a5f4496bcb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.630999755859375,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f327cdea-6a0b-4bf1-a524-c5743c49a757 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.630999755859375,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e3cdca50-43fe-438d-8d54-908b3ea2f2d0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.630999755859375,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:0.03338623046875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,6aa569f5-09f7-4981-8496-ac83f7764c35 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,815.346,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f60f05d-cf51-46ff-a1fa-6b874cb2f419 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,815.346,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,221731f3-d839-44c9-a4ff-f9bb07ad121b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,815.346,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,371581a8-4d18-4f21-a64a-f9ea3e1f9acf +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,808.7309999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0912295e-c6f5-4e73-b58e-1279f7b138bb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,808.7309999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0bf5dd15-e630-469a-bd82-ea5425083ab9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,808.7309999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fa4c3155-d7ac-4f6f-ac79-43ffe9d038f3 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,813.2669999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c1f7f4cc-5440-429a-b846-7ca39b355ecc +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,813.2669999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3ef4a849-f38f-4e22-9cad-3313a36ffbf4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,813.2669999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,316d5698-ecf4-4ae9-bc1f-d9728d5ea548 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,849.7199999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c1f2a13-4ee3-402a-8336-44700dd0fbf9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,849.7199999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d6392113-3fec-4ee0-86e3-fc3818563258 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,849.7199999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,71779a4b-2362-4a09-93ba-7d4d1a9ef7d0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.708673095703125,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b63893b-b299-45d0-8830-4330dd1fd93d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.708673095703125,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,05693edf-8db7-4d1c-825a-0b25c689a00c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.708673095703125,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,82f83352-bcc7-479b-8339-debdd157b3ce +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,849.7199999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1206aaa9-116e-416e-9901-b32340144531 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,849.7199999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,90dc2cfd-ec4b-4e83-bb71-92fc36875095 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,849.7199999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,222bc817-38e5-417b-a77c-7cb9c7f08fe5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.708673095703125,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c3fd484f-8379-43dd-ad0a-0be308090f1a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.708673095703125,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,97528338-0610-416f-843b-52101bdff8eb +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.708673095703125,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,655c84a9-5e9f-426e-a451-90f48424f35a +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,849.7199999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,18e9544e-2e7d-4b03-a685-67986046f100 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,849.7199999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0e4046d6-e253-4304-ba1a-e5a77c5db785 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,849.7199999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4a7c14f6-aca6-4c60-853d-9b95f432b19c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.708673095703125,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e71f6f0a-165d-4f09-bcb2-bcfca8b37e13 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.708673095703125,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,47e653d4-24ce-4413-a427-656670138081 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.708673095703125,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,19146332-42f1-4490-bf6d-ff674aa125da +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,849.7199999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,52202103-fa45-476b-935d-97f2f853728a +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,849.7199999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,89be54db-0ccb-4e3b-85a4-53416aa3de19 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,849.7199999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a5e3e32e-0673-449a-be9f-485e238fedcd +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.708673095703125,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,182b625e-c036-4957-a0d6-8b68b28cf2a5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.708673095703125,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f3d5713-083d-4938-b008-3c12eb915e41 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.708673095703125,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,dd2c213b-9bf1-47cb-b7e0-013f19ac306e +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,849.7199999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5fe6b4d-ea87-49fb-83a4-d61a3476decb +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,849.7199999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,10edf75c-da59-4918-bd51-a0eb4db67752 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,849.7199999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1bbf8bc6-cc97-4450-918b-a1ac90e5c5f6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.708673095703125,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,884eca6b-9e6b-4206-950d-dc516d6c9082 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.708673095703125,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c0494ad5-e08d-4ed5-bc78-937e34dd742c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.708673095703125,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,46d8395f-18b2-4ace-87d5-f4f7bb452f23 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,849.7199999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6f5c6d5-8f20-4cdd-99cd-dc5c9d769d25 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,849.7199999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,85211151-82d3-4e58-b58f-1341e7d2d403 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,849.7199999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,959ba43f-c7f9-46b3-8f3d-d3ead3f55283 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.708673095703125,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3874d4d3-fb41-419c-a23f-cc63dfff01ac +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.708673095703125,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ad9f4b88-5cf9-4dba-8d06-175d23e8a967 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.708673095703125,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,70490f28-ff4f-49a6-a7e5-1c92eb790fe5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,854.0999999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4146fcf2-79f5-45ce-af41-033f231c47f5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,854.0999999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a6c15220-a1a6-4ccf-82e1-cff165128d6e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,854.0999999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,acfe8bb7-8a1d-4184-957b-e30e163ddbfa +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7123260498046875,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9f64e666-12ec-4ee8-b6e9-5d8ab6c7b252 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7123260498046875,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,36b8a662-aeeb-47a8-8d4a-84c17cdc34db +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7123260498046875,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,3adc67d7-b935-448b-a5bb-9052dfc6be11 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,854.0999999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c13b0d07-8218-4c75-be3d-5b56d66bddd0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,854.0999999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,12d8d93e-da23-472b-8044-8fe8f43be90f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,854.0999999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9c5f272a-f04d-4d61-a652-a95e2aacad8c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7123260498046875,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,67c31fe1-8840-4553-b86d-800c5947c279 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7123260498046875,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cce1d3b2-4b11-435f-b0a3-0dd7aeee6577 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7123260498046875,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,9742722c-a3be-468d-a034-d8098ba66ceb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,854.0999999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5b11937c-38ed-44b9-94d2-046a22a69504 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,854.0999999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,48a2ba1e-9bc6-4eb9-bd54-482b66146cc0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,854.0999999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2478c758-b74f-42ab-9603-dc978cb04f96 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7123260498046875,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9bbf3a66-4222-420a-8325-cf771decb959 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7123260498046875,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8da662e0-901c-4160-9bb9-5c9212e73d2c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7123260498046875,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0b67f442-1461-4691-b1c0-2e188bffb719 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,854.0999999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,28e225a1-af14-4a1e-93aa-dcdfd2f95943 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,854.0999999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d790db18-ab24-489f-a881-a4bded64ec1f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,854.0999999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9d58b00c-abb1-4421-a422-1e0f8ea85d18 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7123260498046875,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0468d5ab-b190-4d86-b128-1e42a1c696e6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7123260498046875,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49ad5733-745f-4023-8614-b3e5b6534391 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7123260498046875,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,14c8d036-0d61-48e2-90e9-0d0a09931a78 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,854.0999999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d235ba7e-46d6-4591-96b9-fabd6068ada2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,854.0999999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0d6ff124-4134-45aa-b6af-d3918bcfd798 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,854.0999999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9c68c965-c47d-4cec-8816-6f43dd7430f4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7123260498046875,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,82c935b6-2adf-490d-b4e8-a8fa50ce0fff +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7123260498046875,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,43cf5a5a-3f01-4809-9edd-8037927590e7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7123260498046875,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,0f1ab29f-2173-4ae0-b066-f94c47224f2e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,854.0999999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,04c98350-79d9-4535-b0b1-1677fbb975f0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,854.0999999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fef82bcd-141d-4126-87ab-059726f4c54d +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,854.0999999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3be582c6-c21e-41b8-9afd-ff99799d1f67 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7123260498046875,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,db9b82c1-5003-4f26-89a8-c7d6cbc2e4dc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7123260498046875,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a1ee9a78-d516-439d-9628-213061776b80 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7123260498046875,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:0.036529541015625, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,fe2298f6-d017-4f30-a48a-8ba8d7988bd5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e6f629e8-36dc-429a-b70c-ea5bbdf7833c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f5b5ce98-bf5a-4f46-9bd1-b6d621bf8a47 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,855.6999999999999,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6adc287f-6279-4fde-b611-164ea154c3d4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.7743072509765625,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,469320df-dc60-490c-aa5a-ec0690ad3f6a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.7743072509765625,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b5518f49-a2f2-41b3-bea3-daee5aacc5d9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.7743072509765625,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,4833bc17-eb20-4ecf-978a-67ca69c75d57 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,792e2803-bb25-446c-9896-86dfe17402bb +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ecb134ef-f65d-4ee5-9640-e1607b32af6e +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,855.6999999999999,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fcc9e4ae-1846-43ec-9465-e992b824bac9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.7743072509765625,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,786c846d-842e-4957-9c2a-e077ad55272a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.7743072509765625,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a5e93673-ad93-4202-b9de-c373118430a8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.7743072509765625,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,e217d09a-2dcb-4fb6-9be3-553c74526844 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e9a7b2bc-7b6c-40a0-879b-2a57f94f4f9c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,17e602c2-c28a-459b-bd53-8638a2476e53 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,855.6999999999999,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d9a886fd-8496-47b8-a9bd-4aa09b59959b +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.7743072509765625,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37834837-2af8-41f5-88f4-92179993009f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.7743072509765625,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d47a459-4c2d-4321-b18b-fa53b3d196da +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.7743072509765625,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,d455bbac-38eb-4603-a8f7-032a722636b2 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d14e09ad-957d-456e-892d-b75585b1b2d9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0e7fdaf6-c165-4657-a414-225b95f25f0e +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,855.6999999999999,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,54ece0d2-39ad-4b4b-86b3-8554d962e958 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.7743072509765625,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5e8a3292-09c2-4ed9-bf3f-ab2ec411ae39 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.7743072509765625,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a056f910-5c66-473f-9668-7ff995a353d8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.7743072509765625,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,2512c0f7-badd-43bd-84e5-acfd5ddc6139 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,437f7994-fec9-4c94-8937-2c4311183b36 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7bde5c07-cd58-4f07-9ee0-985486849283 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,855.6999999999999,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b12a6441-fb8f-476f-9693-284866fbb687 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.7743072509765625,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fa46c72e-f568-42b4-a0cf-b8b1d534d9b2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.7743072509765625,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,36286751-3e41-4860-9834-bb24d5fcf5b4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.7743072509765625,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,d83a0aa9-2c27-45e6-b3a2-88b8bdb9a5aa +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,90751905-cb61-4be4-9753-bc1ee7080bd7 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5325ae12-8efe-4934-a389-2b5b1404e64c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,855.6999999999999,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,272d16ff-6e66-4917-a010-36f4f88cd8df +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.7743072509765625,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,840f68f1-18b7-4284-ab3e-07490eede7b0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.7743072509765625,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,974bc59e-97dd-475b-b013-832a58ede8e8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.7743072509765625,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,aae3c82c-a342-4357-84ba-8a0230c582f3 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,860.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1bce8c43-ea27-4880-85dc-0cffb7624aa2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,860.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,69f87cd8-5753-4ba1-a6c7-9898f79b04e6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,860.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f4ebd5db-d006-4d58-825b-b6ce7ddcef57 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7781982421875,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dba4586e-5511-4457-a725-5e74ef1e7361 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7781982421875,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,def5bc33-509c-4f20-b28e-d7d398204f0b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7781982421875,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,2b81a3d0-9521-4770-bbdd-ffa779299e7e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,860.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,94204e48-7787-4852-830e-29cf72cae313 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,860.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49a9c35a-8244-4410-a260-136c7fa0b3ea +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,860.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,247b3c3c-8959-46fc-ba4b-6831ad85514b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7781982421875,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5de6bc20-fcc6-4599-8c57-f0b12b406dfb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7781982421875,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,064002f4-0fe7-4955-91f1-018fa2d2874b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7781982421875,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,c1aea0b1-098a-4a12-97af-8886a867d19e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,860.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d799b4b-5de5-4624-a526-4c7ea6ed6483 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,860.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,952b8c7f-deb5-49c8-b3fd-b64794e9860c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,860.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b6d66a21-1f97-4bfd-89e3-0d4c9dffc442 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7781982421875,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,179cfa1d-021a-429c-bcdc-1ede45526742 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7781982421875,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8a2775e6-40ed-4a47-979f-f38377bfde92 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7781982421875,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,95469349-d2e1-4a84-826b-b020b90608fd +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,860.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b8adcee7-1ca7-4405-8108-bb58dfb9cdfa +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,860.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ef036533-f22c-4956-b175-e74e2ed63644 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,860.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0d9e4397-8d69-4035-871a-1147bf5fb284 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7781982421875,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3feb101c-945b-4220-a345-a9cc2e708462 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7781982421875,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cbf473c1-e60a-4ef2-87c3-5a1b776d56a7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7781982421875,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,8f0f9cfc-96d5-4beb-8da1-8a5eadd41156 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,860.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,55bbbaa1-b110-4fc2-9142-090b6caac836 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,860.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e877219d-be46-433f-a993-b330d2c67eb4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,860.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f55e0e9b-9c92-4872-8701-662df4ee2007 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7781982421875,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,06b67340-b79e-4e52-8451-3a533bdcff75 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7781982421875,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1262f7b8-4d63-40b1-a38b-0faf06358655 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7781982421875,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,7d4f2ed4-a21a-497a-ad9a-963e8b98c0b5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,860.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a85f5669-4eb6-4f3c-a536-eefb68c30b6f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,860.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c37367cd-1ebe-4d75-9b53-4911383f954e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,860.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0497ae65-db67-4855-872b-8089f5236bc6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7781982421875,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dcadc623-ebba-4998-85ed-5514f5a555cd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7781982421875,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80d6f91d-e6a4-45c7-9703-d8d6e7f22469 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7781982421875,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038909912109375, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,ee132d54-e976-44a7-b201-30fae53be09f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e0a175f3-8d6f-4394-81be-5a14a141cb24 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,793d7480-1966-4589-bab9-bef49374ee83 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,855.6999999999999,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a1d27052-d11a-4651-bb08-1b4cf26f02df +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.7573028564453125,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5876fa2-7070-4429-8fad-018fb2fb0955 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.7573028564453125,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6ac55f15-0324-4dd2-a928-64e78de2f964 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.7573028564453125,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,af0396df-845d-4b88-967a-4f4dc8b50fa0 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,851.322,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f6430e1d-0a52-43e0-bd5c-f0d012a1160d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,851.322,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,53cab776-6639-4a36-b0ae-134f701c69fe +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,851.322,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,86888292-48d8-48af-9108-a50ae5e3108c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,846.944,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,71d22f01-8c8f-4139-b599-4d0520f01beb +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,846.944,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f4a9f4dc-85b1-4d66-a31f-75b676b22c5c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,846.944,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0dcf928a-f5e6-48d3-aec8-77d48da635b6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,850.526,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0f46e87c-e7c4-4dc4-aefd-29180fe98466 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,850.526,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bf847517-8e11-4651-8dd3-40c9fc58f1b6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,850.526,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,20ee04da-8df3-4c19-85a5-1fe7eb121fcc +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ba8eb9f0-519b-4506-95e5-b837085efe43 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,487ca6a7-7cb2-4b75-82bb-095d234a7a72 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,855.6999999999999,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,59f295ed-4960-4d9a-8d68-284870eaf133 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.7573028564453125,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cfa6fbe9-b839-4da1-b5a5-5e1a355977e8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.7573028564453125,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b5940da2-2ac0-4b50-a3fb-59939e81469e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.7573028564453125,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,edf74bc2-7e6b-4800-914a-10f446c22ce6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,851.322,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f1cbff7c-1c81-4881-9de3-d4302df126e4 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,851.322,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dc354f8d-61c0-44a0-950b-fb827d076a67 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,851.322,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8f0caee4-1585-4bb6-8bc9-010f87fef61e +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,846.944,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,50c758b2-e15a-47a2-8812-be596d61c7b9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,846.944,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,14aee757-8b1b-4f22-aca4-d4af1621d328 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,846.944,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0bc9afc5-52af-46ef-8d4d-07c6c41d11ba +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,850.526,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6eb5ade4-ab16-4ba3-9379-44eb1f5cd67a +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,850.526,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee9986b5-a8d3-4352-b099-d637c9b8ae6d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,850.526,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3b193f6b-e32b-47da-9b8f-9416f1f8bf83 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,53175522-4f9e-42bb-8e15-34197ec85cc4 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,815160c4-75ad-4d1c-93bf-b5cee93336ab +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,855.6999999999999,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d547c3a3-dca0-4759-86c5-878b005c4ac6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.7573028564453125,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b1012e0-45f9-4a41-babf-d296c3f87127 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.7573028564453125,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,26a7059f-a392-40bf-a6c4-678fadf5bdcd +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.7573028564453125,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,26ac63d6-114c-44ff-ac12-c247df782f49 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,851.322,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37360426-39b5-420e-939d-fbd03a5268c4 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,851.322,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ffba6d3c-6130-4f50-b52d-84394f7077a7 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,851.322,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8401cab8-3d2b-4786-a1a0-15e703e8d66e +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,846.944,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a56919af-3b34-463d-a037-04ef656fe701 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,846.944,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b8173ca-1e5c-45c7-bdb8-49019a6393bb +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,846.944,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b765e31b-eed0-4770-9aea-cb2495174a8c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,850.526,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,35536d13-8236-4996-aac4-774dd657b516 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,850.526,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fee47e6c-3eef-4782-934f-e89c075120e7 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,850.526,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,948159d5-d6e9-4b20-9a00-ca386f89b6cf +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14a88fe8-685d-4c76-bebb-728e724b3ff6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc0ed462-fa41-4ca7-b1ae-41ce459d8f3d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,855.6999999999999,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e2937776-46a9-4232-a090-b90882ab8d32 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.7573028564453125,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,315cc91a-7cc7-434d-ab2a-6066779aa316 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.7573028564453125,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1ca13701-02b3-4f0d-b0de-6144da4e7b73 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.7573028564453125,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,9f62a1b6-a5a0-48ab-baf3-eb48b3048bf8 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,851.322,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,19f52483-2d2f-4f63-a321-18f962c99655 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,851.322,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0ecdbc84-ae3c-4878-9e25-27da8badbf6e +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,851.322,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9862aa19-f9eb-4d8a-9d8e-750cc7cef467 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,846.944,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,77d01f68-d8a2-49c4-8b47-6e57d0c7ee72 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,846.944,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a3831e2b-0327-426c-ad45-1f2eba27f823 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,846.944,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,33cdd8da-b6a9-4624-84bb-66a406f85521 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,850.526,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6137113c-01d4-4ae6-bd3f-3ce133685123 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,850.526,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,99f9eaf2-0605-4b8b-8daa-2cb7d70568a4 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,850.526,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2cb4fc19-91de-4aaf-bab8-d641122b4006 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f77e7968-738c-4db5-92c3-d40d4096b227 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,468b36f2-f9e4-470f-9545-c46ee540ec8b +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,855.6999999999999,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,823d65bb-f244-472d-b06c-fd38ec9ce8bf +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.7573028564453125,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,95c88901-d4a9-4dea-8b04-2f3df789503a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.7573028564453125,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cfcda974-f1a1-4f68-abe9-2f7897fa5fed +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.7573028564453125,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,fbbbc687-a570-40a8-9f7f-018b247f542a +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,851.322,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,95e6fbe3-4f0d-433a-af41-45e7cbeb3bc3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,851.322,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,879c24e1-5b6e-4553-835e-287639cf4c45 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,851.322,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d7c5e8e6-0690-4a39-9e92-a1610697dac9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,846.944,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,546598b2-67f1-4100-b7c3-d4fdf361377b +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,846.944,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,51cb6d3d-274e-4589-9aa1-18e769f130f1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,846.944,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d17efed7-b42c-4f21-8f92-6895b2dfdaa1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,850.526,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,844dd1c6-354d-44f0-9bc6-c9ca07d73ff2 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,850.526,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,46e7626d-0e2e-43cc-bb71-51b6d8852106 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,850.526,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8a1af197-ab36-46ea-9528-b0b1432799b1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,855.6999999999999,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b486c18-8054-46de-8582-479209c143e3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,855.6999999999999,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,68b03189-85c9-4ca1-8240-9ad46d85e1cc +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,855.6999999999999,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9ae53e67-7359-45cc-b577-9e99a8d43179 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.7573028564453125,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8cecd92c-1550-4aa2-bfb0-e86545e57bdc +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.7573028564453125,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c38306f-bf1d-41be-8059-53df09dcae80 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.7573028564453125,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,f3a65757-f91e-4df6-b6f0-c37d06ccbf5d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,851.322,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e8b0d56b-c96c-4842-8617-3f2bbf5c511d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,851.322,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6a76acd-9da1-4cd5-8993-9da56c530706 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,851.322,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,af8ac966-553d-4647-882b-50943647bd88 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,846.944,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59cf4364-c053-4b37-a1e4-6a807c64b5a9 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,846.944,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9948902f-735e-457e-b3c2-d1debd8ed8aa +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,846.944,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5e8ca935-8a47-4a58-8e98-8a5f1cfd40af +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,850.526,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7d192698-ad1d-4b94-bc89-b47465bc51bb +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,850.526,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6df96ef5-00c4-44ef-a8b0-2255d41f0705 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,850.526,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cda6830a-fba0-4bd7-8dee-9d80b298ab88 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,860.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,162b7622-570f-46c3-baf7-34d950bf61a2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,860.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6ed8e05-570a-4b9c-8d57-737e5be82ebc +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,860.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8f382b28-1458-42ec-9945-f40add7a1098 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7611083984375,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d1925a3b-d36f-4d8b-8292-70a05cba23ae +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7611083984375,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e3c25585-a7c3-41af-babd-d1c9e5718fac +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.7611083984375,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,d3aef6df-6ee5-41ce-b767-ae7774f0e051 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,855.6,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,16a82368-31a2-48fe-af6b-0d9ea6cb3981 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,855.6,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a982ed4f-f0ae-425c-ba0a-774751b2dfb5 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,855.6,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cf723ce2-05f4-4234-a606-234b2a454ea8 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,851.2,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,46dae412-006f-4777-819f-c1508c41db30 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,851.2,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5b448221-1870-4904-82a9-88068fb9d5b0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,851.2,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c696965b-7fa5-4800-bc8d-b4acc633d936 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,854.8000000000001,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c8ba8dcd-236f-442f-b3df-cece1c40f53f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,854.8000000000001,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8da8a172-2e0c-415f-b605-a078f27cd45c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,854.8000000000001,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,33a510c7-806a-4835-a767-f0d180ca9a2b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,860.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20a407d8-b49d-46f2-acb4-71450b358a51 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,860.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2324501e-2b23-4323-87f6-5a866c37aec6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,860.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,31dc1461-d6aa-4e94-9fb4-c02b2e05bcde +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7611083984375,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,618f94f7-a11f-4b95-9095-ad577aee4544 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7611083984375,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b49a8627-288e-486c-a939-f6988fd1c018 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.7611083984375,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,419574d0-5235-4c49-b397-2ad34e7c8606 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,855.6,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,30167f43-f124-4fca-a2c2-d462d6f0b1fb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,855.6,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,83378030-c276-42b2-ae23-ced562651232 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,855.6,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b06e98e1-7aa4-485a-9bf6-ae8dd3c60553 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,851.2,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93b9ac24-9003-47fd-9043-771dc0d372b6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,851.2,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,96f7fa06-dfb2-4784-82b8-ef21054acb13 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,851.2,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,098072a7-61ba-4889-b60c-139c5f8ec474 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,854.8000000000001,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5f6029aa-1f97-4b2b-b567-861b97afaa15 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,854.8000000000001,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8633d0bc-3000-4f3f-bc33-462c59388c2f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,854.8000000000001,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f37beb72-0dc1-420e-8a2e-dd34ce0d137f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,860.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f226c12-6426-496b-87a5-3d24fe4799e0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,860.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ab3ed2a3-a758-4982-b728-e9f9ae3a96d8 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,860.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3c8f0bc9-105c-404e-a0cd-a92bb36900eb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7611083984375,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,089d1450-ced8-4ee6-b946-6fa8b8e69e90 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7611083984375,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f82e287d-3722-49c0-9b5b-891d3e30ebdc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.7611083984375,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,759e2154-d1bc-44a9-9f3c-b94ed6dfda93 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,855.6,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5d48030-d5f0-483e-b3ce-921645504096 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,855.6,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,07d0973e-4523-4c9f-8fe3-20ebbc399cf2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,855.6,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3d3f6a1d-0714-4c15-b3d8-0c0938d01b9d +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,851.2,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a92b3752-a797-4d95-b603-7c3ee06447f0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,851.2,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,29c73f0a-c159-4e79-a2c9-79ea4f7a4fc4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,851.2,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,39a9a565-ca86-4814-82d2-81e29944145c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,854.8000000000001,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,670baa3d-9454-49dc-8aa3-098d944bd9f2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,854.8000000000001,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8c8ea4b1-0992-401b-bcb8-5c8f603fa65e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,854.8000000000001,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,11068526-f623-439c-999b-e839c009695c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,860.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3639e8ce-a26c-41f1-9f91-d59f13695eae +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,860.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,38655be0-5b7d-4680-8a44-8cd63e2fb670 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,860.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,31205fc1-1f3e-4634-8469-38b51c113518 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7611083984375,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d9679cf-cc70-4874-b786-f76eb862c4f2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7611083984375,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6981c559-e44f-4c87-8a8a-f6b1e7d0ea35 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.7611083984375,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,399c4be1-9c7e-4caa-a8f0-394339065cdf +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,855.6,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ad27243e-975e-43fa-8e2c-b3faa073d72b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,855.6,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8da8d3e-2630-4726-acff-252ec0d1282f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,855.6,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,64547d4f-34f4-41f4-8a7a-b8f81fb8d245 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,851.2,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c760d2d1-5f90-4d54-b553-b08df861226a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,851.2,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3960cae8-01ef-4d79-be9b-51e6cd414fca +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,851.2,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b41940ca-d3b8-4c6b-b6a1-97f5615f4c1a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,854.8000000000001,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,98797cfd-d1c9-47ec-a955-1dcff5131e0a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,854.8000000000001,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2459bf7-3df3-4c1b-a4a4-4b8a2f9c7463 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,854.8000000000001,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1506ccae-62e9-4c16-8857-dd58bdb11ad2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,860.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,15d40e65-446a-4cfa-9425-fb18e55bba40 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,860.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,371faf24-26f7-4b00-a752-0866eca72aed +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,860.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,163a88ef-4bd0-4229-aa4a-0bea249defa1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7611083984375,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,43ec90a8-04ce-4f75-a49a-198b89d49fc6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7611083984375,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0dd92aae-0c5b-40ad-a218-8c0f9ceb28bd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.7611083984375,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,8243a143-de58-4289-8626-5c74c3d75dcb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,855.6,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8d74a5ac-2663-4b58-b6a6-fe2b7286f46b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,855.6,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ab874c79-1e3e-4291-b95f-1ca794916125 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,855.6,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1a4aebc1-97a4-4784-b172-4a37a6e71c38 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,851.2,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b43aadc3-961c-428c-a2e7-a05e3100464b +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,851.2,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2524b99f-0be3-4b32-9cf8-bfafb23d6229 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,851.2,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,16440d1f-48d3-4555-8323-2868d3a4d448 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,854.8000000000001,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b40dfe74-0ab3-4092-bf86-6cc70a4156fb +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,854.8000000000001,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,83d4ab19-a058-4003-97b4-5c93a9bdcaef +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,854.8000000000001,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3c64dd84-d8bc-43a1-aef0-718ef818c964 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,860.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,78ab4c77-6ffb-4390-b58c-833c288ecee9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,860.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,904aaf24-2189-4a18-8893-c3a700380e20 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,860.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,74193f8f-1561-4018-940e-9f92c1a839ef +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7611083984375,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37dc9d45-cc26-4cd9-9bd3-1a2d8e4aa29a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7611083984375,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4bcf71d5-d69a-45a0-a36b-6d5fabe0c672 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.7611083984375,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:0.038055419921875, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,024b293a-a8b3-40e6-b159-211ea05f16a0 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,855.6,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a47c980-9b9d-440d-8e56-30d80fd2e7de +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,855.6,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b7ce3de9-7add-4750-8cf0-1071a89cc0d8 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,855.6,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ebf3f094-7d62-4f5e-8af7-70722ffe5ce9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,851.2,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b257db7-929e-4b9c-a6da-0d6fc46eb269 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,851.2,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,98ab4dfd-0998-42f5-8b50-491b4647b947 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,851.2,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b81eaff3-25ea-4e00-9300-52f38072dc70 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,854.8000000000001,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d60551d-daa1-403c-b3e3-76437e7357bc +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,854.8000000000001,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f191f6ac-8b06-46ed-a219-4ff33027275a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,854.8000000000001,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,174c434a-9b72-4d65-be6e-7c20d69b8549 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,614.0799999999999,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8fb7d1a4-3404-4df7-ab5d-b8347df025eb +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,614.0799999999999,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6afc6885-a4c4-4379-8714-9a3fc14a99da +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,614.0799999999999,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c6709481-759a-4f47-b542-55b4e628d548 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,0.635498046875,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1997db58-2e21-4ce0-bd8a-1313b47f1ea0 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,0.635498046875,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,51bec831-5be2-4a7b-b8b1-76c88889e879 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,0.635498046875,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,4bcac469-1f9a-4322-a5b0-827dab92fe21 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,614.0799999999999,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5e9f0147-2b59-4efd-b6ed-24657fab45d3 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,614.0799999999999,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c15c3372-3b4b-4fe1-9e75-c100943939cf +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,614.0799999999999,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b61c7082-04c6-4dc7-8e4d-b017414bb3d0 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,0.635498046875,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b1d1757d-8917-41e1-bc68-46c5825af9ef +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,0.635498046875,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,acd27be1-658d-4023-9c8d-bdb1c085411f +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,0.635498046875,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,724bb487-155f-4c4e-acac-5469d470c722 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,614.0799999999999,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,18d3b132-ecd7-4709-a2d4-372eea307aac +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,614.0799999999999,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8be85eac-b7c3-40a9-9ed8-2967c42bf23d +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,614.0799999999999,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8d23220f-5b26-4c9c-9d10-5bd9b2459770 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,0.635498046875,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,12116514-f190-42bd-89f4-916d9b6f5aa5 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,0.635498046875,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8a84a59-f711-4ae8-96ca-b847f780164d +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,0.635498046875,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,3007e6fe-84fb-4610-88aa-cbb423dddd8e +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,614.0799999999999,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3f25eb8b-f747-4345-a983-1c00d2f6227b +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,614.0799999999999,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c04f5a6e-520a-4369-984e-45ac3a241a36 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,614.0799999999999,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8f52225d-97bc-47c6-b759-3f9b2574e167 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,0.635498046875,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9a7e54e1-d26e-4273-bea6-ee69ab0394c0 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,0.635498046875,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d894d0a4-b7c5-44b1-a2b2-a175b068f881 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,0.635498046875,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,5f4857e4-6eb6-4508-b747-c5d107c0aa3b +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,614.0799999999999,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,408ee41e-eefe-42ba-b22d-d42b5a632554 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,614.0799999999999,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3698d28d-4f9a-419d-afa7-2a57c29ae535 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,614.0799999999999,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,597c4bfa-ffc9-49e3-9849-629f4fa34b5f +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,0.635498046875,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e7e572f6-995b-41b9-9255-0361db3e91cf +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,0.635498046875,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,72f7fdf1-7291-4955-909c-c2a1ff8367f2 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,0.635498046875,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,95c2906b-b126-4221-8da9-2e4f6ed3e772 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,614.0799999999999,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ffa726f2-7f39-4bd3-942c-cdbb25457376 +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,614.0799999999999,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed49acaa-8ff0-4181-9e61-5c31c0e73b4f +CO2,world,kg/kg,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,614.0799999999999,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,530c8eb5-dd85-44e6-b95f-e70f51046fb0 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,0.635498046875,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,07189235-5571-4b55-b8df-bd7e4a57ec09 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,0.635498046875,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,16cc663d-0bef-466c-acc9-f6e0dfb28afb +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,0.635498046875,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,98a33da2-332d-4702-a86a-7e5250ead2af +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c75e9415-66e7-43a6-8e97-b185288c8a93 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7d712778-a6ed-4ec5-9b66-4628943708c3 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,11ab92ed-a04f-4f07-be69-556c747d35ee +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,571939c6-d700-4907-a7c5-8faf47332914 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b037cdfc-e079-4f71-acb0-e2b90638a2b1 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,857ad801-131b-422f-9d8c-ce5e285d1b46 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a1955f99-9d09-4b9b-8e41-67c27bfcd732 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,85cf4909-70c5-4404-aeae-08154d9edef4 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5098583f-410b-4cc9-8889-aaa503c6c842 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,133b7c42-baac-400c-9b66-1d3e5c064357 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,08521761-fd76-4455-90db-f69de060e37a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,ac7da4bf-47e1-485d-a8d5-e16a431e7477 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5b10cb21-61e3-4b0a-a779-df2514c4f868 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,99543cb6-6510-45b4-969c-60ea1b12fabc +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0865b02b-26c5-4b58-ac2a-9cdff92f5ab9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4309994b-c7e9-4f61-b673-1c4b3c60e971 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2b13aa0e-a947-485d-a632-5b36b3531339 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,c6b2c59e-0684-4cf3-a828-1d7da22ae65b +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,768e7d4b-5fee-443c-93d9-dd506b235bf7 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac31285d-af0a-47b3-8b8e-cdb3259242fc +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cda3d353-8778-4f18-9e79-29bfb80c0a98 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e2ad1baa-ca84-468b-a323-4c3bb1a5085d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e1bf28e1-e43e-4b87-a68c-063c86c8f0a1 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,38c4919f-e5ab-497c-b124-cfeccc25226b +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b6d6cc4a-d6b5-47db-8365-ffa9eddbd772 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,54c8063f-4827-4829-85ef-796c4dab4c99 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c5527a07-badb-42e6-9513-3da4406d5eff +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,33f689bd-d26c-4b14-beab-47281359786a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f96e97ce-b447-4178-bf7c-d103ec33eded +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,02bc2250-aba0-4255-a6dc-cf572b7ce2e6 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b8325291-2ff3-4668-8718-8be23d90f289 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c3c8752-73f9-4a74-b858-30b0dee60dfe +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6242b7b9-28a4-4fcf-ba0f-d0e720629ab7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7487396e-a6dd-4c5e-abfe-ae6b930c2a5a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,56897cfc-2519-4ba3-9c72-eee3696a5ff1 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,9cdeff90-7341-418d-8094-8fc2a47addd4 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb58fd9e-b5aa-4a52-8b23-c6939457f96e +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,32fb579b-f117-4328-8191-0db3d0eb0124 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dde4d5af-2771-493c-bc31-51c6ec5bff6d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea8dc0b3-22c1-4f20-b34e-e5b86c3e757d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0aa3324f-a2f9-44bb-a83c-7e68ab01ac29 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,284ae4c5-225b-4229-986e-a786e2c373b3 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5b0ca6f9-7376-4cdb-b9f1-fea7e1ed34e7 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,238c0f2d-db6c-4556-b5d4-945bb229caa6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4ceec1b9-3d4e-4dbb-8ae7-3c82c34e6457 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2416f26-1665-4f55-b428-29ecedfa0ba3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,42433301-95e2-46b1-947e-f6189705884b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,5fb6c0d2-d3d5-40db-96d4-c6f24c45b0b6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8b6af23e-43bd-48aa-80b7-bfe2cce679bd +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d176135e-8300-444c-9eb0-57f30b4f1fbe +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d2443d55-fc3d-450e-8427-ea03dda7a4d7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72bf9a4c-9475-4425-bcc3-f22ce6145e95 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,151f0ee7-3c57-45d3-ac22-f1a2484a3b1c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,bade51ea-0bef-4e70-bfb3-7bd2a802ab60 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e8220736-9496-4233-b6ed-c70c39777dd2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dcf8dda0-ae69-4b09-bd8e-0bc05f511148 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5c8c2dec-5a12-44ad-8321-b2b2d23b7209 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b7997558-ffa0-4993-b2ff-89474ec61cb0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bbd17e32-04dc-4d8b-a327-eea1e27a69b6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,adacfccb-1b9f-42b6-a75d-9eb5203e85af +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8c5d5e4a-f7f3-49d8-a8d3-76422fa3dfd9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94685b5a-888c-43ad-9567-d25535df4772 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,159049f4-395a-48b5-8529-19cf6951baac +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,04b2aa97-5619-41c8-896b-b42bf6c9d815 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,401a6627-341d-43c6-b4c4-df00a7c1b56b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,40c61c06-2281-4660-8a1b-d2a765820bae +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,852.44,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b1fe86aa-4b75-4afa-a716-4943260a4c57 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,852.44,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,04c1f25d-00ea-4eaa-8caf-364143f60f1f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,852.44,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d5c4af9c-833e-4946-aa65-b1d422cb131b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.8821716308593751,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,be79f96b-d394-46c5-bba4-43a3cb0adc2f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.8821716308593751,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2b9c5653-bb6b-4244-b540-f23e7c7b5bb6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.8821716308593751,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:0.04180908203125, NCV_units:TJ/kl",,8ac51911-476e-3427-bb93-6057b733eee0,9b50d384-feca-49c7-b7a6-fa5325315efb +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,81f2f4f9-c541-4ce6-92f9-440172b9d9ab +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6eed30c-e61f-4b4d-98e4-4583bc5e243d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6b88ebe7-5f57-4fdd-9295-a6b4340af89a +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f5d42399-5faa-45a2-a9a2-cd9a79ead768 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f09b757-f0a0-4c8c-9ce9-e6a4a84876e8 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c1c18cf8-f603-443f-ae3b-1975f62ed6bd +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f5af0091-e984-4eb5-8c8e-f2bde7a4fcd4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6adcd253-2751-4a86-b9ac-6329a5b28573 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,e8929132-f9fc-47db-8133-58c09e01905a +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c30212b7-089a-49a2-9393-24c455d05335 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,28e166c9-c59a-44a6-8945-87a4fd912172 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f02fd20e-8bb3-4a5b-ad8b-a116a5c54d22 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ac6ab27f-bd66-4bdd-b08a-faf54c84c10f +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,975a5689-31da-4bbb-926a-fef24b34b678 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,22d8357c-3a9b-4bbf-b9f0-4e8a1fb33162 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,21036cc5-ab7c-43f3-b07a-adc57bce4b9a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bf509f6d-0ae8-459d-81c1-2689ed7a0c69 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,6bdb452d-bd8d-4834-9ce1-0988c9109f8f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,da1f5f87-0863-47df-87fd-7faf35c252ac +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,07e2f2b8-18ce-46dc-8070-fbae852f9ced +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7afbd0dc-3e79-49c9-a13b-cd7458a2303a +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7d7dec42-33da-4757-af2e-d25082cfd5fe +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a467167d-eeb6-452d-b671-faa50b954d36 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,14b72fba-4c9e-4091-a518-cee9260ac1bf +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cbd6e315-dfa4-4788-ab70-242c354a1831 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a48f6de9-2f53-4936-9113-1f4e3527ec56 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,ad272210-7e1e-4670-992f-61cba117ba2d +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b5c6228-5e98-46ba-b287-42abaa4107f8 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,658435f5-1adc-49db-9ce0-b599d2a6cd8f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e59a9b4e-f828-4c06-af9f-b2fff2c496da +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,324ca410-dbb5-4869-92f1-d2ef5c3a7bfb +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c631b11a-922d-4ea5-b256-cb5f786c716a +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,28fec717-2f06-45b9-b36d-eefb24fac3e0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f187fad2-122d-4d48-b4b3-78def106d961 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b4cf2e46-aabc-45b7-9280-65917a29ced4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,2c06b9dc-b360-4418-b812-23eca6397ec5 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ff6f9559-ac05-493b-98c0-14e0df8458d1 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,34c21ecb-63b6-4e17-9bfb-25bbf9b9f20f +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4ff1cfaf-29d6-4cb5-8f6c-2ab5111d96dd +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72d7a7df-5738-4471-a7af-024187578384 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c8eeae6-2f44-488b-b74c-7073e6ef4dfe +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6d82dc11-67c7-4e0a-86d5-97562a34c519 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9195bcc-325e-4a16-9511-986238a150b5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e4bcd3b9-68ec-4f9f-8e44-f3a4d2fc96f0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,13007ce1-30a1-433b-8211-e6a14e067673 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8f1288a8-4971-4c2a-b601-faa74ddcd69c +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,95d5443a-e4a2-420c-9396-4e7d08f9de81 +CO2,world,kg/kg,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4556ec79-f095-42f0-9c45-d86e14759dcc +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,936959cc-ef56-4c43-a1d9-ac8aa91aa8cf +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,15dc5158-03a7-461c-a565-5abc4c10d048 +CO2,world,kg/t,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,aa476e12-9ccb-4ccb-b05b-a6cf918e3c79 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1bdcc8f8-4a92-4baf-b145-17c2124d6e6d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,799b7eed-4d76-4ed6-a4f1-512d33d494ed +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,e45156a5-dd62-4771-a6f5-ce1f5b8b9c67 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,15da0ab7-b419-4dca-8b50-3a217f3a56a2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ef4cdd25-fa2b-4aec-9e3a-7f49bcf0db15 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a1a528d9-305d-4685-92d9-ec717f91589c +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2241f6a5-0187-4d69-90f4-1410fcb20ebc +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2fd85fb8-32ad-467f-927c-2fbc08f4b84e +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,9ae2c7ba-3585-4867-9ad9-6b3bc20608f8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,06270461-fdc3-4ed6-a056-4143f3a68816 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b067c47-bdaa-4c54-a968-655bb0abf69c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,efcc5d71-551e-4de5-8137-c9981a1bca3a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1ac62371-a81c-467c-b1f5-cecc21cf092c +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a7c308d6-d653-44c0-b3d0-6530794678a9 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,775a6174-0fd1-4514-a0c7-1ecba9a143ab +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72ee0532-8de8-43ac-8b31-1e4be5d2b264 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa01224e-b5d6-4cb3-917f-9aaac1000ce3 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2c38d369-68b1-41e4-b8ea-62906f3619df +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3acb11c3-9f17-4f56-9ec9-e042fcc61c4f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc191cad-7600-4ddf-820a-73ef6d2a0cc7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,b54690de-b1b6-4975-abd4-5cb708e9aecc +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6ee30286-2776-4f4f-8017-79a209665fd2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,93a9fdf3-d27e-4373-8a5e-750476780b71 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b3f560a1-7156-441c-826d-f084576b4525 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,51a7d40f-7231-4482-9b98-2c5fe7eab950 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,82971c1d-60b7-4f82-899a-0c31b5e85142 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e6b98d79-4dee-4354-9df7-035786f42b55 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,53298322-6770-428c-bbec-875d6f3e8a0c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d6214944-7fd7-476d-b87b-2ce0277b2373 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,f37126b8-8fc1-4c95-8725-627c32014383 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3301d694-3016-48dc-8181-1a0ce1afb77f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e36819f1-9580-41ed-8bc6-2ad1eca64703 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,57848198-178c-41ff-b00d-5d195015b4e8 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d4e0512-af23-4156-9ab3-ba36b06c9301 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ced411e6-823f-4909-9768-99c09c7074cc +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6f1ddf5e-7d8e-47c8-bb2d-7f04df5bdb7c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aa9aacc1-e855-41df-8bd1-ce9ae1e9cdcf +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0bc034c6-3fbe-43c1-8f50-238db98e2d6a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,f7ebed7c-f63b-4c80-bd23-d204c284cb5f +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6af16b5-39f7-4b79-ae20-b52e475037c6 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b30c1311-71f6-47b5-ac66-0812abbdcac8 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,68524a8f-d044-4480-a588-ea6ef78a38c0 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e4fbc06e-7a51-4950-9daf-068b5b906807 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,41a949e1-8e7e-479e-b29f-77d9b6d10a2d +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,96845855-034a-4618-a325-db9becf66f75 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,834fe3e3-0cdb-4aa7-bda2-06a77dd81e28 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ebd0aed0-1c46-4f65-92ca-55909694f6aa +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a5b13c85-c84b-45b3-821a-83000c4da35a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,affe4f06-d408-4145-89d4-1779365a90d2 +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6812d997-5a72-49a6-8e69-6371ca2e0a2a +CO2,world,kg/kg,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,731fc13a-aea5-4511-bb02-e6b30ccf7624 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f896a356-4a62-44c9-a7c8-42ee50318b31 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d01fba5b-574e-443d-a0a1-b974be70bbe5 +CO2,world,kg/t,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fcc522a2-40fc-4487-84cd-744c96fc88d9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ad10e441-f7b0-4473-9264-f19ad6b437e8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ed4ef9e-cb65-4a78-9dbf-259731dbd8d5 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,eb13a738-29e9-4de7-a6d3-87c68bd0a0bf +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2688ef2-4ef5-45c4-aa85-a71134c9bd19 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dd01f6fe-a6e6-41f4-9f50-4a06305e3084 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,50261b72-d7a1-4e79-91a1-f669dbc64d23 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6793687-0f1e-4bef-a07c-86d493efb8cf +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f9ecd8a-bf7c-48a3-8905-4d1aa01cefe7 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,38f6cd52-f29e-40a8-9705-3304beb7a41a +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0fc34029-4c78-436c-994e-f5d8a0c4a147 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6961b7ff-3564-4130-9019-dd17b3bce456 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,119966dc-afe6-4066-a211-1bb8cdf2658a +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0b716736-0622-42ce-b632-1bd792343291 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19ee8022-ee8a-4142-af37-70c19f8e51dd +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,da95304e-b770-4ecd-b026-820cafa92145 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,106168a6-1150-4630-976d-1e3cdd17c650 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d4608226-a7aa-4957-8f6b-a47810e0439e +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3b847b01-cae5-4af0-9e79-590e3cb5b632 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cf88d475-6709-4c0a-a08c-773d05ebe4c1 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,850a3358-6bb9-4793-8f26-680486b761e2 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,3798589f-adca-41be-a14b-b3054cc7875c +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed0fd6d8-db21-4d24-85da-dd2f8ffaf5ea +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7ce7b88d-ed31-4fc9-8b20-f75803834e9a +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c2a1b544-46f9-45f0-a5a9-fd06c7e6212f +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,00a8a080-023b-4ea2-85f0-9ec178e5a924 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20971580-22bb-4176-85b0-0a6d87886632 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2fad5a4a-545c-4a5d-a672-470ba86eea67 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,314b52d5-8e9b-42b2-91d4-89195a9f6770 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,206573e7-d7fc-4a06-98a9-1f8aa918ecb7 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,6728ff81-5d37-4331-b5ea-5815d0817046 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7d9d60cd-b3be-40b6-b9c9-14f7893a0066 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88a0759b-281c-4b1b-8588-f05000a05f03 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7d72bd06-770e-4800-93ec-551bcb21d6e2 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4433cb68-5340-48d2-8588-83b08ca0f1df +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7bf91c90-afc4-4f5c-ac77-0e50c0e12289 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d90a3bd1-163e-4818-8d82-2361b6f1b91b +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,744afb1f-76ed-4225-af10-ebeead583930 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ffdefd8d-cd55-48e5-b9d1-09e59c43503e +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,9e0bc126-605c-4a17-814a-13d807741e6a +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5f7545df-712c-448b-b192-e1f5186749cc +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b3303b4e-80ee-492d-a106-b861bbc54967 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3efa47f6-3e05-4d4f-9ec9-9044ba0b9385 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fc1315ae-86af-4ae1-9fb2-694f142144d6 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,202de087-731e-450c-9555-c4f4bd20491b +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,60201141-2271-4695-822e-1f7ac8b2d439 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,854fa4f2-bc8b-4658-b70f-229d975ac8bc +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,db31a710-a2e8-41c7-ad3a-a94e9a08afc9 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a65993b7-756d-4499-97f8-22f999bb9493 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,734.4000000000001,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd096619-faf9-4efd-b629-1d0bc9b590ce +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,734.4000000000001,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,78a0587a-3e31-48f2-a1a3-ce9ae4196e13 +CO2,world,kg/kg,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,734.4000000000001,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,03b0cb23-76b2-43a4-adb3-d2b74d9a52f4 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,833.544,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,65cb6cc6-c301-4a72-ad48-1107cb4a4708 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,833.544,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c7d98f64-2a2f-40ca-9b02-b556f67f3029 +CO2,world,kg/t,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,833.544,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,cd328c78-c46d-406d-928c-a61fedebcb08 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,0.0006228625774383545,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ccad60e6-75d0-4338-ba0f-19f6a942ab7c +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,0.0006228625774383545,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a98b6a56-6e0b-499d-8bb8-bf1bfd901377 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,0.0006228625774383545,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,efd4e327-eca0-4db6-b1ad-b485c63ce14d +CH4,world,kg/kg,,I.1.1,world,4680.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a9fd8d13-a631-44f4-aed8-b00a48710f19 +CH4,world,kg/kg,,I.1.1,world,4680.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b1beaa9-092e-425b-9e3e-474e6bac837b +CH4,world,kg/kg,,I.1.1,world,4680.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,962186c3-4e2a-4b34-8fb3-0ceaace1180c +CH4,world,kg/t,,I.1.1,world,5118.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f1465f00-d9a3-41b2-bf03-457b25cc3cd3 +CH4,world,kg/t,,I.1.1,world,5118.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4a68efa1-5c4f-4c95-923c-c36baa6035b9 +CH4,world,kg/t,,I.1.1,world,5118.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,65d4e5d6-f29a-459f-b320-c38b9c5cd065 +CH4,world,kg/kg,,I.2.1,world,4680.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5c838fda-1560-42fa-9634-96e79ceccf5b +CH4,world,kg/kg,,I.2.1,world,4680.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5400f139-b3f6-4aff-ae97-2b36288a384d +CH4,world,kg/kg,,I.2.1,world,4680.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,33a3d76a-f777-459e-a8e8-75b071901f5a +CH4,world,kg/t,,I.2.1,world,5118.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3dd4b197-93f3-4427-b8fd-23dbf42027e7 +CH4,world,kg/t,,I.2.1,world,5118.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a7a7ac73-0752-4d26-9079-c22449429934 +CH4,world,kg/t,,I.2.1,world,5118.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,cee5aa02-9a8a-4f35-b6f2-1501b9c07b5d +CH4,world,kg/kg,,I.3.1,world,4680.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,23c2c99d-e273-4cbf-8c7d-563333daa185 +CH4,world,kg/kg,,I.3.1,world,4680.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cd3c2e69-c238-4a3e-9cbb-d1308cd69429 +CH4,world,kg/kg,,I.3.1,world,4680.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f8d144c7-6a1a-43dc-ac29-def05f4727c9 +CH4,world,kg/t,,I.3.1,world,5118.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85c340b6-80fa-404e-a33f-0f3b7fbbd14d +CH4,world,kg/t,,I.3.1,world,5118.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fd1fcf06-72d8-4d3a-985b-31eb73772ca3 +CH4,world,kg/t,,I.3.1,world,5118.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,219e9fad-d1af-4449-a9e8-db2183ac6c6c +CH4,world,kg/kg,,I.4.1,world,4680.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5c56175c-d3eb-439d-a344-e8204e9db288 +CH4,world,kg/kg,,I.4.1,world,4680.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d0ec7162-2732-4c7a-acf0-07b0b5fa66ff +CH4,world,kg/kg,,I.4.1,world,4680.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ecd02394-ca9d-4732-9cb5-099312eb9164 +CH4,world,kg/t,,I.4.1,world,5118.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6cb4b50d-abd6-4ed1-8958-4c34d9d4b0e0 +CH4,world,kg/t,,I.4.1,world,5118.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,97698db0-541a-41f8-937c-96ec55cf5cba +CH4,world,kg/t,,I.4.1,world,5118.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2fd0429a-39cc-428b-b1e4-c831a357917c +CH4,world,kg/kg,,I.5.1,world,4680.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e72fe0aa-d7cc-41d8-bdd2-8f1ac8ec426f +CH4,world,kg/kg,,I.5.1,world,4680.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c4342ca-ab45-47f6-8441-d1164e5333f0 +CH4,world,kg/kg,,I.5.1,world,4680.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1da44c2e-5e60-48ad-a8d6-7b0a4c6b71d4 +CH4,world,kg/t,,I.5.1,world,5118.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8b711982-0c5c-4209-8158-e82ab9feb823 +CH4,world,kg/t,,I.5.1,world,5118.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,044a4b58-419f-4763-9133-dd707d72976d +CH4,world,kg/t,,I.5.1,world,5118.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,247185e5-65ae-430e-b102-b11571593fcd +CH4,world,kg/kg,,I.6.1,world,4680.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a15ea90c-b667-42bb-bdc8-8eb6d39d2b0a +CH4,world,kg/kg,,I.6.1,world,4680.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6b64c677-87ba-4629-b7a4-764176ec2c6b +CH4,world,kg/kg,,I.6.1,world,4680.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d8bf01b0-a973-47a6-b845-90b24b191611 +CH4,world,kg/t,,I.6.1,world,5118.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f617a456-0cba-4c7f-93a9-25f7c9a575ee +CH4,world,kg/t,,I.6.1,world,5118.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,01ec9616-0bb2-4a69-b6bd-01665d64a98d +CH4,world,kg/t,,I.6.1,world,5118.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,4fa87ecb-29f0-4d5e-a396-3f06313f1ab6 +CH4,world,kg/kg,,I.1.1,world,15600.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e7442e18-5931-474d-9cd5-06e29c6c8d6b +CH4,world,kg/kg,,I.1.1,world,15600.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3b0c8a44-05cf-43c2-840a-c16071de4ebc +CH4,world,kg/kg,,I.1.1,world,15600.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3c4eafba-0e89-4156-9152-cd1d2cfc17ae +CH4,world,kg/t,,I.1.1,world,17060.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,afe6aff0-04c8-4acf-82fb-5ac5466ca310 +CH4,world,kg/t,,I.1.1,world,17060.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc3f5a20-5993-4081-a383-c82d2363a9b4 +CH4,world,kg/t,,I.1.1,world,17060.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d7243513-b5e2-42a6-acdf-f69ae31be006 +CH4,world,kg/kg,,I.2.1,world,15600.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,22195e73-5af0-471d-98d9-e337cc4b92cf +CH4,world,kg/kg,,I.2.1,world,15600.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b92c159a-688a-4179-a940-25a14441e54a +CH4,world,kg/kg,,I.2.1,world,15600.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7784ad3d-5e6c-491a-8cb2-4c991a8df87e +CH4,world,kg/t,,I.2.1,world,17060.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,52c4d5f6-b555-4b7a-b118-f1798fcbe5a5 +CH4,world,kg/t,,I.2.1,world,17060.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d96a95ec-280c-4b5a-b7a1-9a90ccd3dc35 +CH4,world,kg/t,,I.2.1,world,17060.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f42c3757-294f-4bea-804c-218595caa124 +CH4,world,kg/kg,,I.3.1,world,15600.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37490893-9c46-49ea-8f7b-ffb2fca61e92 +CH4,world,kg/kg,,I.3.1,world,15600.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b4ebcfd-d84b-4ebb-81e5-14b4bbda28ee +CH4,world,kg/kg,,I.3.1,world,15600.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f730e197-bcc9-4dec-9e5d-e51f9d8c231b +CH4,world,kg/t,,I.3.1,world,17060.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5aecafbd-0553-43f3-8ce7-aa46d72b16c9 +CH4,world,kg/t,,I.3.1,world,17060.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cb76e2d3-e3fb-4882-ab4e-d0f8b2f11f32 +CH4,world,kg/t,,I.3.1,world,17060.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,865ce704-5224-4ef5-a9d6-900065db6c4c +CH4,world,kg/kg,,I.4.1,world,15600.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a40ac5ca-8b91-4e94-bfd0-a0eb6ef375e2 +CH4,world,kg/kg,,I.4.1,world,15600.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,89be39f3-c0eb-46cd-953b-834e42992fda +CH4,world,kg/kg,,I.4.1,world,15600.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,644bf178-c752-4ac7-90fd-4670833ee4c2 +CH4,world,kg/t,,I.4.1,world,17060.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,03a39604-4526-44c5-b369-035fd5a9b687 +CH4,world,kg/t,,I.4.1,world,17060.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,67dc1bab-5cac-431e-a01d-50f40062e072 +CH4,world,kg/t,,I.4.1,world,17060.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a4831d08-88f9-42ed-81da-abb81d24afb2 +CH4,world,kg/kg,,I.5.1,world,15600.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ad15f7bc-a993-45b1-831a-02f77d670728 +CH4,world,kg/kg,,I.5.1,world,15600.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e803c8fb-a913-4898-a155-0ab0f00c21dd +CH4,world,kg/kg,,I.5.1,world,15600.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2cdd7a21-e8a3-4378-a4e8-3de701283495 +CH4,world,kg/t,,I.5.1,world,17060.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ebb64204-46ef-4ff0-ae82-a9c2af5c0745 +CH4,world,kg/t,,I.5.1,world,17060.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88241f85-7564-4875-b93c-78ebee84be8d +CH4,world,kg/t,,I.5.1,world,17060.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c3614432-c6c3-4535-9d18-798926c5b0d3 +CH4,world,kg/kg,,I.6.1,world,15600.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,47805d7a-bc62-40e5-9f8c-a0f1e292351a +CH4,world,kg/kg,,I.6.1,world,15600.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f51f089c-585d-4b41-8cfc-1d3bbe3d6bf5 +CH4,world,kg/kg,,I.6.1,world,15600.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,01f7c5db-1c08-4d97-8b24-427313a9c998 +CH4,world,kg/t,,I.6.1,world,17060.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1a3c838f-54e0-4de6-bfa7-3304470090b9 +CH4,world,kg/t,,I.6.1,world,17060.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6990c241-17c1-4a8a-84a2-f18ff3a1c01d +CH4,world,kg/t,,I.6.1,world,17060.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:17.06, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,35ecdbf9-59c0-4328-860c-b90ee08dba05 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,775.665,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ec619770-29d8-4d0d-8a44-ab49c60dc66d +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,775.665,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,afe6a03f-5424-4a2e-b032-68854b9389e6 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,775.665,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2472fff0-0525-42b1-9fe3-6c614b472f10 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,0.0007415997982025146,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,60e4b064-a67e-44b5-8174-a1161d10b6ca +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,0.0007415997982025146,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ece867d2-1808-4b0e-bed3-410459990efa +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,0.0007415997982025146,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,3e849239-33b9-477b-9d6e-d5c0f2effe08 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,730.94282,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,27db1dd7-b81e-4a0e-bea0-5b433edf8318 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,730.94282,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aea7999c-235f-4554-a9d6-13c82ca6db97 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,730.94282,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7a920c23-584a-4970-b466-283de6032cef +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,775.665,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0e93974d-440c-47d8-a833-be0b7e415049 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,775.665,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0a666028-3979-4856-83ce-f70a7afdc2d5 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,775.665,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3a855a3d-f298-4e22-80b4-861f3a6b154a +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,0.0007415997982025146,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8f5aa77d-c4e3-4c69-8d81-ccb54b13bc6b +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,0.0007415997982025146,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae5c421d-6fb2-4acf-a669-6e33d9d0860d +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,0.0007415997982025146,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,41b0fd79-3f3b-4af3-ba17-1da1faffbb6c +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,730.94282,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b83f1d1a-309d-45d4-ad7e-ae9fda30b2f1 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,730.94282,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8965c9e3-d555-40b7-8f05-d6462dab45b4 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,730.94282,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b09bebc7-31da-4813-ab0e-d4dcf6ab1620 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,775.665,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dad8556c-6a9b-4ba4-bd69-9883ed049232 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,775.665,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2521ffd5-5aba-4698-812e-91f4499f83f6 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,775.665,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,faea8b68-a458-4683-83da-890d6eddc95e +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,0.0007415997982025146,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f0fcafad-9c98-4b9a-8dfb-3cd5b6a9aab2 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,0.0007415997982025146,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c55ef28d-add1-4afa-8e00-922ca0d9a5a8 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,0.0007415997982025146,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,0c4b1347-d2c9-42ec-8ced-5a93d13585fd +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,730.94282,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2767dec9-bd5b-4926-a57d-bdca53082637 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,730.94282,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1806d1f2-a300-4a88-8add-bd25f4f6685e +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,730.94282,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,149f41d1-0920-489b-8d98-3ae486f43b6f +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,775.665,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f0e3ffba-41ba-4059-bfc8-5215908bf362 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,775.665,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c615bebd-8fb3-41a1-871a-568d4bbc452b +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,775.665,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8ad71437-3892-4d06-9f02-02860e3da783 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,0.0007415997982025146,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,da1ac30e-65da-4f05-803b-915dfa444176 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,0.0007415997982025146,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,765005e2-a830-41ac-9c7b-c6681ff83fa6 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,0.0007415997982025146,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a5fecbde-f1e9-4d5b-931e-31bf4a2b0715 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,730.94282,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bc4be7b3-6169-4ad7-b4e4-ba9f54079ec8 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,730.94282,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8c8f7a09-9922-4410-9957-cd0bfa29f92a +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,730.94282,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3f2635f1-85aa-4546-8655-a48c0efe5b15 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,775.665,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d2aeba70-d82e-4fe8-81bc-83384e0746b2 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,775.665,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9dc744b0-d08d-4b3e-82f4-f3fc546c47f8 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,775.665,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a7ec49ab-7f6b-41dd-a238-22fd93db4a1d +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,0.0007415997982025146,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,558b1c81-92d2-4209-be51-1bc7758240db +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,0.0007415997982025146,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7e1e8254-ddfd-4b8f-b80c-6d8447acbe24 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,0.0007415997982025146,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,3c18c468-5761-4607-aefe-a564885d161a +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,730.94282,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3e73a5a5-ed63-4322-af18-1b311eb4cc1b +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,730.94282,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae093a36-881e-430d-92d4-d59ea970d1fe +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,730.94282,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,bed95c93-66f6-4a2c-840e-28fdaf57ce1a +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,775.665,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5016c30-228c-4251-91b0-0414de9c9ad0 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,775.665,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fff2f855-2d4a-4424-b0f8-fd1c75eabe70 +CO2,Denmark,kg/kg,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,775.665,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,148392f1-b482-4f83-8442-116f57256436 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,0.0007415997982025146,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cd04d899-0e70-4c31-855c-73ea325619d2 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,0.0007415997982025146,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8cc3a7b9-5bca-45a4-91fd-fa51803f952a +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,0.0007415997982025146,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,e6dd8ac7-e7bf-43ba-9e59-ddfddcfd8ac6 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,730.94282,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6f42dd0b-a41b-4800-876b-25787773a850 +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,730.94282,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b7bc48ea-eb68-4dda-a78e-8c59273e720b +CO2,Denmark,kg/t,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,730.94282,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8dba4f3c-b519-4870-8f44-0661cbea70cb +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,773.1899999999999,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,29398983-d762-4e5b-b108-99162e6630c2 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,773.1899999999999,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d69c0c32-305a-4105-8309-c4043fc41b86 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,773.1899999999999,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4f18fd3c-eb87-4acf-bdd6-1d13b338d734 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,0.0007392334938049316,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bf81f3b7-7dc5-444c-a981-2f77db83033a +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,0.0007392334938049316,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35a7ca3d-49ca-4ead-a607-4b28e08a50b2 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,0.0007392334938049316,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,d515f070-73b8-4ae6-816a-218369350124 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,728.61052,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5527999-a5d1-4052-8c8c-30880f7b3a35 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,728.61052,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d749e1bb-36ca-4ca4-bb7c-ad8cdc798a48 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,728.61052,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0cad4a7e-d978-4c86-a2ce-256425a82ef8 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,773.1899999999999,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,71c9eb92-d657-43f2-9ea8-0ca5d0580068 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,773.1899999999999,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,47d64681-612b-428b-9174-dd4fa98d111f +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,773.1899999999999,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cccd8e40-8789-4c7e-87f3-42d7b73379ad +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,0.0007392334938049316,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dc723d3d-5cee-4f1a-a080-129ba5f36aba +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,0.0007392334938049316,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0a9da634-9f19-4b7f-8fc1-ccf39aed9152 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,0.0007392334938049316,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,10f9aab7-6f6a-4b62-994c-8979278d09aa +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,728.61052,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,af93493d-6fa9-4294-8ad9-8f8b7b3d2bc2 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,728.61052,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba9c2877-7541-419c-8970-fa13834c22a3 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,728.61052,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,716fb613-59b2-4f9d-8ca6-6419b5319899 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,773.1899999999999,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ed5590e-6587-45ad-b0a9-70ada5a19bce +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,773.1899999999999,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,affbc44a-237f-4bc2-9299-35f39330b04b +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,773.1899999999999,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d29e4445-8612-467c-9781-60add2a398f4 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,0.0007392334938049316,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b309a6d0-9a12-4d33-958f-04807e55304c +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,0.0007392334938049316,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,526b5773-c325-41fd-aac7-acb8afaca0e4 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,0.0007392334938049316,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,60e0d14d-29fe-4ec3-b92c-2393cb4af64d +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,728.61052,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0386b36d-3eb4-4be5-be56-22f09cdfddbf +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,728.61052,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ddabb72a-1773-4886-aa4c-0e7dc9cb7adc +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,728.61052,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ca97dc8f-3bea-497c-b32d-eae7e921daf7 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,773.1899999999999,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,416077f2-ad08-44f4-81a0-b83e4978bd78 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,773.1899999999999,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,923db3f5-5e5e-4d7e-ab67-7917a69978c7 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,773.1899999999999,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3937e386-01ac-493d-989a-0773e015fc70 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,0.0007392334938049316,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8c7c5c13-6aab-46d7-883b-7dcc182c867b +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,0.0007392334938049316,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,18d7a3ea-3573-4793-9ab0-80e9cfb56486 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,0.0007392334938049316,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,079a0cd1-9a20-4426-9f68-3527438736ed +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,728.61052,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c14dba92-053d-412f-9870-b24b43d3d573 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,728.61052,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1feee014-819d-4f05-826b-fa3046f31f71 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,728.61052,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1e4be06b-0f46-47e1-b80a-5fff7fec3de2 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,773.1899999999999,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,132a36d4-4cdc-4b6b-9591-ccb8fd9e81f4 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,773.1899999999999,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,977b316b-c534-4372-aba6-5e79ddf848a9 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,773.1899999999999,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,12eb9077-4535-4634-824c-9d17fadc39a2 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,0.0007392334938049316,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f6e5d8a-b689-41c1-be9c-bfa0216689b5 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,0.0007392334938049316,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae3206b1-8257-4050-ac45-8bbcdd2bd6df +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,0.0007392334938049316,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,2506abca-23d0-48b9-bb76-5c9819ee1516 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,728.61052,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,43f574f5-abcb-4ae7-a123-b42482e90a36 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,728.61052,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,41e56d31-845c-4e9e-b1cf-61db47a4b4e1 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,728.61052,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,5e24e6e7-170e-4f14-ae05-b53a4939f7a1 +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,773.1899999999999,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fc999472-4873-4946-933d-5dc4fbad15af +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,773.1899999999999,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d66d229e-fbb1-4271-8c53-bbd8e7c3c32c +CO2,Greece,kg/kg,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,773.1899999999999,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2f34caa4-6c59-461f-85e1-0278bb9e2b74 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,0.0007392334938049316,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,98ade0a1-67b2-40f8-a998-62e72f91a2ed +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,0.0007392334938049316,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7585d3f1-3f80-4ea5-a6a1-44ccfe2c34a6 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,0.0007392334938049316,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:4.7326087951660156e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,a726afcd-994e-409b-acc9-7e1b136fae7b +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,728.61052,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,116a45db-8feb-427b-a6b5-885be2a27da4 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,728.61052,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e4d41058-5715-4df9-9285-2541c93fa9b8 +CO2,Greece,kg/t,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,728.61052,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:46.646, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2e8f464c-9b6e-489c-9cc0-ba50f8047307 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2639.802,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2c012cbf-2277-4ab6-8195-93b6f0fc8463 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2639.802,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,be36ed5b-c279-43f6-ba0e-23993340bda0 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2639.802,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,16abb596-3f23-47f9-8bb1-9049d7e25d17 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2263.4898,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2e54a2f3-1cce-4cd1-95b6-d6a85d93d30e +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2263.4898,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1867fda7-1a63-4aa8-b73c-725ee1b0907d +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2263.4898,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b3f91adb-952e-418d-99e3-0a2404e808b6 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2709.0734,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3cc80b4a-13d2-4cce-862c-ada7377c312a +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2709.0734,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,90d4a8f7-2fc9-4e38-a6ce-cf4f72ff33c2 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2709.0734,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0ad8d95e-07af-4ad1-bd48-266e5d02c108 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2667.8849999999998,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4c431165-7c00-4aad-9c02-e5ce12d22798 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2667.8849999999998,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,259bb9c8-898e-447c-8217-a9d8ab97c2db +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,2667.8849999999998,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8c485e54-127b-431b-916f-c0db20e54edf +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2639.802,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b705fa51-92d4-4db8-bc70-1cf2e7300aa1 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2639.802,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,236b56b3-c911-46b3-98df-1ca703818143 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2639.802,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b01ae30c-e0f5-4813-ba57-123a956f87dd +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2263.4898,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c66ada8c-5f39-4fab-b485-ddbe93ac6ae4 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2263.4898,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5f82cbc9-72d4-4638-bb49-3059f5910b41 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2263.4898,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c202556a-1b80-49cd-bfeb-f064dab01610 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2709.0734,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,de870e35-76a2-494b-8856-ceb286953658 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2709.0734,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c5ffbbcd-6ebb-419f-b1ea-81db7cf68cca +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2709.0734,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,eaa15ee5-e02f-4a64-aab6-bc5cdddfcf94 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2667.8849999999998,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,666ccf95-ced6-486d-ab7c-d4c43a4a794a +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2667.8849999999998,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa3c1031-a99b-4989-a9f2-08c42e65ad70 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,2667.8849999999998,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b8e25dfc-df18-4243-9e9e-f98a14d22d32 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2639.802,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dd526e1e-96b5-4d5f-99d7-967fd889e0f7 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2639.802,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b88c841-0c2f-4675-aba2-57c85a8bcec4 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2639.802,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,270dd743-431e-435f-b0cf-9460200ad49e +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2263.4898,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ffc28f19-569b-4b29-9e73-160ef34d6d80 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2263.4898,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4c8fd0c8-c07e-4c91-958c-984e4296a4d7 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2263.4898,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3cde02be-267a-4574-b770-1f2d0fee70e4 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2709.0734,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,994560c7-15e7-44b7-8149-4895fca8487a +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2709.0734,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49b44017-e555-46e1-9841-0f0ba752b91a +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2709.0734,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,cbf12a3a-cfe8-4284-bb7c-33897cada699 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2667.8849999999998,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f6ebd72d-6eab-4399-9226-4e7b76a494e9 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2667.8849999999998,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6cc824b-8dab-47d2-b89f-e6fbda5fdd22 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,2667.8849999999998,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1d61a7ee-5c5b-4835-b0b7-3f6347c1e223 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2639.802,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,018a75c0-e24e-4527-98c4-b1b243fe64b9 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2639.802,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c1536b3-ec33-495e-a026-964c2377bf0c +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2639.802,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1cd95e25-59e7-49c2-a226-c9585fccac69 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2263.4898,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,08937665-9ddc-4414-80c6-02c1c8389263 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2263.4898,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19dc8553-a852-4167-b910-4aa4608ea3a8 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2263.4898,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,64d8f385-623b-4eb6-8852-b326be2c59e1 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2709.0734,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d8696932-6ac0-462c-9e07-595c1c3eb001 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2709.0734,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,91db586b-e651-4a84-963e-f661d83880a1 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2709.0734,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f6c2fe89-d23c-4d57-8a6c-37954c1f88d6 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2667.8849999999998,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,47fc8284-29c3-4cf8-bb5b-d265b3c4dae2 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2667.8849999999998,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc1e027b-a406-411b-bfda-bb427f4713ea +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,2667.8849999999998,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c0754c67-919a-4ec9-b455-bc272c9705d1 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2639.802,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5f7fb54b-1c83-4240-a3cb-2cd58b96be4b +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2639.802,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3c97c416-93d2-42db-ade8-61b495fa9fb6 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2639.802,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,20df4d30-e884-493e-ac68-9ea6f8a6eca5 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2263.4898,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,40d7b256-c17f-42f2-8947-055011525cb0 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2263.4898,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c753a3a4-6344-457c-a518-32ccf0f9074b +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2263.4898,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,bc06a59a-8972-4e94-8102-3b4b0a35df60 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2709.0734,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,633613ac-d01f-47d6-bff3-a970d29dafe4 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2709.0734,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c4b6c2a-82ad-48d5-a070-e6210bc17a8e +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2709.0734,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f1e27788-852f-4427-82a1-e1dee5ed22c0 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2667.8849999999998,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,45445694-b2c0-493b-820d-4d0587eab4a3 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2667.8849999999998,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5bfe52b1-1c26-4d8e-b372-89f993e2d317 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,2667.8849999999998,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dc4ef8a7-7153-466f-aee1-b682208ffd1f +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2639.802,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9e6cebf6-12ae-4211-a78e-35a002fe8499 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2639.802,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6ec4515d-4ebc-491d-bdf5-9e5545a77825 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2639.802,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.2, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,69c68cb3-a80e-4fec-8da1-25390b61f616 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2263.4898,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eccd86a1-f5dd-408c-876d-d491d10b828e +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2263.4898,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1cad2426-53b7-443b-b22b-f331e01d4df8 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2263.4898,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:24.18, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,002e0b5e-3a0d-4edb-9dc3-3f38d9286db9 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2709.0734,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,78d47a83-d043-4308-b3b5-b941df2dbfe0 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2709.0734,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,370c6f58-7e16-4125-a61e-b2033645b1d3 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2709.0734,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.94, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,994892b3-57e9-46d5-ab58-17d9d044c0ac +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2667.8849999999998,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8925d5ec-ac2f-41d2-969f-17f45c6fd3e0 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2667.8849999999998,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3876cd0a-b900-4544-b6a0-a818d859d819 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,2667.8849999999998,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ee0571b4-e8a2-4848-ba7b-3d56b5943057 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1810.809,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e22a5cde-8ef2-426b-afa7-41fd7da1fdb4 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1810.809,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,af2be7d6-385d-4507-b24c-a73ac4ee69b0 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1810.809,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b26880c7-fd37-4015-aed9-c07b2655824a +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1880.7503,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0a961ef9-523e-4c5a-bc2d-3b7a86c18224 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1880.7503,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,54e03edd-794c-4a34-964c-ba8df9301dc1 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1880.7503,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b71b3c2d-2432-4680-9aa6-4dd767fef42d +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1791.647,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b79f8322-5876-4f9e-a2cf-3c92370abaf9 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1791.647,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0222e781-da5b-4993-9481-f31f37ad5721 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1791.647,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f197aa5d-8d1a-4cdb-8dec-462e559585f4 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1810.809,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd08a9bd-12ed-41e1-838f-7d5eaaf4b8e4 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1810.809,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e002e80-4082-4bdf-9302-549262fefdb0 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1810.809,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,99156406-cd8f-49b6-947a-cd90a7d93f69 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1880.7503,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c94762db-b5cc-4b7e-bad9-6141a347f061 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1880.7503,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,92f9f814-494b-4550-993f-d80f99debaba +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1880.7503,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1e08c786-14ab-49c2-b0a3-43484f3210c4 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1791.647,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,895861f6-b4fd-42d1-abbc-c076023de6a1 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1791.647,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,609a1ad2-72ea-41a0-a312-8841a73650d5 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1791.647,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5db99675-9719-447e-abb2-22f469c5448a +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1810.809,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4d3a38e3-4ff3-457e-96ec-8d353bcf59ba +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1810.809,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9e24a234-7f62-44b3-bf5c-5b6a7f9dcf6e +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1810.809,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cacf6d8e-6c04-4b65-be33-606e6f4759e0 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1880.7503,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1cfd74a2-ea8b-4af1-b546-e91c7b10ad7b +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1880.7503,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,162b5b2f-1aeb-45d1-9f69-37b3acbd5032 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1880.7503,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,aecaf0bc-2e1c-4d3c-8b76-8cf77bdaead8 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1791.647,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,35b7d07d-0917-47e8-bacf-9b4646cafa15 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1791.647,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3154f883-a4a2-4d41-83c5-9ae03e95add2 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1791.647,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,08160ecd-5805-4c43-9f7b-998cfb8baf6c +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1810.809,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2f04f18c-8e83-4e6c-863c-ec10d542d15c +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1810.809,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2b669c50-8f9b-4970-9372-6105afba1b14 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1810.809,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2fb641da-1b5e-420e-a6fd-df7c42f2436a +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1880.7503,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fff0043c-a861-49c5-af90-286dc5fad267 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1880.7503,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,954d2ada-17e0-4447-a35a-e7ccec80b13e +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1880.7503,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a93c8dc5-a5bf-4ee8-b288-1f9aa3e04430 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1791.647,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2c11a184-99d8-4f09-b3f9-6c0949c93c57 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1791.647,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e12e1f33-9df1-4ae5-a3e0-9d789253cf4e +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1791.647,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,740d81d2-81e7-4fed-8e48-938999ee1a22 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1810.809,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a9a29a36-7acd-49f6-a4f4-f6839f6959ce +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1810.809,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1a02796d-a7df-49f3-b473-98f36fd22d17 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1810.809,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,116b4def-065f-4ae6-936f-4c367c8a6702 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1880.7503,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,449f7cae-edda-43e7-b4f5-441f7cf4d5f6 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1880.7503,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dc636b9a-eea2-4363-950d-6554e6bcc79b +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1880.7503,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,edf27e46-dd6d-4b9b-b0d4-a297c8982205 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1791.647,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,460bb090-4278-4f42-ae8a-57301cb4a67f +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1791.647,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,43c680e0-47fc-4338-a92b-27986b67edf4 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1791.647,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2de6a1d0-1e38-4f3e-994a-e035572597e6 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1810.809,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6592b859-8a19-4bc7-bbaa-0c26cc4a59c6 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1810.809,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,61f46319-d021-4cc5-8890-62b9cdb91ae8 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1810.809,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e51daa11-82db-4350-81ce-c06d586e47d2 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1880.7503,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3bc4308d-30d1-403b-86b5-ab306cdd84b7 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1880.7503,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4c415e84-ce40-4f0e-b6b5-49b541e5ff61 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1880.7503,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:19.63, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,83296b4d-9416-4be8-a617-a36891953a82 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1791.647,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,02e098bd-5ea1-47de-9c12-a54ecc9a4ebb +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1791.647,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5eab51d1-9916-4823-aab1-e99681cd60b3 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1791.647,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3115c0b3-ba88-46f0-93bb-609fecf84cdd +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1267.469,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,52c0a221-cce8-4910-ab65-e22401b89886 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1267.469,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4c59f3bb-980b-4535-944f-fc3ae3f7b6ba +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1267.469,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,607ee4d0-ea23-4a61-819e-584473d4e52b +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1032.0819,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d73568ff-7df2-407d-a301-d34cd887c0d7 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1032.0819,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f5edbc97-ce59-48b7-80c8-ce165d1e4489 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1032.0819,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c1fbcfd2-35b6-425c-bf09-f4f83c9e5449 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1389.9555,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,183523bc-65b3-4bb6-afd4-405eb3d2ffe4 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1389.9555,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4eb46c79-04d1-48b7-bf0e-6f032db20359 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1389.9555,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,dcadf65a-d301-4e70-94dc-3725c0a8a223 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1576.3480000000002,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5c77dbf1-dd3b-4cab-9dc0-dec3948246ea +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1576.3480000000002,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f27f9942-c79b-4991-9e78-7ae371e1dadb +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.1.1,IN,1576.3480000000002,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,346a1183-f3b1-4021-a782-652cb05c2cfc +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1267.469,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f7d90fb-7b58-44a6-a384-94954948c601 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1267.469,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6ba26abd-3b87-41b2-8ee2-69d1f5e2862b +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1267.469,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dd65d61f-6776-45f1-b7be-458fcbd830f3 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1032.0819,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9fd60eb2-9ce9-4191-adda-bb8ab079e763 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1032.0819,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,395c7da9-ad77-4c29-b95e-b53edd83cd7f +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1032.0819,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f3edbbda-904b-4593-846a-bc9426997ea4 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1389.9555,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8c441ad-5a25-4264-b785-ff45a311d822 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1389.9555,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c08fece-a372-448c-97ee-ff655ac8b5aa +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1389.9555,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,da857003-42da-409a-a6fe-2de5b7610b14 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1576.3480000000002,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6264d537-28c6-447f-8914-15ea04387dc5 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1576.3480000000002,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c76435e1-4403-4e7f-ae0a-c6aecd715fce +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.2.1,IN,1576.3480000000002,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c0ea3741-dde2-45f8-9085-1fc81c54543e +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1267.469,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f6b82a65-6c7c-4e0e-9c5a-c386d02f310f +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1267.469,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8468fd2d-eae7-4754-9585-1aa105b51bff +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1267.469,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,060a89a3-b8f0-4730-b41b-d8d9141261fa +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1032.0819,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,985ac113-7125-4490-8ec5-63d5a25fd550 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1032.0819,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,094d2197-0eba-4fc7-a4a8-f114c720a660 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1032.0819,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3a1ba3a4-cc35-45bb-a1c6-01996831a2ee +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1389.9555,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bea1cea3-0469-4548-9f70-4bc537ba7d58 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1389.9555,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fff8419f-0527-4662-a310-86af152cf7d6 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1389.9555,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,f4c3249c-a94e-457a-8b51-8655d9241898 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1576.3480000000002,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,936ede8d-dab9-405d-a07b-a3fb24d21a1f +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1576.3480000000002,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f938e209-1826-4c96-8b5f-0970c26d6940 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.3.1,IN,1576.3480000000002,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9250098b-6ad1-4f6c-844e-e83eacf6bb2b +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1267.469,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2224dce4-53e6-450c-9ccf-26d1695be8fe +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1267.469,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ecdf7c4a-9b89-4232-b77d-8a23080ac1fc +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1267.469,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,971ed60c-35fc-4113-9d69-1c9a44ebe0bf +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1032.0819,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d790d6b-971e-49e3-b7e4-c12abbab5cfa +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1032.0819,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3791ef37-ed89-4011-9572-c6deb4c71130 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1032.0819,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,94e25a4c-3614-4b13-9154-60ef26589b3b +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1389.9555,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,113c726a-c08e-472b-b12c-0c5565bc183a +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1389.9555,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,89f6c29d-fdc3-41cf-9047-6b61834b14c4 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1389.9555,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c229971f-799a-4910-8fc9-5bec4e1432b0 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1576.3480000000002,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e729a9fc-88c9-432b-b8ef-2c95789d9f3a +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1576.3480000000002,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,99d74c4d-f8a5-486c-b395-ca24dee5bdee +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.4.1,IN,1576.3480000000002,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3125b023-1190-41f1-a5fb-6f18c6ef88da +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1267.469,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2698e152-f666-456e-b990-15942952470b +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1267.469,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e4538c6c-3b4a-4926-a2ca-7127dfef61f6 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1267.469,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,865cf1fb-bfd3-4a8d-8682-37f82119a760 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1032.0819,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ee48caf7-321c-4d35-9e8b-af08ccfa0f27 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1032.0819,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c63f3aeb-ea28-4dc1-b55c-f1fe0df05238 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1032.0819,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,aacba905-e9f9-491b-879b-c4897efbe305 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1389.9555,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cdec5341-8293-4484-9395-d46a9686a227 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1389.9555,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7e7a2333-46a2-470b-b7cc-84aa126d5c78 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1389.9555,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,935a6057-2291-4b12-9704-8516e3bd513e +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1576.3480000000002,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0550c9aa-9236-4761-87f1-1818aea0171c +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1576.3480000000002,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ae68328-c6ce-482b-8b50-cb6d1fb2c113 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.5.1,IN,1576.3480000000002,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,10c79d6f-1db3-4d27-996b-950fe69591f7 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1267.469,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,816e0a72-8cfa-48c7-93f0-ca9a1ede5198 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1267.469,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a9ef590-8b6b-468b-bc6b-13a8a621daa8 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1267.469,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,de352574-15ef-427d-9390-73a318f0962d +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1032.0819,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,be029f2f-fe97-4a9f-8720-e3cb2a2158da +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1032.0819,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e98bd00b-265b-42f7-b33f-1e592eceba1d +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1032.0819,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:9.69, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0a339fac-5e40-4b3a-b041-14b8ea46f0a4 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1389.9555,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f418392-c8c5-49c5-bc14-8a73267d1664 +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1389.9555,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca73de73-b80a-4084-bf4e-920d00d0232b +CO2,India,t/t,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1389.9555,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:13.05, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,52f27cd0-a3df-496e-ae9c-7c77990d5e27 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1576.3480000000002,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,82f853a1-9323-44c5-9cde-94362e538a98 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1576.3480000000002,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,869e0017-6cfa-46b0-b4f7-ce5e04d5bc65 +CO2,India,t/kg,"Choudhary, A., Roy, J., Biswas, S., Chakraborty, C. C. and Sen, K., 2004. Determination of carbon dioxide emission factors from coal combustion. In Climate Change and India: Uncertainty Reduction in Greenhouse Gas Inventory Estimates (eds Mitra, A. P., Sharma, S., Bhattacharya, S., Garg, A., Devotta, S. and Sen, K.). Universities Press, Hyderabad",I.6.1,IN,1576.3480000000002,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,568fc4d9-b057-44ca-97e7-eec9d9e48749 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aed6833d-15f0-4baf-8131-70e051f1ebe7 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,44872ac2-45a9-4c93-8efc-e40a041f7750 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f39f93c8-ad28-41b7-886b-e377258232a0 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a22ce04-374e-4332-976c-b272d1fe2c42 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,399592d3-6f17-40fe-8628-101eea9e8f63 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,14201e14-79e9-4a65-aa4b-1b6039274b43 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd89ebdd-804e-49f7-9417-91fbaa28aef6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9819e822-6dc9-4613-840b-2caa3e0a1b00 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7bb2dbd3-7344-48e9-b14a-4fd46bac26dc +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,724933b3-0523-4f72-a8e5-2a77c3613f88 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,468417a0-03fa-4cb8-b86e-dc60b3737e59 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2363487e-3558-41b3-8244-2ab0f8488e88 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c49f0730-835b-4a23-bcbe-f25efaa5948b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7ba96715-a9f6-4025-be3c-3f10ce2044a1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8bf36ca6-05d3-40e7-b233-c18c98eba2e9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97932007-1ba5-4009-98c6-ed2f561db6dd +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,75de8438-6641-411f-a940-ecb1c018a5bf +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cedbbe47-92f4-4282-a39e-bb5a0c4f0d8f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6fb272d8-efec-4b92-b58d-e9043f66badd +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7e074470-6be6-4f81-b316-678331126a3e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2ad8c731-ed63-4da6-8a3f-7c60dc158409 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,587132dd-4483-4a4d-8e66-9851059e7fe9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb9e6b12-f20f-4e71-8700-a5b2f021eda0 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,114f9a96-ff9e-4cc6-bcee-c77bcd02a4a4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd8fddc3-7876-4bf3-a634-276c2cb0b160 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eef00b46-a46b-4e44-9028-50295ce6c079 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ebc81053-e0d9-403b-baa1-f869e83cccbb +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5f93207c-7cbf-4b98-ab90-3189a52859f4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4807a464-b220-4823-aec7-84c5099cb686 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7bd78ecf-e524-4686-9d5b-a110fb44bf2b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2968ac88-86a1-46b4-9dea-6e01693445a0 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fe8216ee-246a-4565-8cb5-44e08fb1e8b9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,402fe99e-02b1-4ae1-b61a-0ef6c484c3e1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5a5e101c-d4c3-43a3-b361-e84c36057d40 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5cbf6f29-6908-4388-888d-1624708347ba +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,801cfe0a-a639-49d7-8f49-d86d6e998888 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,db4cfa72-1d93-456a-bcc5-f282587c2ce5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,053531fe-c419-4cef-8401-4dc070e6db06 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5fc0ed1a-94a4-4182-b374-c07f24688b9f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,09fb49da-8825-4c8c-871e-ae830d7ac506 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8da3117f-e6ef-46df-bcab-34ff6a99af56 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,17122c61-3807-4e28-a46e-77ce9b652e80 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9adebf6e-f313-4cff-94c1-2c9ae9eac9a5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e484d0f7-3b4f-48de-b00c-3bd36dead8aa +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,83b98c56-09fa-4a22-916c-68640c3f9aa3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32b35249-b5ea-4e83-9178-c49971a7664a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b3640f75-eaf1-48b8-84f0-bf60f16371e8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,df46be67-2b02-493d-89f0-d4ef14589f14 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d1106dee-5aa3-4fd8-89ae-1490f99a7ceb +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,98616175-1694-4052-9d87-543ce433f1cd +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,64b812ca-f444-47a6-b953-23cca2baf777 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a989d1b3-3595-48e0-99d3-0420a61eff97 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5186cadb-3c4a-40a6-9e97-f85685e204d2 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b4e59026-a16c-4c30-b68d-43a712c514f4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e075bcff-120a-485c-bf19-2c5db0abe5d8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ef6ff6e5-8f79-4d85-8d8c-29d075b4fa0f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,48764bc9-4f3e-44d1-a4a0-991f29b402f4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b8a9a9c9-ae77-4f73-b432-4c39b3ef8211 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc1e58ac-292b-4fe4-89ab-c7588e6657c9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5aaf1b5a-7083-4bd4-98b4-77b5b4dae2b3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e02e1809-2c7f-4f3a-b6cc-52b59b8cc8ce +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c66aa7bd-d011-4f36-b335-9fa03f7b1d47 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6948f535-4079-4d0e-96d7-0ba9520370ee +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bb7a6e78-f693-4c5b-967a-884ca109c44e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e5ae084-ca0a-431a-9b0f-412e73e30b90 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,47caa4a8-612d-4215-a99f-f1dc6d12040f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,faedbac6-237d-4a51-857c-75873f4fc88b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e7006803-d1a9-4194-ad13-b34971018845 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d985e9e6-1869-4f26-a06e-304f9248b385 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9bdef68d-37f5-4827-b038-d6f3ee9602c5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,04607053-fce5-4d4e-a8e2-618c9f6077c5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3f23a8bb-2649-4c9c-95c8-4fc85a94613d +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d0a202d-dc7a-46f4-a611-a0c3046dd0cc +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9f3b14cc-0181-4567-b661-38fde22b1402 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b2734cbb-53aa-440f-88de-e45009d2d33a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8bdb916-8a59-4335-9de2-a3f1817e0117 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f6052360-aae6-45fa-a962-1f4f746b6352 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,697d1e58-b333-4d60-96e7-833438baf007 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7bed7cdf-d694-435a-b627-e46a6cacb5a4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6334ccd3-500e-4775-b1d7-8801824e12ed +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1ed5133e-8937-4dc2-8691-01faa0f1c103 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,472056e8-5553-4fff-8573-b109a1dd4733 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2a77465-a0f6-4273-8cac-0f8fbc04c63f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fbe63a33-ff05-4e9b-945c-30fa716fb9ab +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,da0ba1c9-8460-4cc1-8c89-d200e73dcb9c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0d765e81-09ad-4851-a06f-dda297ddc31e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,78255256-9e3b-4813-978d-b21847569342 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,33404aab-ca33-430e-bd55-12c0c461fca5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f87545f-6c6d-4ba3-9edb-4b5089e22ba7 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1575844.8,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f1cfb473-24c6-433b-aac4-0324c5776e79 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,23cd7a33-af60-43cb-9b61-40ef13f9ad7f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b16a0379-9fc2-451c-9412-00cfae3deaa1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,094aac84-2ff9-4c42-8097-81248af439c2 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20d1f1d3-d06b-4284-ae2a-e87f8573ccf6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cab97dd7-e618-4bd2-ae0b-77905da5cd1e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e3baa05f-435b-4030-93f0-5238ac1ec0c3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1f014e10-c266-45af-aca7-74946e6432ae +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e890123f-d260-4eac-83ea-74f721c7d399 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e1668631-6246-455e-8c2f-3c3411b4b3c1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1bc41dee-9f71-4e2f-80b8-66c9cfb95f3a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,23236a65-484f-4fba-a2c6-f54f6186df0c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,daf15825-8b77-45b5-9bc0-a36505159774 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dbbcbb9a-6761-42ba-8ed1-fb7bdb24eb15 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8ed11bd0-3afe-43bc-b8f6-6e1122572b4f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c1638939-4ffb-44d0-a951-f5f638d41b42 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a772a69d-e9f6-49c9-8913-2593134d483f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8cd8bdba-5140-4868-805a-1f9e66ae8829 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,29801ff2-7f11-4b5d-9825-f5fe14ac104e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d346b8b2-abb5-4a19-aaa7-c9e42d725740 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,63b6d21e-a842-4238-a4ba-112c6267388a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,95574384-b65a-4cd9-8b3f-5b22615dc17c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,99ab3795-46f1-479c-9339-4d75aff56c1d +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4cfeff57-4cf8-4ee2-94a6-65069f3081a9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,de4059e8-4606-430d-8ec6-af3d4f6e2251 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0ae50ae7-e40e-4bec-8690-96aaa91ba476 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b4f134d8-3e77-4a0f-b5f7-aecfde59bd51 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3c358075-faea-43d4-ad01-7e2967835f31 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a133c2f8-2b66-4270-954f-e6cf4f7ad06a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eb0ac66e-a395-4121-a56a-a7ae1a7179e2 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4a2c2fd3-60a0-4149-9c25-14f54fc4f572 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e6b4e7f3-88de-44ae-944a-ac1e71e549da +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,896951da-16b0-4840-a14d-aaea66acc0b8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7c0e6553-6c9d-4758-b0c8-f15ad28eefb1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb67cdd5-ffd1-4e9a-96ee-9d6ea6d817c7 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3cfa0d76-3a9c-4acd-9a2b-420d9b6a9f96 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8bcabb31-746b-4027-a689-531c3ca019a1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7a9f0478-32de-4bd6-bb32-4092a8ebf548 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee14e48e-931b-4dfd-84e3-a1d06a5f929b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2681a8f0-e63a-4877-be69-dcaf5c7bf42b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,69b91344-eafb-484a-ab2a-17ec149f0cb7 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e2889855-5a46-4c8f-9c6d-cd37e2b3dee9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c58f960d-911c-479c-a34f-97bc4e6d9206 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5f15e3cb-fcfe-457c-ab95-bafd3a14cbf4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ffc28a83-491f-4f53-8dee-52c2edb85ff3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,aed86a3c-9af5-46c5-817e-df0f942aacab +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d030aa99-6ae0-496e-8251-ef7bcbb81fd8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,075a1a74-5637-4868-aac5-f7eb3c6bcd7a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,21d0903a-53e2-4921-85d2-4609062a6fea +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6f48465d-d515-4bb1-8eaa-931106e0586a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a108695-e331-4f16-8b77-1b02f2ebedbb +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2b5acbdf-de6c-4418-a0a7-d061c0937062 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,95d1bd22-ba73-4561-815d-2031d8ddd7ae +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,48e5854e-551e-4b5a-a7fb-3e41bbd9cbd3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,1880752.5,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8dcfec19-0da9-461a-9218-06fe8b8501f0 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62c2a0ff-14f2-4b5a-b0d8-ac08d9de5d51 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9d331420-982f-4dee-bb64-5009ff870497 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9ab53285-40f1-4d00-a54f-ec1367da9f49 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,538be49b-e105-4b16-a2d7-66bbbe0edd3c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,81efa617-1105-4616-8bc2-58a528e76670 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fb2b005d-1766-48d6-b63c-59afc41ad91a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e690979c-4413-4642-b2b1-e781fb4dfa1d +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8814b9ba-b95b-4e98-bff6-636ac2e4aa8d +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,72736164-4c58-4691-8c87-d202730de8a6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,938375a0-7530-48d3-a2c9-e18bb5706321 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fcfd4942-2af4-4b37-b459-352cb671c0e0 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1b17d11c-b6d5-47e0-b7a2-998827628f7f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4ed38f7b-fba2-44fa-8edf-59ed9d9e2d9f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e46ec2ca-0f15-4110-a42a-b35628321c21 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,18db2ffd-8ec5-437f-b97b-a441185c2274 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dc1eea76-b826-4c3a-a67c-d5cd95f80b6c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1497f257-c044-4bae-b0bb-38709940e6ff +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,897c318d-d1eb-40dc-ba62-1e797a881d79 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13c46afb-98eb-4ee4-b1fd-2f70e7520cb5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ad250df7-2b70-4f0b-a401-ee81d8edef67 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,33cc8347-9f2b-484e-bc10-f0c87e61ac2c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,57f848a6-69ef-4c81-8d45-95719c0b80a1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1625a06f-ff73-4326-a444-1e9af46960e5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a65266ac-5207-4b83-a7dd-ff8a6a90bb50 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3fb72f15-8aa6-48d4-8adb-64ac97c846b1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b5481f38-efca-43ec-91b5-609d7bdd6b57 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,26710281-516f-498e-949c-06ebfef2c8f9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f599f8d-bbc4-4c9e-9c63-9bcea904bd40 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1a8c3775-4d72-4296-8b1c-7ad2e3d00d3f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d5f73802-b4de-48f7-b7f5-7e4c0c4352e7 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5724450a-d1ea-421d-9a98-6e7bca77d7bb +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cfef4dfe-4020-4855-927d-6eae18a501b7 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bec964d6-e81b-405d-8dfc-ece1ec565b17 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8123acc6-f03b-4539-8a2c-40e4287c63be +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2011029-9913-427e-96cc-60ef2ea9f7aa +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,88348513-b822-4a7a-8875-42fbca0da3cb +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,24365ea8-e0b7-4338-a913-805d4b41787c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bb24bb53-ccfe-458a-b9c3-d17cfae88da5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,89853d85-7304-4812-b4b3-a01e5fc9be6c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd91f558-1675-45c7-8f5c-cb2d64e12b90 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cd8dec2b-b531-457c-8553-72fa272f2399 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b3a18687-b711-4d40-9b54-a442b6b2d173 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9a44503e-fd51-4197-848e-4d59978e9df1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5b828da-879d-417e-ba23-4220fe06270b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a22e45da-3190-47c9-9857-e1a85ac6d466 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3117a195-0e4d-4151-a2e4-803aa4285e58 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,840728b7-37d1-404d-99d9-5707326613aa +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5c6fce99-bbfd-4133-be6a-eec75485726e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a4f5e502-ad8c-4be6-b9d8-9d274c6d66ed +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6888e109-5aac-4990-a2b6-beb503e743c3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f376c76a-20e5-40cb-9bc8-51be9eb5f348 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0d2ca1fb-e489-4d36-b5bb-f8d137116694 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eca81e49-ae83-4233-a4ed-e053b21220b8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,616200a7-65e7-40ab-ba68-b0048e2fd9e9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,31a0fca5-b338-4c34-a8a9-484375d02c0e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fe01b947-9ce0-4124-9000-705bf256818b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,79cfe084-920d-41b5-8fe3-bfa6cd7ee7b1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4c0737e6-c8bf-491b-872c-07587ea2137c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,789cd519-aab8-4114-83c1-1e5ea9331eb2 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,857af3e7-ef56-43ef-b0cd-4db10b7c5d5f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,29f3475c-5f61-43f4-9145-32f73ae4670a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,854e27aa-a6d6-452f-bb1a-e3aaed1370b6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7ffeb439-304c-4e76-ad0b-9ed650bc5f8a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ebe5da98-2bd5-482c-a5d0-a5b05a4a9cdc +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6576545a-e711-41a6-b876-694046f4135a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,02e3d6bc-ebe1-4906-90ae-9b59f34dbebb +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3bd3c8b9-6ce9-408b-a0ca-2e4244291d3e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9e097460-a8b5-474f-9799-e2c81e66d373 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bb2c1e8f-f91c-453d-adbf-07357f102336 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1402e84c-aacf-4d4d-ba50-5f719adce47e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f5aa3f8b-f291-4c60-98ce-1af85e0313c5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,05157101-35bd-4b55-b886-955c6f9a087c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3bce9619-23c9-4502-a798-40875d499503 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0058a87a-655b-4cf7-a18d-e78cd5876c80 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,177212f2-2624-4161-9ae9-8894488688ce +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e20be723-9a98-417f-964f-b0722589cd4d +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,223ac45f-7063-4ae6-8176-640f2f3f1ef8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,958fe025-5d52-4384-885d-c875bf9e847f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,304f6fe7-b0b3-4e0a-a238-3eb3f7dfadbb +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5c9bacd-8fd5-4e32-9c6d-59d79e7ee552 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3e96fd1f-125c-40e5-a414-4f99ad6df40c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,356875b4-c433-4000-b928-ba5ae047db7c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,010b7d82-9430-4f03-80ed-64de64fcc85c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,aef0d4df-238b-49cf-95a5-a6f2d081f378 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,487f9190-1692-46c1-ba29-ec900c1022b1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9dcc9aea-3dd9-47a1-894c-9d93ac3da0e8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,82df507c-460f-452f-939a-7014f67304de +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,220aa038-ddd1-4722-8e11-28bb057ec6cf +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aaa91dfc-1658-49ea-991e-74325419387c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bffec590-9926-4eee-aebc-356b7899d6f7 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,45d43c83-4b53-4301-8f1c-844f05720a4b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cc85ee7f-57e6-46df-8ec1-4bb1a115776a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,79b49263-3fa1-473a-bfed-d8c78870c755 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7027689-31b6-4058-9cec-51bb1d1f6834 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,04ea065c-a441-48a5-9f5e-3dc501aee835 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3e8c25ab-7c86-4220-b8f2-06c2ea230145 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,864e35bc-83fb-44ee-b44b-07e4996076b3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac43460d-cc06-42ee-8e1e-ff635f6727a2 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c5a122e4-90fc-4dbf-a80c-d5404ed62e1f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d0107da1-caa8-4bf8-940f-16c87a038970 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d8e6127c-8209-4c20-b5bf-f9aa9232229e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,46def265-486b-4b4b-bc11-a92cab1aacf1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1109b266-f5d1-49c4-a204-b7c385112f1c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9437e774-1bf7-4553-bd89-c2ad2a3019d8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ce890d48-2782-47c0-8914-bb57c70e8d17 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f352af15-05ce-487f-9074-2257a2588f7d +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee39eb89-73d2-4c23-bdb5-b47c10fadde6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2282631.5,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,82ebe7f8-2db2-458a-9781-fce140197d28 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a1e464f8-ad82-4938-9ad0-b8f214c8cf5a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,047b1ce3-92be-4101-8a8c-b32ae899f808 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,932396d8-447b-4ed5-af37-2d3877a8692b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6ab430b-b382-412b-99ee-4eb8028c7079 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b657cb6a-2421-47d9-954d-3ddbaa3b90e3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ba3739b7-4e89-4e59-93a9-1f2112917a39 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ae4f72a-8fee-4ce6-9275-6a987417ee31 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,684332eb-6aff-44b3-a5b2-b9deabbcd81e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,14fe26b3-eaee-49bb-91cd-9b1785b81af4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,150bb3b8-3967-41d0-8a07-8a778921cac5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cb6cdfc5-3da6-429f-9850-08920f1a6c27 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8c648259-21d5-48b3-82f0-fcd5244410be +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6813ac2a-a62b-4253-918d-de893ebde6c4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e1ed4f3-a2e4-494e-b1aa-f81cb376aa48 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,68fbcdfa-e563-4d3d-9d25-1dd0e615be08 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d586087-4eeb-40c8-a12e-95a31fb704c9 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,345749a2-fdcc-42a5-9469-7edf1f941455 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3368d042-d41a-4e7e-b639-9bfb11d08a21 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3a6cde7d-4a37-4e6e-9011-4b4d52717f7e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2e7900b-f87e-4c45-807e-2e92c1e989e8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cc71bd97-4cb6-4d9c-be03-7e8de99996a6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3ae8b564-66d8-4906-a5c0-f89411bac9c1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88ab1e0d-3b56-41ef-9c92-07670e385352 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,169cf6d0-effd-4334-ad7e-8f477251ab0d +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea0727ff-f6b1-4deb-b0f4-d9a148c1ba57 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5eb04074-1aae-43ba-8708-80ca65434557 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0f3a65b3-c781-48c7-a66b-aeb5720bd054 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2360c7b3-7e47-42e3-90bd-c277afc854e5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2415dd56-aea3-407a-94f3-ba4e1b81fbaf +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ddcc6727-52b1-4a37-aa41-4875d137ca0e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,867835fb-2d57-4e5d-a2cc-ea4f00f163ca +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,90117f86-0563-43dd-b163-b60ac10cacd2 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b2e1edc5-5b94-4d2e-a53a-3cdf26bc2eee +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37529118-a27e-424c-b962-c147fee05ff8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4fd77a70-fecd-4f91-8715-899d2c4940c4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dbc73ad0-00f9-4ac2-acfd-f2bee5513698 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2bf8108a-97f9-46c3-91d3-8c8a13f7c3ce +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7d910e6c-27bc-48c0-b8df-14887fc2d450 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,31768918-1ffa-4dd4-baef-cf69e2bd05c3 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cd074017-8654-4320-8c4e-b6ad966f1424 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a4603628-564d-48d5-aaf1-0b61f6ddff9b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,599ef434-f33f-4d66-ace6-a1477281ad62 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5c737782-64dd-4979-8b2b-c48506750380 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,92bbaec0-5741-4bb7-822a-db1b550ace7f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,33853dcf-0881-48ec-947f-c456af842272 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aea28001-11c9-49f6-b46d-69b5d73343c0 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1a971b8e-f34c-47b5-a53e-22eea491ce96 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3a37e56e-aabc-4616-ae14-84bd880ce87c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b5a93e0a-c915-434e-973a-222f2d99907b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,61a50588-f7fe-490c-9c3a-325742bc1a4b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,16cb7f75-0f84-4227-9a1c-7c487791fc25 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c556712c-d3f7-43ec-9c91-22b658b417e8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0723195b-b6f6-40bb-be8f-bdaf8f781332 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,45bf6563-126c-45b3-b94d-8a7d0d129846 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,23a7912b-32a3-413c-870e-9aec3f0fb55f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,10217f1d-e3e3-4da9-aca6-da1938b196b6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fce03a67-f7e3-4d0f-9d40-87fcb0bda836 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13966d75-d2b5-408c-a67f-14c83105e792 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c4fcc08-7e08-4401-a794-3c0ee2ee31af +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,93f56d5b-763c-4033-bb91-040cda465a54 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85246c3b-af09-46c4-bd22-ce43515fe539 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cfef6797-32f6-43ea-a69e-9b5c7b608b37 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e3add856-10b8-4731-97a2-91f421740610 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cad27c9b-cc45-407a-b88e-a9ae613514e1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,41987ed1-55f4-4abf-bd8a-41715c221015 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4e1099f9-7b34-4028-8ee2-0b6b9ccb752f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cc53e55b-15b3-4413-9b6a-ddf5cea8531b +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3569a02f-7b1c-484f-b4c4-72a5c4409416 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,08787064-c90a-4c91-89cb-947654fbffb1 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b53558e7-6df1-47fe-9008-8026da90c217 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1ddf7849-1cc2-4a7e-a534-bf0e337f76e5 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f61b7fc3-9f44-4b89-8a0d-e4aee0eeecdc +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,195ac736-9ca0-45cc-9c37-2401df08f8ee +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,480896b5-c324-4082-8cd6-576c49083ab6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5b5483be-a8d8-4329-863a-a15c9ad12d6e +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2dfe2d81-bb21-498a-9fbc-2bfb8b607b33 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2fda8744-1643-4900-ad0f-317c5fff3038 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e1e79b8c-e1c2-48cd-bb61-4a89245248c8 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ce885078-da0a-45fd-86e4-6bfa9e2c2208 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,33355e9c-5d48-407e-8361-968c6d3d471d +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,60c5ccc6-64eb-46ff-9126-356f86506a8a +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,95ba5220-3e4d-452a-ad53-e248db343eef +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bf2d7bb9-e50d-4dc6-93e3-8f749ee42456 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6edc2dbf-2545-4923-9b74-5143f1301290 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d88d662-d4ca-48cb-b2bb-4916868216b4 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6c138141-f744-4286-bdee-affa2aa13b5c +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3bb1dc4e-e53d-4fe9-b47f-a52d856934ef +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,28cac243-d210-4db6-8cbe-6fc32ebb6ce6 +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c7a5a84e-f57a-4c31-b85a-71c2a42b6b0f +CO2,Indonesia,kg/kg,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2709267.0,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,415efdd7-e942-47da-a09a-7fe69d4a9301 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44b0763f-5c96-4c37-89a4-3f1b786406f2 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed709572-103c-4e50-a327-64e75ca63125 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b3bf84f5-3e56-415c-80b5-030e6ad498e3 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6ab8671e-45e5-49e5-93a7-e63522e3ecc7 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,42293ac8-0b65-4a8a-8a42-a1233a37d8ca +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c534c789-551c-490a-97a0-9c6d0c7fe723 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2965f021-248d-44e3-9d83-ccd76a9682f3 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f0ca7ec2-ee4e-41f6-9865-500273067210 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,507422e1-9efa-45f6-95a4-a97098841bb0 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b21b29ec-ff66-4756-8284-97e5da235fd8 +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,44f62856-be20-4ade-9341-e7f71b6669fc +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6400fe78-4dd3-43e5-be03-306c5383622f +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a05dd4aa-356b-4fd5-a996-7e5587a6197a +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,30729594-b9de-41ff-9686-458064edf13e +CO2,Mexico,kg/kg,,I.1.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4d77bb2a-920f-4ddb-8aff-691d790a5ad5 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3f4f7781-0443-49c3-a362-9c0027c8219a +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc9a546e-140b-45b5-84c4-bc9f23365e0a +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f9b847b2-3b7d-444d-b1d9-152d1b12b44a +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1417ec90-f63d-4366-9bf1-97b2994a8113 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7fe83d23-f5b7-4f8b-8aec-2039a52e71b8 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8cc1cd0b-260c-4ca5-8343-598aafcae55f +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ae357eed-917d-45ed-85c2-34814c62021c +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,efa4b38d-3cce-462c-b786-1948f818a1d8 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,aa819f20-05bf-4b7b-ad66-1fd169666485 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,311d57a6-43d6-4b03-8bcf-0f4a5e01f0a6 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2b06290-87b4-4ece-acbf-f3d4bb29b936 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7cbe4a2c-cf6a-435e-8d7b-8a96341f680b +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e66fca5f-8501-4edd-9093-675deaa44f59 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dfd281bd-2d92-4638-ad38-d032631b9498 +CO2,Mexico,kg/kg,,I.2.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,57a5ec2d-723e-4510-8022-7c8a4a56ae77 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,64c43fd5-2670-460f-9838-8ad47440ce6d +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1bdcd514-959f-46e6-bb46-e6ca368018cd +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,739262cb-8eff-4e9c-a32c-2a5af5f5e339 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,489d8533-e453-4d82-b9c3-e8a3ef5a9f00 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,36a2d6eb-577d-4fcb-98e0-664fa734adb9 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8749d90e-fd46-4e08-bb0f-6e784d9768d0 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5846c944-9eb7-4efd-bf49-1bc3b6966a96 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,22a8936f-5574-407c-a573-3b312abedfc3 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8d8a64b8-190b-4493-b9b9-61c60ebd0e85 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,54162d80-6b12-4b1a-9f18-a4a4248f5c27 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,09a5be1f-6927-401e-977f-9953850e0361 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,354d0922-97d1-42a7-bc0b-d28214a438f6 +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b357c70-d19f-47d7-ac6e-71e29fdcfe6e +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,68a997d7-ce3a-45b0-99f0-db47332cdc5d +CO2,Mexico,kg/kg,,I.3.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ed17390e-0ee7-4da0-aecb-8d102edf9456 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1fe844dc-c55b-4a51-9838-e593c3b38af0 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,09956c1a-8024-4c73-8663-458a42fc6fd8 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,50c5a911-004e-4d5a-9c3c-9010fc4b3856 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ff25fa71-6db8-4212-97ee-8fa1265a2607 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,14202930-1a87-4cb5-95b8-84b10516d3c0 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fec3c3dd-adf2-4fba-bfd3-976ff4282143 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c116b557-b083-42c4-828e-9e00a9e56481 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc44334b-6c30-4e33-a9ee-65ffc68fb0ab +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,85e4a3cd-116a-46b5-b3e4-fc9fd26e701f +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d44c1a9-3934-45eb-b1de-060489fb3b20 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed442c1e-8194-4f45-bb80-7eb8fdd627d3 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,05667b03-2e28-4b85-b791-99e74cfe5b9e +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d3731559-7114-438d-b60b-d3f0bb43ca87 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c73b080a-5492-4868-8042-a49eb069bb16 +CO2,Mexico,kg/kg,,I.4.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,14faa724-a11c-4534-9142-2f38bb9deed0 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,072a8b27-681d-45a5-b331-3a089a500e20 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3d67800f-2e09-49f5-ac4f-7b17ea4af34f +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e46d7f31-f40a-4c33-a7d0-2fe0a3db6433 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3b62adac-80d3-46a5-8df1-0b3a5d6e0200 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7e4c085c-2920-4432-abdd-e0704c81e4f3 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d87d227b-4566-41cd-8bc0-ce4b8b4e1a0a +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fa5bb924-32db-4fdc-b83b-fbadd88fefc4 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,286f56f4-ea6c-404e-bf19-8c8e400fc3a0 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,be13ceb3-653d-433f-971c-ca735e35be5b +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b34320a3-89b8-4fc3-bec7-7e52ff936f75 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,06ea2a6a-851b-4338-807f-a1f6c185014d +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,627e846d-f2a0-43c2-a1a2-2e4409de61b9 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f3f40f02-3dfe-4e6d-8eb4-04f958ccd1e0 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27b8c22d-4c55-40e0-a6ef-4f0a5c5e0329 +CO2,Mexico,kg/kg,,I.5.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ef5ebcd9-997e-4f45-8f3d-3d9403148f2c +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd86dd6b-b5d9-4657-870c-08ae242d59be +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,588b9d98-b321-4d1e-99b3-e7f15f28fec2 +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e656a4e4-054c-4a81-b99f-02a27c8ee544 +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,18b90ab3-57d5-4202-9449-70452c46f315 +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee65c7c3-5916-4a9b-a27e-39f23bae4df9 +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b2530320-2275-47ff-a1b7-f90b6a4d6a5e +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fd40183d-5287-4ee8-a6f0-923aecc2307d +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9957e47a-c3f9-4410-a5ba-586ff1b82037 +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8e694e52-c99b-4860-b37e-e8aecac5a04a +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9626c4d7-e010-4a33-9e7f-fbfa0e999f3b +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed8061e2-7b7d-464f-bff6-924504acf451 +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,66d93095-b5d7-4334-b054-b3dbb83d6602 +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c026ed43-a578-429c-8338-c305d8d9b31e +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5b468250-945a-4126-a7ca-096ec3480d61 +CO2,Mexico,kg/kg,,I.6.1,MX,2734625.1392,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e2d6a4d9-f72e-42d6-b64b-d41479a087bc +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8c1f4ce-a8c6-4b53-b3d5-f4c915b4ec70 +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7d55b70b-8e49-4274-8321-b15d704c5ce0 +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f4aaf51b-69ce-4998-b3dd-18fd91cbde9e +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d11d6e4c-9903-4329-8f62-18b1cd23d875 +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,34cccff8-1359-44b3-a9c3-2e3894e4a46d +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,909abd59-d2e6-4b00-8092-d431ee3f315c +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c9198f25-8d33-48bb-bdae-2178be7bf882 +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9a75adeb-22cf-4984-8fb8-04f2b020712d +CO2,Mexico,kg/kg,,I.1.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9e230b78-4510-48cb-a7f6-c6c290329704 +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62f8cd0a-e498-4db4-8a66-0880c6a7b456 +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8edb9ff8-b7f9-4581-84bb-92c8e7c3d1ae +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2fac3eae-acf9-426c-a403-d22e40af3a09 +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f4089afc-5713-46d8-aba2-e5316e91f48f +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d081219b-545d-43ec-8b3c-3aabf9e3c2f5 +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7b1f3100-b1cf-42b1-9359-040ad2871fd7 +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,84deceed-ec73-428f-9b00-6eef9f1492c0 +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c5af500a-b116-43e5-97f2-f8cb3b72b7e4 +CO2,Mexico,kg/kg,,I.2.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b8cac484-b97f-4292-b2fd-38edf04fdc37 +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ca5a6ff-b0ca-4cef-a83b-f804c06da116 +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cd55e291-c365-457d-ac7c-3d9a35faae3b +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bdf38c24-b06f-4fb8-8119-86cf537b545c +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd457de7-0a08-4ca7-b84c-973ed5818cc4 +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d39724bb-05dd-406d-9249-9f81c922f2c9 +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0bb04e75-c030-422e-9aef-79e1fb2a641c +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8d04883f-e3af-48de-9161-b69ccd36b68f +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,604d7884-b154-4668-8626-2735f55c2a7c +CO2,Mexico,kg/kg,,I.3.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0b237bde-ce64-4d20-b920-271181a0eaee +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aacfc218-e905-4cd0-be52-37fe97921820 +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b827ba84-d187-46f7-9189-01167fa987e8 +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9d7eca4a-1e2b-4aa6-adb3-df809d801faa +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,408f0f3d-1063-4b0d-a835-f756838d04f2 +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e9bb31b2-8b5b-4dd3-a64d-8101283afc11 +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,58ccbbb4-9950-455f-9ed5-77d3ce719671 +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5f7a354-d93e-4135-a82e-2e78a344f350 +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,67a5971d-7539-45a5-9abd-043258bbd753 +CO2,Mexico,kg/kg,,I.4.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4f52373b-7b15-47e8-ad1c-6ae9fae64479 +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,afe3dcaa-f310-4fc7-8bc0-2d172f21bf27 +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bee0af59-d11b-49e9-8c18-765acff4f7a9 +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3b6d665e-1db5-4681-b306-8aad6bd673d7 +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b45ad68-6ac1-42d1-b1b4-040a647a3ccc +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0ef4001a-f294-48b4-b06a-1dc765ec4c03 +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,894d4efe-8069-4f6a-9640-cff1a1aa3e98 +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fffe10bd-1446-4dfc-a86a-a90ddac5cec2 +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,48201ce8-cf9f-46ee-a228-bf51a7695fc4 +CO2,Mexico,kg/kg,,I.5.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4f529d49-1da9-4aef-90a0-f11ad744165f +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2bc7f87e-14d4-4eb4-8ef8-87c1546c3b5e +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7b7cc8e8-095d-4c12-a394-931cc10b8f87 +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cdeac3e8-a940-40cf-bcf9-6a70ca0ffcfa +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,420325a3-e7c2-4364-be71-c0eeee624898 +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,934c920c-af1e-4673-9284-ade32f5d44ba +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f353d47c-9bbb-4953-8f07-3dc11e28725b +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b225ce99-0624-4e28-8ff8-2ae8a73923e8 +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,91b1398f-832c-45d9-8b75-354c06ae24cc +CO2,Mexico,kg/kg,,I.6.1,MX,2775021.6132,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e0a7ff00-cd30-439c-b62c-ab9da7e0305e +CO2,Mexico,kg/kg,,I.1.1,MX,3071176.6346,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d1176616-b899-4348-991f-04b390970f46 +CO2,Mexico,kg/kg,,I.1.1,MX,3071176.6346,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,18dfffec-254f-45f3-ab70-c9336ec8184d +CO2,Mexico,kg/kg,,I.1.1,MX,3071176.6346,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,40fb20fb-7376-4243-aaf0-630313119c51 +CO2,Mexico,kg/kg,,I.2.1,MX,3071176.6346,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,efc8f67f-17cd-412a-aef6-6bc361c349c2 +CO2,Mexico,kg/kg,,I.2.1,MX,3071176.6346,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ff64e75b-3b9f-4000-a9e6-f09d76d4d5af +CO2,Mexico,kg/kg,,I.2.1,MX,3071176.6346,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a2e79d0e-2153-4e28-82a7-62b2060a6bc7 +CO2,Mexico,kg/kg,,I.3.1,MX,3071176.6346,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4d16a2a2-c9e1-48f3-95e8-3aaf4f0c033f +CO2,Mexico,kg/kg,,I.3.1,MX,3071176.6346,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7639058e-4976-4cf4-a03b-2f494e2ba28b +CO2,Mexico,kg/kg,,I.3.1,MX,3071176.6346,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1abe3217-f795-4002-87be-91cc26433d1c +CO2,Mexico,kg/kg,,I.4.1,MX,3071176.6346,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e231ba6-ec4d-4b41-b3ea-ba5d3a521ff1 +CO2,Mexico,kg/kg,,I.4.1,MX,3071176.6346,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8863fff9-3373-47f0-afab-1baa92ad8c14 +CO2,Mexico,kg/kg,,I.4.1,MX,3071176.6346,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f7f7acb7-3e99-40df-a7dc-0374618c69f5 +CO2,Mexico,kg/kg,,I.5.1,MX,3071176.6346,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0119fa1e-0073-47a8-8892-5af6d26589f0 +CO2,Mexico,kg/kg,,I.5.1,MX,3071176.6346,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,90378fcd-a608-4b5b-b6b0-453c706cc523 +CO2,Mexico,kg/kg,,I.5.1,MX,3071176.6346,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3e052f55-810a-40c3-aa60-44eefd9ec851 +CO2,Mexico,kg/kg,,I.6.1,MX,3071176.6346,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,418ee344-a872-4f3a-8269-7f81bc6be9e4 +CO2,Mexico,kg/kg,,I.6.1,MX,3071176.6346,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e09a3907-cc48-4641-af16-a09ebe46c7a5 +CO2,Mexico,kg/kg,,I.6.1,MX,3071176.6346,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dc2f0eec-a41b-49ea-8262-f13cf315fcd2 +CO2,Mexico,kg/kg,,I.1.1,MX,3266693.0667,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3ed840ef-9752-4b32-9c1f-f8740a8937df +CO2,Mexico,kg/kg,,I.1.1,MX,3266693.0667,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fab45148-6766-45c0-a435-bf963d8c5599 +CO2,Mexico,kg/kg,,I.1.1,MX,3266693.0667,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,647dbdf3-d2c5-4879-8125-c0e911117a5a +CO2,Mexico,kg/kg,,I.2.1,MX,3266693.0667,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ac5d03c9-6c60-40fb-9eaa-72f00650d93c +CO2,Mexico,kg/kg,,I.2.1,MX,3266693.0667,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7943f475-a06b-48e2-b830-448325b5afbb +CO2,Mexico,kg/kg,,I.2.1,MX,3266693.0667,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,702b686e-7acf-4257-a6b5-3b4fccab6b55 +CO2,Mexico,kg/kg,,I.3.1,MX,3266693.0667,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8be0e272-b074-4db5-b9f3-3597d513b271 +CO2,Mexico,kg/kg,,I.3.1,MX,3266693.0667,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,075a7c8b-93a3-4d3b-902f-079c34157b0f +CO2,Mexico,kg/kg,,I.3.1,MX,3266693.0667,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4ed09a42-c36b-40f1-9e26-004e7fed40b9 +CO2,Mexico,kg/kg,,I.4.1,MX,3266693.0667,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ab3e0747-d475-46ca-a848-228e6f4cff7b +CO2,Mexico,kg/kg,,I.4.1,MX,3266693.0667,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ad6f4c53-700d-4479-b58c-eac5b180f0c2 +CO2,Mexico,kg/kg,,I.4.1,MX,3266693.0667,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ed872545-d5d0-458c-b903-2479e50d2d3e +CO2,Mexico,kg/kg,,I.5.1,MX,3266693.0667,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5f5f6a25-74cc-415b-bd8e-938f1c544b11 +CO2,Mexico,kg/kg,,I.5.1,MX,3266693.0667,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9afe7063-f868-4af2-980a-c12ef18710d4 +CO2,Mexico,kg/kg,,I.5.1,MX,3266693.0667,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2da2b3b2-e9e7-49f8-ac44-dd2eaac43e70 +CO2,Mexico,kg/kg,,I.6.1,MX,3266693.0667,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2a69c6ea-6e8d-460d-a9b1-c12072ef5211 +CO2,Mexico,kg/kg,,I.6.1,MX,3266693.0667,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d1f24eb6-2ad5-4912-864c-0a904326a24f +CO2,Mexico,kg/kg,,I.6.1,MX,3266693.0667,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,76357c1f-8d0b-414c-af97-35ad24d64b17 +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,06ada361-49d4-40a5-a09d-0a6f066fdf74 +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a709fda-547d-44bc-8c81-149ab3a32b81 +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,83c807ac-ba52-4573-8e01-cbefb3a40cea +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0c01c1b2-2d5d-44e7-b300-f004e69236f6 +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,30b8d6b4-46b9-4a2b-87da-cabe322c9420 +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b5771c71-76bc-48c8-bbca-cb5896fd9512 +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2922f98f-5a16-4b4e-86af-cac3e5fe53f5 +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d56bdd8a-06d5-466a-83f3-e56db2b8a0f7 +CO2,Mexico,kg/kg,,I.1.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,edb5a4f5-e847-406b-8f53-ffbc56f2fad5 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,79d63751-bc9d-4eef-acb2-f40ad8c0b7c7 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,65af1f36-6893-49a5-b426-580a84159325 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,007cb44a-a466-4ba3-8da6-5a008fdb5a59 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aeeda7c8-11d4-4959-81be-760f47402be7 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,528cc186-e9b4-45b1-8ac7-3e24ecbc30a0 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,09bc9aed-1c5c-45a1-a959-95e18c0f9999 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a0127ef8-c83c-4f67-9529-57f8bf9de1a4 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b82cd57-6f66-4bf4-8542-2c0f443fba42 +CO2,Mexico,kg/kg,,I.2.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1bc1245a-36e1-4b68-be1f-a753da88ae62 +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e2ea855f-e01f-4540-bdd0-d044227138b6 +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a059897-2575-4a49-a1d4-8bf85774e558 +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c37e16fb-a06b-4b9f-b572-4389c7996421 +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5362841d-002d-4f02-9178-603a521e0afd +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2d2a9434-0d52-4070-94ac-5e7f3a02a6af +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9f4825e8-d4b3-4379-a644-04a2d204ae38 +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,33c6ace9-4ec1-45a8-a5b9-514038ef3fe8 +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b0047820-87ed-462c-84cc-4297167fda54 +CO2,Mexico,kg/kg,,I.3.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,784f40da-27ba-4e66-b773-4843d188bef4 +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4fcc2276-0e79-4470-883b-8ef7fcfab233 +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5cd520fb-935d-4e7a-a6ac-b5141af8ba72 +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4060d852-9d59-4fb4-8a5e-5a8eedaa1fb3 +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,122a5caf-948d-4271-9a94-3aa4c7444bc6 +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7496854-c098-47a0-ad04-12b4897f0633 +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cd2949c8-349a-45c1-8273-436b26fb04b5 +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a3e6ae0e-3a96-4036-97f3-7dac92f6629f +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0daaecce-4619-47a4-9a75-16abbf481485 +CO2,Mexico,kg/kg,,I.4.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,42eb3a57-5303-44d0-b3f2-0604b2432752 +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37fcd465-200f-425b-a42e-437c195f1e67 +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f94b4967-44ce-4239-a78e-2502a03fe71f +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5ae25da8-d0d6-430e-9005-057c97103f23 +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fb90cb37-6953-4cfe-a508-5de5a5ac5bbb +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,131072f6-9364-4452-973f-8f2285804b78 +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fe5b8744-a9d5-48e2-a1d3-e9f67293be99 +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e66a3e5d-33ac-4b6c-ba5a-79094e6fdcd0 +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5e6cc6d-f287-4133-8542-31828c9cf80c +CO2,Mexico,kg/kg,,I.5.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,aa6e01a6-2950-4622-b2c8-f4272d341b75 +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f8de99ab-f508-4278-aa04-01f60fff256c +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49eb0d5f-db06-4f3d-92cb-01dea40f4f69 +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,44e917f2-09a6-4c2f-b2f6-c6ea817e3d8e +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f5fd330b-4a3e-4e71-81f1-e2ebcc1f5d31 +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2512d7c4-af7e-4cbf-9fad-ae628bd09f03 +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8f7fcac1-565e-4cfd-aca1-6bdd97cb8c26 +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9eb6ead5-f964-422e-b39d-f0167d1bf65c +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c26860a8-4465-4e98-a71a-750c59467cf3 +CO2,Mexico,kg/kg,,I.6.1,MX,3145173.5462,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6e772835-5ea8-48c1-b3a0-4349feb793f9 +CO2,Mexico,kg/kg,,I.1.1,MX,3203345.691,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b2dcd44-8885-4816-96b5-b37101d81451 +CO2,Mexico,kg/kg,,I.1.1,MX,3203345.691,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bf5e119a-e3b6-488a-9781-dda8e9e2408d +CO2,Mexico,kg/kg,,I.1.1,MX,3203345.691,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b20253c0-f83c-400e-ae73-26a306b59ed6 +CO2,Mexico,kg/kg,,I.2.1,MX,3203345.691,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,01693d5f-4b1c-4afb-a30d-07776221d3ca +CO2,Mexico,kg/kg,,I.2.1,MX,3203345.691,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a21d0870-103a-459f-b2f8-feea104b9e21 +CO2,Mexico,kg/kg,,I.2.1,MX,3203345.691,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cd4e2246-0841-46e3-b7f3-97d1181aa011 +CO2,Mexico,kg/kg,,I.3.1,MX,3203345.691,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c00e8e95-f5ef-4ae6-abb7-cccfee0bdd7d +CO2,Mexico,kg/kg,,I.3.1,MX,3203345.691,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19e03393-0112-471f-95b6-abe9c1202c95 +CO2,Mexico,kg/kg,,I.3.1,MX,3203345.691,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,862d14dc-c5d6-4941-805a-bf58d424038d +CO2,Mexico,kg/kg,,I.4.1,MX,3203345.691,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,be72f1dc-885c-4abc-8f7f-763ce063c255 +CO2,Mexico,kg/kg,,I.4.1,MX,3203345.691,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d335e24e-85df-46ee-b8fb-22b0f7abe535 +CO2,Mexico,kg/kg,,I.4.1,MX,3203345.691,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2d3d9b76-817d-48f1-ba6f-662ffd2aa328 +CO2,Mexico,kg/kg,,I.5.1,MX,3203345.691,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5dd04ca4-cd66-4dcb-af81-4f50be6f11a3 +CO2,Mexico,kg/kg,,I.5.1,MX,3203345.691,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6b2a725a-c86a-45e8-91d6-d687c9b3dae5 +CO2,Mexico,kg/kg,,I.5.1,MX,3203345.691,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1d7ea5b6-e987-466c-8afe-2c79369f3b02 +CO2,Mexico,kg/kg,,I.6.1,MX,3203345.691,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a37ce3b3-d721-447e-8a5a-28076202e65d +CO2,Mexico,kg/kg,,I.6.1,MX,3203345.691,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5969e820-ec2d-4ac2-be29-d124353146b4 +CO2,Mexico,kg/kg,,I.6.1,MX,3203345.691,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7d82aae4-6d06-42bc-98a1-5f02692207fc +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d24e7d6-67ec-4976-8dd5-e36fad206233 +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7d319e08-aed7-4839-97c4-50876b935135 +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,39efa16e-c566-498b-9cb5-89b31c9c48e5 +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e66a28b0-2793-43db-ac80-25e799e20d4d +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d19b2979-0d83-42d1-8059-37b46bc7cc46 +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1b3c87e0-8b26-4a46-9549-7efe4b1f054c +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9c687033-e0ac-43d8-9e39-340932a8962b +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e517be8e-f20e-45e0-9fa7-6e398fa6a0c6 +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,22cbd7ea-6ebb-4afe-b811-8af9c4ddb16a +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7160d30f-bef0-4980-9316-72d47e7a4a67 +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a81b06d-99cc-4feb-b1cc-64749645a027 +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,28f52ef6-c17a-4305-acb6-3b8329de2c08 +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76b48183-045c-40b0-a726-4640abde478b +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,92ff80a7-817e-4e73-95de-f408252c42bf +CO2,Mexico,kg/kg,,I.1.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5497dae0-57aa-4d45-8c09-4fb8f7d2aee9 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d7e5f33-dfe5-4b07-9c92-7e24071ecd59 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d08921c2-324f-4cba-9295-ca6703c96d07 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,332aadc0-3058-41d1-92c2-b5c660da90ec +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37be55ed-ba94-4524-a87b-e49e5552a566 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,33d043f5-1a66-49ff-bb33-bdf9594cd572 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,212d7f99-4032-46a3-b51f-a64b6b7468c9 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e416efdd-7b49-4bdd-8589-843227c55733 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8baa14e8-37d9-41c5-9757-af5d0547e20a +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,17e9142b-466d-4c08-9fef-221fb9ca1930 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f0efdda5-c687-4b34-ae62-b2b1cc7cedd5 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,483deecd-5f7a-4102-8bfd-b1ff36d8b2db +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,addfc9bc-b876-41cc-883d-91dd517fa127 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,61f38be0-1429-4399-a3c7-b84b5b06baee +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f872f60d-3a23-4de6-a8ee-0655f639a152 +CO2,Mexico,kg/kg,,I.2.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8d26c66d-34b9-48ed-a9f1-a3dc9cb06ba7 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b657e99c-b144-41ad-9e67-6cab848f6467 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,de475651-660c-4bdf-a9ef-d9d9c5da73b4 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9ede2fe8-4364-4313-9fc2-25090bd48a94 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aba534eb-32c4-4810-82eb-b57d3170eb38 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,657d523b-bf96-4c3f-a7b7-7d8c96a204c6 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6880e68a-92ea-42b2-b75c-47051e3cef43 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b301fa8-1383-4eb9-b2e4-25f8b95dceed +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b964f24a-7d42-4012-a19d-b86b27426237 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c762d6d4-0f51-4272-85d0-5cd4c98c4bdb +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,82730182-1a80-4ce1-a2cd-e704e8b4eb0e +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b81c6a00-038d-4875-8794-f2a98bda1e4b +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c11f57cc-0a33-4105-b6e3-63362dc13021 +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14719490-762f-4796-91e5-5946774bb15f +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3532c5f3-d761-4ec9-b52a-7701cb4729ed +CO2,Mexico,kg/kg,,I.3.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,424bafb7-54fa-4d36-9bb4-35c96a6dc2ff +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d31b5ab-4220-4b16-ae78-06da1d0c906a +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c309192-16c5-4322-bdf0-fe2ec3bf84aa +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0ef21480-3e49-4458-9df5-c6687429dccf +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,553544e4-f1aa-4a8a-92dc-366248da26e6 +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5f3a97ef-688c-448d-bf6d-7b5b688dfbd3 +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,386af47b-b776-418f-8b86-65c9f16805f1 +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,35a7856d-dc2f-4b5d-ba1b-2b7186b8bde8 +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2191a41-7c45-4e09-b5d1-897ca3396b07 +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a7263723-d95f-46ec-9e34-80f741f6463f +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c0031671-b436-4752-a9ab-9659eb897ad9 +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,71baba9c-1de0-404b-8134-5690f27ae51a +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,48902aad-16fe-432e-9618-f6014411c5b6 +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,831d67c0-3669-49db-b819-876b8a7e4d5f +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3da8c8aa-4492-46d0-93dd-d3ed8891cf72 +CO2,Mexico,kg/kg,,I.4.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3b7d5657-8663-43e1-a80c-392da339bbd1 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32cffa98-4e47-4ede-910f-48a64b270ce7 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cc251299-291a-42b9-9f9b-037b582711e3 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f75079aa-ed9c-4a6b-9703-854f0926735e +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1832fc39-39d9-4c45-a2f3-a5150fdc0e74 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,50a584f6-cb55-4887-bc6e-001149d252c9 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,60b47f63-84a0-4e0a-91b0-010389a9a745 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c1eda430-f89d-47d5-843d-9c898fffee97 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c396795c-3b7f-43e9-996e-a0c6559a9aec +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c263ccf9-5ed2-4809-8f8d-c39555b308db +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,de344fdb-1f72-4f54-8f1e-37515fa7064d +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c94830b0-5f62-4adb-82ef-32eb37221d79 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,73bdabe2-fa1b-4271-98c9-94a6b8bc262d +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c39be696-bdc6-4bd8-a9c7-ce5be8819615 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,777e6a24-0b34-498a-a2df-8dfe67670310 +CO2,Mexico,kg/kg,,I.5.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3efce5d9-c38a-4dda-9a2d-1b996430fa59 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80c6a5c1-9d93-49a2-8154-6ab64af7083a +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,af783bfd-f168-4596-8589-8bf0ba2352a7 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2df472bd-2dfa-4ff7-a9ee-28a8cb003890 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5fbcbae7-c5c8-409a-9805-5d3a26ddc391 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5d17ef6e-d878-4e72-96cd-93f44ce3bb26 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,da76b2cb-d5ee-4c47-b591-e43e47a062d3 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,360d1f64-aee5-401f-9c8a-72e01a16c643 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3a534734-48b1-4642-93c6-ff774016130d +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,43ea4a62-8736-4206-ad02-741680ebc185 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fae78cd8-4e6a-44aa-b5d7-968e75892cfc +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b6a584aa-ac29-4638-95fa-03480145262b +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e69ffa83-c318-4684-8853-c3e45e927bf3 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b519fe58-4e8c-4f3a-a15b-f33b62e414e9 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f034b033-845d-491a-94d4-c6a288b8f428 +CO2,Mexico,kg/kg,,I.6.1,MX,2699512.1682,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,22fa2f56-467b-4d1e-b7cc-600391ef14d7 +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,83c073f2-d9e5-4058-989a-81ebe491fc1e +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6d78292f-24d9-4773-b036-0cb100450fb1 +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c7ef1933-af4c-4cb5-a117-eff05e478377 +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2860b0ef-7d58-43a0-8142-dfa4cdd9c16d +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,709a9089-fdb1-4058-bfa3-892abad911b2 +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6adc2e06-9461-4d7e-9bb6-2296768924f6 +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f47890ed-35e4-43d7-af61-a60fb98ac2e5 +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b410ef98-dce4-45a5-8e60-01e0065879d0 +CO2,Mexico,kg/kg,,I.1.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,76ef66d7-d19b-4f2c-9970-110e0708fd57 +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8ae39d62-3142-4eeb-9f94-ee058b8a374d +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9e3b838a-2bbb-4f03-ba63-dcdf11cbc01f +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6febc90f-84db-47c6-97ae-828b5824e447 +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49830a6e-4fc7-46a4-98dc-dacab1ae1ab7 +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb9c0401-49ca-432e-9bfd-09af3b842a7c +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,568ce787-8c53-4b73-ba62-109990fbc701 +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bf7fb3f8-0c9a-4ee4-8a96-0381c2eef415 +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b1fb8180-1bdf-41a0-bc2b-f47f31bbc50d +CO2,Mexico,kg/kg,,I.2.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c3bcb5c9-1e1d-4532-a105-c730fc65ff21 +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,55dce99b-c87f-4b5e-90f4-622e440b542b +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc6d1992-918c-41bd-ae49-e1e8e49efdfd +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d9d084c0-82b3-4162-8f8d-35d544ef8407 +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,858242cb-7453-47ae-905b-7c3e49afa12d +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2368da44-7da9-43ff-9565-3e7cdfbacfe5 +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5f04b583-24da-451a-b9a7-2940cc26058b +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a2389ba7-5983-4435-8173-73349d49b87f +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc018f13-5df0-4ab6-a418-f9f823e75310 +CO2,Mexico,kg/kg,,I.3.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3f13ef32-5483-4069-b17a-7eddc5570309 +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ce438958-d466-48c0-a545-8adef568f197 +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,876270e7-677b-469c-9a4e-15fd15736913 +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d3fdb964-5686-4de9-8eb1-16a8dad3520e +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93e41285-0e1d-44b6-84d7-ff63ee23aeda +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,61d55ca0-808d-4626-a745-cfcf6794c596 +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,649a0c6f-2a5b-4c50-880f-b27c87303c14 +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b7db4639-dc79-4d7c-89e4-885e76c0aba5 +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5fd02354-d442-4b30-900a-bcf8d3e5b31b +CO2,Mexico,kg/kg,,I.4.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2de558f1-0007-41c0-abfa-f481afa47bde +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,060e1467-7d7f-4063-b1ed-c6f0f959a986 +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac2a2714-8f0c-48ab-86c7-56fbeeb22d15 +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d805d8f4-2782-437a-b9fc-5133d6b2ee32 +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,21b8b912-1361-4466-93b3-fe11b292b8f5 +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0e29ba77-5e87-43c1-8b30-b07560a4b39f +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,48b8677b-d7b8-4cec-bd0d-a19137269579 +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,58846935-e037-47c7-a95b-776f8f6e40fa +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9fed5908-ba7b-41fd-a5e0-8e4dcbcad9ad +CO2,Mexico,kg/kg,,I.5.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5e39b8ec-83b4-4822-af2f-13779d8ba08b +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0435618b-57ce-470e-9bba-39b4734a4098 +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80cb456a-02e8-4941-8050-97f823a2a84a +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,48a3f13d-c1f5-45ff-80f0-1e75d7e46e7a +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,67503ae6-e3ca-4012-a8d8-f14b1f524131 +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8cf78f1-cef8-4131-8e04-9355d6abdf41 +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0774502b-13ee-448a-a92a-eec1707b6d5e +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62010a6a-79d7-469f-8244-3bf6b0664538 +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,64f5d6e8-b0c6-4889-8480-a89a3824815c +CO2,Mexico,kg/kg,,I.6.1,MX,3004226.664,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1634e762-b7a5-4307-bfc3-0a429b8eee0c +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,721.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a900ac5-0fc1-4a25-b271-a3c2057839a2 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,721.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e53d833-e73b-428c-87af-f3c2209c85f2 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,721.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,289cd632-382e-43c1-b217-111fcb0a4115 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,819.3791999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4fd030b2-574b-49f0-9ea1-051c784ab6a7 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,819.3791999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,95af3275-43ba-491e-a615-5d059427673b +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,819.3791999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0f6062df-6bd2-4329-8426-6ef11018afa0 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0006122779846191406,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a80d344a-c139-4618-ab8a-80942031bce9 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0006122779846191406,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,326fa7dd-08a9-4ecd-a740-899d0e84f89a +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,0.0006122779846191406,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,36835e40-5e7c-4f53-bf01-48e02aadfd7a +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,721.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74eebc81-c8f5-4378-909e-029b49eab6a5 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,721.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c42eae44-58d2-4715-8aca-588ab937f2e2 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,721.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e5547487-4c20-46ef-a808-ddbf71e50277 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,819.3791999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b123ccc4-69b9-4372-a43a-c7fa8f95e3c1 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,819.3791999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc088a2d-0882-4786-8679-dcb52c437b25 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,819.3791999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3e5794da-3534-483b-9229-87da0aa36707 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0006122779846191406,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a32d3f84-f7e9-40a8-92f1-61360b6835cd +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0006122779846191406,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,019c285d-7186-4dc8-abbf-472b9fa1c3e9 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,0.0006122779846191406,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,b02770ee-81f4-4e47-a09c-688ede7a0000 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,721.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6a062efc-164b-4a61-a425-58bb13e3c5df +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,721.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,463e24d9-ffb8-4135-9812-052291563fc8 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,721.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7815f8d9-3c67-4193-83c4-eeece400194f +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,819.3791999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4ae9793b-f89c-45e9-a285-c2b71064b00b +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,819.3791999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,82d59b76-442c-45a4-96d3-75ef4a7b386e +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,819.3791999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,3fd7d70d-f75d-488f-8de2-afdb15b8ffc6 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0006122779846191406,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,230ba833-852c-403e-bb93-100436e5cf5c +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0006122779846191406,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,067a1bd2-4c2c-42d0-a0bd-3aac19672003 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,0.0006122779846191406,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,9b09fa20-2743-4879-a353-c42675c59085 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,721.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,953c951c-e289-45f4-93a9-4009ca37d82c +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,721.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8773b624-94e2-4292-8077-1583a1182f59 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,721.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,bfba62f3-4966-42aa-a3e4-ca933469afeb +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,819.3791999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1cf562a2-3bd9-4df6-9181-f170b26da51d +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,819.3791999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1ceb8ac3-0517-42f3-94ab-245b31f57680 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,819.3791999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1934d9b7-9e90-401f-a17e-ea800102648b +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0006122779846191406,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c3d369ea-17fc-49a6-88e0-f64ec43f51f1 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0006122779846191406,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,558a96d2-ecc8-4466-bc80-7eb517e3d3eb +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,0.0006122779846191406,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,372b3173-3fd5-435d-ad23-9f87a241431d +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,721.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80255454-b369-425a-8b32-bded7af05d06 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,721.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d20108a-bf8c-45a2-b662-25d61643f1a3 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,721.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9b21cecf-5745-42b5-beb2-ddc5a22fbed4 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,819.3791999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4fb9fe39-536a-4df0-bb3f-367aaed235e2 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,819.3791999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a20700d3-ed22-4257-bddc-fc28297b7aa3 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,819.3791999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,4b447522-2527-4c2e-998e-86d8388108f5 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0006122779846191406,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ca19d7f-ba33-4db4-8e5b-159fb8560df1 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0006122779846191406,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,12693513-54aa-4c37-a3ac-10a564071ae9 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,0.0006122779846191406,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,0f789f04-249f-48d4-905a-74716bd75452 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,721.92,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,635ababe-f183-49bc-94fa-f5ad14701e4f +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,721.92,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9596e7ea-4140-4211-b5cb-d235ff24c7c5 +CO2,Australia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,721.92,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,35a08dff-a23b-4139-b5c6-1bf31a78ca82 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,819.3791999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,87f8ed6f-17ac-4cdf-90b1-a7bd444d9fe0 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,819.3791999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,de0c3cdc-a680-4378-9d93-79bedcbf79c5 +CO2,Australia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,819.3791999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,a0ffbbc2-fc3c-4bd5-be3c-8b5e81a58db9 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0006122779846191406,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dfe9ce0f-273b-4aba-b9a8-ebeaa9e1731e +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0006122779846191406,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed1a76a7-1d1f-430f-8551-1a107bffb68d +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,0.0006122779846191406,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,85409f77-0d03-41b3-ab57-2b20f22f938e +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,723.36,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea00754b-8b28-49e6-855f-01f3176e08aa +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,723.36,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a48314fd-8024-430a-98d7-7e0ce8d7866a +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,723.36,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5359dab7-f235-4df9-8952-a0beb5184066 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,821.0136,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ba659d67-b241-4c42-88be-fbb5f846deed +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,821.0136,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1b0fc4b6-dd89-4b43-9faa-5668e5bc2a26 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,821.0136,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,1e9b817b-e2ff-477d-afff-16199bc0aea0 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0006134992837905883,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3df214ff-017a-438c-8f99-a9fd6e7df048 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0006134992837905883,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,06c6fe02-4015-4a02-b897-d1028683c760 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,0.0006134992837905883,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,54992b29-2e60-4aa6-ba9f-45d33b753ab1 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,723.36,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f4283795-0cea-4d38-876e-696fa66254d5 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,723.36,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb1927ff-3702-4e25-a428-dc28921f9387 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,723.36,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,51f5e936-b8e2-4a2d-9298-95be327f5c82 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,821.0136,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb1636e1-eee4-4032-8909-f3e8cdbdf70a +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,821.0136,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2b3e0751-10b0-41d3-aa5e-24efec65670f +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,821.0136,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c29f622a-25a1-4df7-aa7c-65396d55fceb +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0006134992837905883,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e5e33f2f-fd7b-48d8-a2b5-ebd15c0d4401 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0006134992837905883,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,82d53c1c-b243-4f16-a2e1-8ead537493b2 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,0.0006134992837905883,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,91a740a0-0c5c-4155-b7a1-75e2426efbdc +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,723.36,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,73d5d6c8-34a2-49b2-9f86-b89d825a0767 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,723.36,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19bbb9f2-e62d-4030-8f53-768bfddfd5bd +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,723.36,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,766f9abd-b84d-4802-8b0b-357e3ed48e9b +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,821.0136,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1e9de46d-39b0-4a4b-9ed3-3d9e53defbd1 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,821.0136,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7b32409d-b629-4573-8a5c-b5e531ef5858 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,821.0136,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,fa29342c-7816-4afe-b3da-c82496da6595 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0006134992837905883,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1264092c-b667-4cfd-aab4-c91ad0c87167 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0006134992837905883,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7219f07c-7c37-491b-a95c-2de32476ea01 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,0.0006134992837905883,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,5618e3f8-65db-42b7-aca3-e4ee335945ce +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,723.36,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14522756-e2d9-44a5-a880-7a58ff7ec3bd +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,723.36,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d54e696f-2aa6-4914-a0f8-2aed2ad94854 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,723.36,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b7403c2b-b479-4e73-a326-9792e12218f0 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,821.0136,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d01bd7b-2845-4d7a-8055-821ef32d57f4 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,821.0136,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0ec370e2-b6a7-4825-b90b-8d8bc5a88e10 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,821.0136,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,55f51078-e0b7-4983-a0a2-570ef62bf0a0 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0006134992837905883,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,702ff121-3102-4727-a0e3-cddbe951caf5 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0006134992837905883,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,551bb5ec-d90f-4b6b-b517-4e5c4f31c374 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,0.0006134992837905883,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,d322b8a5-c77b-478d-b95a-5ea08af23083 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,723.36,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b7d0d43-3db8-45bd-8c10-b7a9bbac2bc0 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,723.36,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8442ca89-a2e3-4fdd-94ff-475dc097b353 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,723.36,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,44a5d639-fb6a-4081-b8bd-6319fb02cf6b +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,821.0136,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d2c08107-c04a-44fc-baf7-d1275f0017c9 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,821.0136,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2310f6cd-d93c-4c14-9895-57d3f7ddecb3 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,821.0136,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d1fc022f-52ed-40b9-b00e-4a42097b6755 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0006134992837905883,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,070a2bcb-2772-457b-b464-7ee2681a8b8e +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0006134992837905883,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0407043f-512f-4858-b4df-c378577b3d53 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,0.0006134992837905883,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,d72a0406-cdba-4c0f-94f3-ebfa0f23378b +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,723.36,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,302a6561-7150-4a0c-a0f4-d4404ec27406 +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,723.36,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2991f595-958b-4a3d-b308-15d00e0cf28f +CO2,Indonesia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,723.36,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d34c819d-bbbd-49c1-be8f-fd598305cf17 +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,821.0136,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a3abea7f-3a75-40bd-8461-8794e73ecbfa +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,821.0136,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7c8220cf-f33e-4b38-a4b8-e044e9f2052c +CO2,Indonesia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,821.0136,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,29cd594d-ab7a-4b64-a053-76d92ad08aac +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0006134992837905883,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,38d89e5e-1487-490b-8ef8-dc381d006362 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0006134992837905883,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2779b8ed-c81d-4386-89e0-af7368054273 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,0.0006134992837905883,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,c068cbb6-2222-4824-a96f-c332e7ac7e8e +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,39888bb3-029b-436a-842d-f9e1895f54fc +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c02b314c-ca80-4e46-b378-d4d8e1f2db4d +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,254a4734-1da4-4df8-b19b-bef92d3ca0da +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d936c4d-b530-4ca3-baea-654268972671 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b73075b-e137-4692-a050-80a12d07939b +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,ccbb28f5-42a6-4fbb-bae4-00b5ab2d9391 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62531cd3-22f0-438c-a61f-4ebf15c78fd5 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f8582a19-74b2-4baa-bc5e-bbd16e5a99bc +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,5fc3b7f0-2ae4-4c76-93aa-4b9275c3f29f +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,23bc725e-ca29-4b93-aafd-d70c695bd9df +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fbec33c2-4673-4019-a43f-65635b254914 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4b78700e-9026-4115-ba4b-73b67c33f780 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,56032124-7352-4474-acd0-349f00505f69 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a3a1444-9390-4390-a516-c88657720143 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8c8b6f64-f300-45d1-b2fd-2c84f21b3305 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,df5a3705-2227-45b8-a28c-cfbc69b667d3 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee2932bc-69cf-4b22-95cc-76cf846816f9 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,de05171c-6c75-4831-b757-965ccca86a11 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3f357d16-e158-4a9c-b5a8-bbcf130bdb43 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cedf8197-6c36-4624-9c66-9fb3433f166c +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a6f5796a-b474-4166-a522-bca74d7b879c +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c93a8a2a-e8f9-482e-af2f-a5fd57faffcc +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca592d65-bdcf-45b0-a052-de8e862ae1ab +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,cc2b4205-7ed7-4a9e-b42b-1a76845ac528 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,184b00c8-7ff5-4f40-af35-657bba4ff612 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e97c0090-ea72-46ae-9ff1-a80e6d148ff1 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,379d36f8-1b6b-43d1-a7ca-3feaa7bfc58b +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62d440d8-bf7a-464c-8b39-661bceaa7987 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8d59badc-11c9-4ad8-9b8c-37e5f18f6b2a +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6dce58f9-36c2-420a-8c48-5873252e593b +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8e2c6675-927b-4067-b5d1-e3f96b2c9f36 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2eb4235a-fd0b-45b8-b0b5-af6d19dc02c8 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,9c47e70f-65c2-47f8-b346-b671bcc3f6cd +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49a59548-6cf8-44bb-b8b0-84981b8ca99f +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fb2e93b9-834f-4776-827c-9f236f9fed32 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,876688a8-b93b-41e8-84ae-b9cd847295d3 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,30a409b7-9ae5-4450-baeb-bab80c5ff961 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fdbfb6e4-0e93-40b7-9567-9a491fd26a37 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0adb3938-23cb-4ee7-b56d-ebe6bf72de74 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,310922ac-1e99-44b0-b275-7f393b9c3c2e +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2282940a-1f24-4fb5-8df1-0c2479c67ee5 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,b08fc351-a0c6-4ea2-a4f0-6d263240938b +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,66c5f009-e7bb-4409-8caa-56fd34231725 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2f495330-aa9f-4d4f-899e-85f25e1dc652 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,2034101c-ed23-4863-9cb6-6f572f433f14 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,615e0230-51e5-4acc-a8dc-372cf38aee23 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35a891d7-4862-458c-85f0-b333a8c1f422 +CO2,Malaysia,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,36d69e34-9e61-4ee3-853b-20d8a7ee2964 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dcda00d9-dc78-4a05-95bf-829dadab6d38 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,007583e0-1763-4c3a-b54b-aa65f6e828b5 +CO2,Malaysia,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,909c8f08-9525-4b4d-9a50-afdff07a3ca9 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,723d8e46-0a9d-4558-8812-b2b5cb9bc579 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9f879baa-9490-44c4-bf65-c8d6020d86e0 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,5911b154-423c-42f2-b634-b5998bee27ca +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,729.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,90296d25-a5cc-467f-b656-0f14c44d5b67 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,729.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,91e6ccb4-cca5-4639-a995-991e0b79deb3 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,729.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,92f0c0f1-091e-4d52-b090-cca726f73344 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,827.5511999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,862df064-ed23-42c4-99d8-7c588a40196d +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,827.5511999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,468d34b1-0fc7-4cd0-9871-a22aba83f7ba +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,827.5511999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,386cdb5d-1719-4c80-83fd-495d408a9423 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.0006183844804763794,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,35ab00ea-c21c-43a1-9974-0b750d780adc +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.0006183844804763794,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c58d732e-c699-4a3f-a718-61033799f64f +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,0.0006183844804763794,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,ae26df66-d6f4-4748-bb59-e6ff53dcaf53 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,729.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8735a4ee-2503-4229-a46a-6003f80f837e +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,729.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,350b9ce2-0d47-4a8a-ace9-ed28692a716e +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,729.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,864b6b48-31bc-4e95-bf58-c28403dc679b +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,827.5511999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76210adb-aabd-4229-b8d2-94148b14f666 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,827.5511999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,31fd105d-bf36-4ddf-9556-6a342cf73742 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,827.5511999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2b91de59-8be8-430d-bb78-414e2819e825 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.0006183844804763794,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cf6e5b75-cc45-4235-ba6f-ca5cd97a3c37 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.0006183844804763794,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2c57666-f91a-41ad-bbd7-0a16ebbb47c0 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,0.0006183844804763794,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,93427415-7271-45ef-920d-ee77d9c670db +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,729.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,60887d25-d853-4aff-af03-b64266ff59d0 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,729.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,24ca3eba-719f-4977-a185-751dd0faee03 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,729.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c215c75d-dcc3-415c-b6d3-4345a7af85d2 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,827.5511999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8c7196b9-8c48-4869-91d4-f8dd700c1017 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,827.5511999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,abdca644-62f2-4d60-8197-161938a049cd +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,827.5511999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d600afb8-89af-4172-b98c-f3e8a637089e +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.0006183844804763794,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49ef7264-07a2-4bca-a992-ecbdb5db25c8 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.0006183844804763794,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8523e7d3-eea2-4ee7-a01e-abd6720ce3a8 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,0.0006183844804763794,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,202a883d-6ff7-498f-82d3-0282c6de872d +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,729.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e20963ff-9975-4988-9daa-a8f25ba7faad +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,729.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8aac3a49-cbba-40b0-b701-6b58cf84f999 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,729.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,06b606dd-0a39-4ec4-bf24-f9dfc89ad799 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,827.5511999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,704a9d82-c854-405f-8153-e3cf2f1a78c3 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,827.5511999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,84535ac2-2926-47eb-9e25-a4439c7603bc +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,827.5511999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,65828636-3935-4804-84ee-017a162ef2d7 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.0006183844804763794,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e2434c58-b230-4f10-812c-a0a72476bbc3 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.0006183844804763794,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,baa6617e-87e6-4cee-af65-886cea3e8da0 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,0.0006183844804763794,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,201ecf89-720e-46ed-b02f-64b9434ddeee +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,729.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,59b3cc04-868a-4e68-8e7d-6986840508f1 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,729.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a76a3386-e1ad-48d4-9395-5a8ea0767f4f +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,729.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,81a6763f-7013-4ad1-96b0-1e33ce42aa85 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,827.5511999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85ece4f7-aa36-436e-af0e-4b8d76dd1875 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,827.5511999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,72798e38-f3ad-45e7-b20b-6ef198f6c207 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,827.5511999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d7fcdc8f-824e-4e96-a19e-ba20607ec563 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.0006183844804763794,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1a7bf9ff-23e3-441e-87d7-f6306221f6a4 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.0006183844804763794,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,808c1dd0-20db-44f3-8c6a-b20a61d694c0 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,0.0006183844804763794,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,8988cd7c-72e2-423d-b83b-4b396ae2388a +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,729.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3104152d-7826-460b-92ab-e5f762e982e4 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,729.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3cef8d3d-8ae1-41a3-aeb0-9e60da3d65b8 +CO2,Papua New Guinea,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,729.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b83c537f-c178-4bd5-bf6e-a149342f6582 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,827.5511999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3c2cc44-82bb-48a5-80c5-bf5b01c29c39 +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,827.5511999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,feef94fd-29d1-482e-89a7-09f55682eafa +CO2,Papua New Guinea,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,827.5511999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c5053a6d-eccf-428b-8a5e-e656824268f3 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.0006183844804763794,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,16b9bc0c-a7b5-4a7d-9914-97b7982ea1b4 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.0006183844804763794,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,22b45832-6cc0-41fe-a0a5-ff9ba0e11207 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,0.0006183844804763794,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,88f27588-c654-4c94-a02f-d4273fcbac83 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b5b8e9c-8f26-4c01-b6ec-6f2d4ba07394 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b8c27d7e-6632-46de-b8e9-1b1935cd742f +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4b60e203-7b06-4716-84e6-d31223739d3b +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,afd66c18-c0c5-4cd8-b07b-049319d9d8e4 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bd4d98e4-4c74-4b0c-a585-74c381f18116 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0f28360c-e3ff-479e-9bea-cea57cf0fb33 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c8ee40aa-a427-43f4-ad0b-9fcb62830f92 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4e6509c7-22e5-4ee4-b2f2-6ca2f0d88b3c +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,1626e50a-9992-4b24-9284-1a68543fd7b7 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a45ae8c8-dd8f-4c08-8060-e97dda1bbf10 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2a9f6029-c5cd-452a-a751-220e245da798 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a5110ec8-a245-4e5a-a135-de50404c91f6 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7e90642c-4167-486d-8609-896ff6999348 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,94409e22-c741-4abe-b3a8-d865a085395c +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,8e00c930-7202-4900-b6a6-101b39f7d0b8 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,77c8a35c-65b0-4a13-92b3-42b06f79146b +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,63bcf21d-91ea-4330-98a3-494f5b839bf1 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,d91b6bc5-07fe-4991-af2f-0481fa5137ed +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6daa8783-6673-4aa8-9048-a1cdc660f944 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6474bf3b-c98f-4249-80cc-1953e2446aa8 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dbb21032-2d33-4d36-bf06-c312a99746f2 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,19f645b1-04fe-40d0-94ee-8650285783ab +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f01d792b-cff2-476a-9861-6f96e90a9fde +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,32ddd8fc-8846-44bd-b1c6-5aeb42b65531 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,448580b0-c487-4559-b62a-0d84c5861c0c +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7476f9e-36fe-496c-bb87-0db28c9abcfe +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,63fc3518-89e3-4b82-bd92-2063c09946f7 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c07f53f-f295-47e6-a6e8-d7eb71aca5ca +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,107a965b-88e9-493d-9118-dad41486be75 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9cb67475-4300-4f81-848e-c4b806931669 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,862277cb-1782-4853-a670-6aa9a0a3fca6 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,98c3f39a-7213-45ea-b64a-2d3eec39196e +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7b1598cd-d7d0-450c-9be5-d41767bae1aa +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,303e4445-4df8-40bc-bdb8-46d37179a9c1 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7d533a4d-cbf9-466c-8eee-17f4cf9db01f +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,1f7c488c-60e7-4d0e-b394-f564bdf6e915 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f2031e1-ab5c-4b5b-a66a-059553f53465 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3893bfb1-1c60-47d0-ad87-bcbf8c7e9304 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9b81514b-44a5-4a08-a971-7fc273026fd8 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,df495906-f164-4a44-9db9-82c18db7c743 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6d8f001d-ae23-4725-8f9f-113797c0c6db +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,66789d4f-a6fe-4187-93b4-802f91ac3740 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d8188f2-54ac-44ad-a706-3732ce2fa983 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5cad5b12-4644-4049-adef-ec4ca6bab2a1 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,f6f1e901-9dd0-4f52-aa3f-50d7ef0c37a2 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,724.3199999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f11dd502-e7a0-43f4-94dd-620dc7773d12 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,724.3199999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1aa2ab21-6f4c-4279-b1dd-6832ac775101 +CO2,Russian Federation,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,724.3199999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8629dd08-ed28-45cb-9ccd-6da999b102e6 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,822.1031999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,02604e77-91cc-4bb7-a675-0c305bf73355 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,822.1031999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6021b542-763b-4eab-a6ea-bd52987fe650 +CO2,Russian Federation,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,822.1031999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,0f99c1cc-274a-4a11-b503-5a8a1e6e7d86 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0006143134832382202,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ddf20c0-601c-462e-ad4a-e26e5d8114bf +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0006143134832382202,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e25368e-6520-4444-a402-bcbc32886624 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,0.0006143134832382202,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,2ec1b514-e729-4e82-8dfd-4c876c27c1ce +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,716.16,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,38b3a8cf-3f41-4591-9ffb-adf6d28f42cd +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,716.16,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f7f930b8-4bc1-49a8-a4cf-04775d53b305 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,716.16,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,36021831-0524-43b4-bbe0-fc17a9fb78a7 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,812.8416,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0fff5544-182c-4210-8624-2e8dd3ccd47c +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,812.8416,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,51e954db-08bd-4ef4-9b1d-dd5e67f26ea0 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,812.8416,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c9616b7d-baf8-4b0d-9b98-60bfd45828af +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.0006073927879333496,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,153a7ee2-22f1-494a-8661-3c682c717c84 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.0006073927879333496,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4888e465-7537-4e56-bfa1-5143f4d668b6 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,0.0006073927879333496,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,fdbf7b02-2c29-4c26-b949-81fb76c05132 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,716.16,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ee1b1af4-1538-463f-8fb2-0bc918b759a2 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,716.16,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,062d836e-a0a1-4e24-bb8e-ac56cc3107cc +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,716.16,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8893d17b-2309-4d4f-a53e-51d040a58b64 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,812.8416,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,942a0014-3bbc-429c-be6b-d51440b5bb5a +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,812.8416,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2a29718e-e8c7-44e6-9a44-841c382f9c4d +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,812.8416,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,929af3d1-5189-4b0c-85ae-b014e86df731 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.0006073927879333496,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49a79e0d-e739-423d-81b0-901921e6bf46 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.0006073927879333496,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0ab076bf-9c0a-4f09-8d74-c59250459753 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,0.0006073927879333496,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,26c4ea04-2f4b-4d6c-bbb9-d13b053eea43 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,716.16,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c0830f22-7219-45c5-aaf0-2994814eec94 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,716.16,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,47aa22e8-d669-43cf-bf15-0a166a9a13f1 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,716.16,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,75b6d9e7-ed82-4eac-b1b3-e64799d1c37b +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,812.8416,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1c945bb1-ef54-4703-ba9f-c8937fe1250d +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,812.8416,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,629c4008-bc1d-402d-adb6-b9db204b5871 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,812.8416,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,e7ccaff3-5bbd-4174-a63b-89e020bf6445 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.0006073927879333496,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1d16780f-0a1a-4b7c-b8d8-b4ac161d60ea +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.0006073927879333496,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6648edb0-4dbf-4ab1-aba9-e781c313f0ea +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,0.0006073927879333496,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,95f0d7e6-c494-45a8-8882-8681d260d21b +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,716.16,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b8c85fc0-7df8-4076-93f8-6e04996d560f +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,716.16,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fffed7c0-b6a1-4897-a467-9211a531fd88 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,716.16,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,777444c7-ae6e-4bcd-a6a5-d600211642b1 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,812.8416,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ee9de6d2-f8b7-4215-9b48-51ec7fe2d661 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,812.8416,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20aa0f33-67f8-4af7-93e3-cfff050d5c59 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,812.8416,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2d45d6fb-cbbf-48b9-9448-34193abad062 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.0006073927879333496,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cf7f04f5-8ed5-4b01-a89b-539e466ba27d +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.0006073927879333496,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f07b3a5e-1958-4529-9829-bb134ab4d1ad +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,0.0006073927879333496,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,2ffb1a37-af33-43b4-bee8-3d82785e3f3d +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,716.16,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cf8e0db1-40c5-45ee-b351-6d6c911812d0 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,716.16,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e8ee5731-4b02-4661-8489-0b0dd9a43cac +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,716.16,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,62a04110-4b78-45c5-9729-4ce1f08e1056 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,812.8416,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d604cca-9fcb-4461-9799-de7095cdbe78 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,812.8416,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e87a47f-8cdf-44f5-90cc-8a315e06e0b8 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,812.8416,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c7be6268-5dfd-4c1d-9b44-68c4ed867efd +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.0006073927879333496,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1de58f15-ec52-42be-8781-28f9702ddb94 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.0006073927879333496,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,11e3cf81-3f27-4d40-a6e7-742cafcf9778 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,0.0006073927879333496,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,c437150a-834d-4855-88c0-b143d87963f0 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,716.16,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,145bb0a1-3897-4893-b99f-f9de178b5709 +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,716.16,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,596774e0-d49c-47fb-9693-e1c57c3c427f +CO2,United States of America,kg/kg,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,716.16,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6746bd24-345d-4e22-8844-3300659df77c +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,812.8416,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d97f4e7c-0942-4642-8e4d-1f0930c18f43 +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,812.8416,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c96c97ed-03ca-485d-a41a-6e24f5f4390c +CO2,United States of America,kg/t,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,812.8416,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,7cf07a2a-0e78-4c7a-9700-318b0cdd092c +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.0006073927879333496,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b5fafdc-2f27-4411-99ce-84718ac21b8a +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.0006073927879333496,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,820ced97-2e23-40cb-b3d5-6d498c208d32 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,0.0006073927879333496,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,c6d88361-8449-4d52-ad2a-08e33a005052 +CO2,Russian Federation,kg/kg,,I.1.1,RU,705.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,79c91429-b4b8-4c59-b843-882a9af28114 +CO2,Russian Federation,kg/kg,,I.1.1,RU,705.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5450e0d-c875-4235-90e5-ddf0822a755d +CO2,Russian Federation,kg/kg,,I.1.1,RU,705.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4f3fc65f-7d0b-4251-a1f1-fe47a6e45f5c +CO2,Russian Federation,kg/t,,I.1.1,RU,800.3111999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eec2363a-a6c6-404a-8f52-c4617ddf38fa +CO2,Russian Federation,kg/t,,I.1.1,RU,800.3111999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b29bc180-a57b-4181-b4b4-fe5808503d90 +CO2,Russian Federation,kg/t,,I.1.1,RU,800.3111999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,d316b6db-9356-45c0-ad29-e103a33ac008 +CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0005980294942855835,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5cc916d8-e624-4512-9b29-87128fef49ef +CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0005980294942855835,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,62ab098b-9f55-41e5-84f2-c86ea7ab70ca +CO2,Russian Federation,kg/m3,,I.1.1,RU,0.0005980294942855835,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,26c19615-5bbc-48d4-b1ee-59ba6b95c23d +CO2,Russian Federation,kg/kg,,I.2.1,RU,705.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,454f668e-15f9-464c-997d-5b72d418261c +CO2,Russian Federation,kg/kg,,I.2.1,RU,705.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4cc35467-099d-4c8b-8bef-bb9cdf3d169c +CO2,Russian Federation,kg/kg,,I.2.1,RU,705.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e301feb8-d430-4d0a-86c0-4bac10485bc1 +CO2,Russian Federation,kg/t,,I.2.1,RU,800.3111999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5a74b74a-5a81-41d8-a7c3-443481e99e1e +CO2,Russian Federation,kg/t,,I.2.1,RU,800.3111999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ccc4622-79f8-475f-bbea-e67e66ccbdf1 +CO2,Russian Federation,kg/t,,I.2.1,RU,800.3111999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,c6234cbc-7702-443a-b24e-4e612be9c95d +CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0005980294942855835,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e46fb65-0484-42e4-ad69-9b1dbb1c4f54 +CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0005980294942855835,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6a35f6a7-3981-4ffd-b603-34b9100220b3 +CO2,Russian Federation,kg/m3,,I.2.1,RU,0.0005980294942855835,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,8763ea71-8523-426a-8d55-64bee0a54a1a +CO2,Russian Federation,kg/kg,,I.3.1,RU,705.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5221809f-6195-41ce-9b95-7dcedae5f1e0 +CO2,Russian Federation,kg/kg,,I.3.1,RU,705.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ec8dafe2-0bf5-4163-b835-9028e8fff958 +CO2,Russian Federation,kg/kg,,I.3.1,RU,705.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,02b1fe00-ceb3-488b-a3fb-b6b0d48a9325 +CO2,Russian Federation,kg/t,,I.3.1,RU,800.3111999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2af1af9e-c988-4d9e-88b4-a9c494b305c8 +CO2,Russian Federation,kg/t,,I.3.1,RU,800.3111999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5241ce80-9c8e-40d0-ae49-89689d2e609d +CO2,Russian Federation,kg/t,,I.3.1,RU,800.3111999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,2e72bce2-9f61-4cea-825b-ceb67b5cba77 +CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0005980294942855835,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9b47b9eb-802d-4857-ada9-9350bf7da9af +CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0005980294942855835,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,59155481-ebc5-4f7c-907c-9d64c26bde00 +CO2,Russian Federation,kg/m3,,I.3.1,RU,0.0005980294942855835,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,00f309be-c675-48ff-b380-4556bfdc8ff9 +CO2,Russian Federation,kg/kg,,I.4.1,RU,705.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,626a3faa-bf9f-4ac9-94a8-455738c81097 +CO2,Russian Federation,kg/kg,,I.4.1,RU,705.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca76cb09-af7b-489e-9c1c-20dbab898e5a +CO2,Russian Federation,kg/kg,,I.4.1,RU,705.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ab59b27a-99a9-43fe-90d7-31469e7b2be6 +CO2,Russian Federation,kg/t,,I.4.1,RU,800.3111999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,66416734-f23c-4d00-985f-9e7ae35f2628 +CO2,Russian Federation,kg/t,,I.4.1,RU,800.3111999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0917b432-72c4-4ca0-983a-4eaebcef13c6 +CO2,Russian Federation,kg/t,,I.4.1,RU,800.3111999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,6ffc2007-ea7a-4d2f-8cc2-554c85056bae +CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0005980294942855835,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bf15d90b-da62-482b-aff9-96be381e409e +CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0005980294942855835,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e33ad5bc-5bcf-4139-9f8a-8424c4b5ba9a +CO2,Russian Federation,kg/m3,,I.4.1,RU,0.0005980294942855835,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,53df8c4f-a085-4d33-bc84-be7cfbe9b25b +CO2,Russian Federation,kg/kg,,I.5.1,RU,705.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bed8a7ac-df77-424e-be50-bd9ac87e0c4c +CO2,Russian Federation,kg/kg,,I.5.1,RU,705.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eb7cd325-fac4-4f81-9ea6-63f4d6276151 +CO2,Russian Federation,kg/kg,,I.5.1,RU,705.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fe03d1b9-a9df-4cf8-9bc1-888a22af3081 +CO2,Russian Federation,kg/t,,I.5.1,RU,800.3111999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f68040d-c090-4e89-9293-e0b3973e2cd0 +CO2,Russian Federation,kg/t,,I.5.1,RU,800.3111999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dfb47ad5-1fe7-4f39-a316-d1299e5fe317 +CO2,Russian Federation,kg/t,,I.5.1,RU,800.3111999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,35013d66-7437-4344-838e-7afd7adff11c +CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0005980294942855835,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3b2e0796-9c04-41c9-966c-1acd0c917787 +CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0005980294942855835,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,59fa9a5a-931b-433b-b9cc-29558da065a4 +CO2,Russian Federation,kg/m3,,I.5.1,RU,0.0005980294942855835,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,8ef7ea3d-bca8-4572-b493-c3d33b6cd7a7 +CO2,Russian Federation,kg/kg,,I.6.1,RU,705.12,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,db7fefc2-edeb-4747-b403-ac2b6cc0fb19 +CO2,Russian Federation,kg/kg,,I.6.1,RU,705.12,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f528c55c-04c4-4747-bb8b-fdc5496e25de +CO2,Russian Federation,kg/kg,,I.6.1,RU,705.12,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,07463e84-32e3-4e65-b0f2-2f3379fb9f52 +CO2,Russian Federation,kg/t,,I.6.1,RU,800.3111999999999,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5c585af-8a89-4af9-908e-5d71b784fe93 +CO2,Russian Federation,kg/t,,I.6.1,RU,800.3111999999999,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e67291fd-9040-4bc7-b6fc-59035eb7299d +CO2,Russian Federation,kg/t,,I.6.1,RU,800.3111999999999,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:54.48, NCV_units:TJ/kt",,8ac51911-476e-3427-bb93-6057b733eee0,51fc898c-6d3d-465e-8fae-ccbca0d740f1 +CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0005980294942855835,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3cf35631-0aba-4572-a422-cb2ed8d38fa8 +CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0005980294942855835,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7bcc472f-4018-46e2-8971-0ff25eba96dd +CO2,Russian Federation,kg/m3,,I.6.1,RU,0.0005980294942855835,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:4.07099723815918e-05, NCV_units:TJ/m3",,8ac51911-476e-3427-bb93-6057b733eee0,594fe870-7182-475c-b3a2-c1b52085a8cc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,1077633.3599999999,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b7bb4d98-4a03-47ca-8c34-e9a2decb4fb4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,1077633.3599999999,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,680c5cc4-bc79-4aa5-b15c-d17a3de69603 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,1077633.3599999999,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0220066b-8413-4352-858d-96ca23dde933 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,1077633.3599999999,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9b4fa583-1221-4bbc-bd85-4b6307c74770 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,1077633.3599999999,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d15c8e49-4fe9-4c61-a2b7-9ee97da4fa84 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,1077633.3599999999,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d6c0fcca-9a19-4499-8cc6-80cedbd1dbc8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,1077633.3599999999,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,48900d17-7fa8-4fa4-94da-3dd700c2f7fa +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,1077633.3599999999,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,615a0eb2-c3dd-4cc8-b498-89ce0a39a27c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,1077633.3599999999,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5f74b753-1d10-4c02-a278-d6020c8cab33 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,1077633.3599999999,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,29dcf19f-57e1-478c-9326-d16401e537af +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,1077633.3599999999,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,543ce062-d53b-4d96-96ff-45e39d68287b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,1077633.3599999999,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,13b893d3-d121-40a5-9f98-bc6a7f2c4866 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,1077633.3599999999,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,681b3e09-938f-4043-a4da-b3d7c68baee9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,1077633.3599999999,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,34e33429-9f07-4f4c-abba-b497978be035 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,1077633.3599999999,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4e82d1d2-27ba-4c30-816d-1fe0470af43e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,1077633.3599999999,fuel-combustion-consumption,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,15434395-6e2e-4aba-80a0-532ef74c4162 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,1077633.3599999999,sampling-scaled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,92887582-d4db-4fb1-9afc-d055bd26f7c3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,1077633.3599999999,modeled-data,"fuel_type:Anthracite, density_value:1506.0, density_units:kg/m3, NCV_value:26.7, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7a4c10f6-9325-4318-ab80-914c3e4142af +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,885533.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6cd90469-5d00-433c-bc5b-caef57bdbc2f +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,885533.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,06dddcac-30ca-49b6-9fa5-ad94768b34bb +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,885533.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,26a60f29-12f6-4027-89ab-747c9c4f2ebb +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,827184.3,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,388c10a7-0342-4b11-b08d-d0e99f50dade +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,827184.3,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e86a46bb-f809-42a1-9a7d-d40b95f7e891 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,827184.3,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fdbc0105-b076-4f1d-9c19-63c1ab608a9b +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,885533.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,af3ae528-49bf-49e5-8310-08683781fad3 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,885533.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,67ad0520-6be0-42bd-bddb-20fb92dd971b +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,885533.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,521bd8b0-57d0-418e-b195-fb2b75e01baf +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,827184.3,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a12eae64-e215-4653-9cb1-0e112fdd2f1a +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,827184.3,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,15080b31-5c20-4300-824d-d3d7eddaa1ea +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,827184.3,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,db0e9c2a-9d94-48c7-97cb-93cb76cfadcc +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,885533.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,374ad5a7-707d-4732-9810-82ec45d99b85 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,885533.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,de66466d-aaba-4eb0-a85b-0932cc9d4fdd +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,885533.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3f75eab5-cbe1-4941-83f9-d0ba9f02e5fc +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,827184.3,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,586733b1-6255-4112-9abb-096fefc2088a +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,827184.3,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1514fbb6-a888-4923-95f9-af309cde1fb6 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,827184.3,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a03c7edb-aa53-420d-aea3-1405ccdfcae3 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,885533.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,771bba36-0e83-4627-b1d2-56cd5c0b4cb2 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,885533.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,847593cc-1e62-40b6-92d9-a7906e98363b +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,885533.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e226917d-0125-4aa6-af16-9b44a692ec9c +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,827184.3,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8d8bcfb4-747d-40e7-8e27-9b5d4efd93e5 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,827184.3,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49984dc0-e030-423b-96a7-5d85c541e66f +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,827184.3,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5075e7d6-f055-4ced-befe-0b795456f7eb +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,885533.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d8812347-e02b-4d6a-9cd2-1a323f17ed0d +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,885533.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,40f03290-f551-4300-a8e4-776211f397e4 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,885533.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9d3c87c3-a7bd-405c-a7fd-63deea7046ae +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,827184.3,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9f8f75ec-68bb-4821-b120-45d4887e2cd7 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,827184.3,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fd33cfda-4726-43e7-b537-f07f6ac7df00 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,827184.3,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,535e5649-ae13-411f-a43c-a0f359d4de37 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,885533.4,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,757bccb3-d1ee-46d7-91c6-6865a55c7d78 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,885533.4,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4c2dfa42-719f-4352-813a-2f94936f005e +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,885533.4,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3aac7917-eae3-4375-ba4c-7870e8cca4c2 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,827184.3,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b244a946-e859-4c1c-a244-4b4ec108dadb +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,827184.3,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ad520ed-2029-4d32-abd7-c2c6e2fb20c7 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,827184.3,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,37c76ba1-2ad0-47dc-b28a-c2e3a5f1240e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,882060.72,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a9b61456-18c5-4bea-bbb7-344a58b3dbbb +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,882060.72,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f4104e61-b176-4a2b-b4d0-e3d4644c4661 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,882060.72,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8bfc61b7-0586-417d-9087-2d8bed0c718a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,823940.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7359fa85-e272-44d3-9e3c-92744876e5e0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,823940.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8bc770d-3213-4271-a920-fdf55d16be72 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,823940.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,83e2ce02-c913-4d81-b8a6-27f984725273 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,882060.72,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c5a2658-7897-4a7a-99b1-03a144ec5cb7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,882060.72,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4e9d508e-03c4-4324-a975-376dbf0324cb +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,882060.72,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,aeccea26-1dff-4d37-b019-d5673e735455 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,823940.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5eccde1-5c77-4255-91f5-2843e8a092fa +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,823940.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cb3f7b10-82d9-4dd2-931a-ec3c10ec173d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,823940.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9b916691-cb94-4bb8-9578-00c7e624a8f6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,882060.72,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,01f27e36-d8c8-4792-81b7-7678cfc95a82 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,882060.72,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5ea5d343-5b29-4aa6-be22-913a50118a71 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,882060.72,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,be5430e4-d734-457c-ace6-697b55ab4333 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,823940.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0d66567f-2676-46d8-82d5-1ab762205c73 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,823940.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b810b004-bc49-46dd-88ec-88ea322b3b61 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,823940.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b2d44ebb-d2d3-488f-a218-ca553999f06a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,882060.72,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0b5e33ca-9685-4908-85e5-e8356c0dc481 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,882060.72,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f1bed798-5143-42a8-89d3-119c3f4a574d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,882060.72,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2289d901-6df0-48d4-bd7e-eb889f49de6e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,823940.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,948d0211-40d9-4b10-8dce-708b335e1d9a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,823940.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,806331ca-0c52-4299-b470-d28ef63c0a76 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,823940.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d63fe809-fc4a-419f-b4ab-3152017c2494 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,882060.72,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,deb8c506-b3e5-4187-9210-e8108ce364a4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,882060.72,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bab6d088-273c-47eb-acdd-e6502af08122 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,882060.72,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0ceaa173-e0cb-4544-b9e1-d09aab6d0659 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,823940.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,46b78381-c8da-4a8c-aa45-550873fbf48e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,823940.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0f98886d-bf8f-4541-9639-49b475f1a03d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,823940.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,87b3ee83-d6d9-446d-ac68-6a150d7a3445 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,882060.72,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7bc7218-fab0-4663-928d-78135635f86c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,882060.72,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cc1fa802-0aa5-4adf-b719-b3de6e525c07 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,882060.72,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c0dac2c9-4c78-492b-9164-fcb6ac157169 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,823940.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a3a59686-9203-40f5-b1db-971b9e9b0305 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,823940.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f5f36dc7-dd6f-4789-8f2d-b4b418577ab0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,823940.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f781a895-fd5b-423d-9175-d2d5dccb0875 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,06fbe7ba-8dbe-4bf1-9229-fc117b6dc1d6 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b8a0c41-e173-4f13-b1a3-366d983d4fcb +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,183eec0a-b569-4d04-9931-865fbebf2d7b +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,560f9fef-6b64-4f7b-a7ba-1ffbcd81ee45 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,493a04bb-cee5-493d-9aa6-d0a0dfafa3f4 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6ee1269b-6a9f-4920-b806-58345620f9c1 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62aff1ec-9169-4914-9487-eb19dee8d8ea +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b9f1b806-0273-4061-b506-4ae1d6723ea1 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,40b0a2f9-becf-4e3a-aaed-f9f80cb9c844 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,21121508-fe4b-41f9-9636-ab01574a841c +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa1e595c-4b5e-46b8-918a-e7572b2bb24f +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6a9f2fbb-4682-48ce-b693-423748c80187 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0127bad3-01a2-46c3-be15-d5b8a4726254 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6108277b-2296-409d-9d93-e01746574003 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cf8d6003-29d2-436b-a370-480e7ba850cb +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,42eb9fb4-1c7f-45fe-b953-0cc55465a2de +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7a9ac5b4-9204-4792-b1dd-9aedfcdaf95f +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4a684809-95ca-4641-82cd-24b4d4fabeb9 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3c2326a8-b150-41f6-a8aa-23e4ca5328ee +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,593dc351-8387-4f20-9028-db634650d98e +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,15f385e6-c5ac-41a9-8a70-fc290f5a5a7e +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14196b54-c73b-4412-90c2-79bbaa95029d +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a562775-38b4-4b23-bc93-77243143928a +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1ba13727-e748-45a6-9862-26ce37f81c5a +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7870f3e-87b1-47dd-aa1e-09740ee1a4e8 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5f4819e7-cfd6-4a1f-9b5a-69bad9c171c6 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f01e0582-21fb-4057-864c-462b7e653bb0 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,afe63e6b-2161-4925-9bec-8206bd7cdb71 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,effa20a7-9a6a-4e6f-a629-67d1d4e2d8d4 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,eff604c3-9bef-4afa-a9be-c9365c5cf80a +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4d7a982b-b21e-429f-a340-2cc4a175d136 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b80f18f6-2479-4ae1-a37e-59f429330ce4 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,29b61f26-16c2-4393-9d06-8a4f5c66cc27 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49f40f2a-907d-450d-9e0b-dcdc48789cf6 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6115344c-f2bb-414c-ae82-e8f5805a4b59 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,98256883-641f-4500-abea-9b524a79a7cc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,714f2d3c-b723-4bf3-8fe0-50da2ef0246a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6814b62-a32c-43e0-8305-cfc12d334ca9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,774ac442-adc8-4874-9dbb-af645ab79d25 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8f0d5049-3e78-4452-b3bb-7350662b28f1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0ef2603c-d29d-43d3-90f9-fe2f237f9090 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4f169037-8fa1-4254-a386-59cacac1101e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,69ecaebc-8019-442f-99b6-244c0acd6974 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,721a51b3-b98a-4c02-b814-33c09bc7fd33 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6fcdaa2a-fe60-46ab-895c-f60b61c8df7d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4672c750-bdec-427d-8d0a-eda5fcce6d07 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,939bc674-c64a-40c7-bc1b-62476b5e029a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fb8d2833-9a0c-41df-8dfd-c000b9092807 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,28d1fc50-cdb5-41cc-a20a-d378549bf771 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ad705d9b-37f7-4b42-8b5e-a9a45f78a1c3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fc7db3b1-641c-4d34-a478-d70bf5e6b7cb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f2fdb96c-f36f-4f07-b864-c58999b6505f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,68a8ff53-6c4c-4fc3-ad63-0a0707118a2a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,14ab9318-5613-46e8-a3c1-25a1b1e31951 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ad3990c4-13ad-4b6a-beae-8df348a2e36e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a84224e9-48a5-4d80-a747-f7bd141d0d22 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,062d86d2-7ae7-4a45-858e-686dda7cf7e5 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,afbccde0-7674-471e-9943-a8d9554780d6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d7c4d54-c0fe-465e-9cf3-eb81a810751b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6d3ff353-d595-40c3-853a-70775e99fff2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c4e5e377-34b0-48af-ac5e-265845bca21a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e877867f-d726-4a05-b99a-d6c9fbfdf7a8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,20818bf7-ee51-448e-be17-f6cac7364593 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,694cf85e-a0c2-49f8-852e-77a2ba6f9030 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,caf230e0-41a7-4ab4-98e1-c9fec75a5468 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b1f40030-dc6a-4757-8a26-a6d7cd93e3c9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,895951.44,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ce369b35-e81a-4af1-a492-9d6a4fe00caa +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,895951.44,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e2799de-c569-4422-9a89-e1993e90160e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,895951.44,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:25.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ccbe0e2e-35ef-43d6-9e7e-da5ac255ec92 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,836915.8800000001,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1a947c85-cbb3-4897-952a-2432b18744dd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,836915.8800000001,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba7fdb20-96c1-4206-a924-b17ce5692c0b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,836915.8800000001,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,23c4b453-4c93-48f9-8124-30d05d49a6f6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,131376.00000000003,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,910ddb9a-c5fd-4d28-bafa-55f83c9c3986 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,131376.00000000003,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,240507c7-c486-4841-841a-b483621e2920 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,131376.00000000003,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,abdcdee6-2983-4134-9ea6-fdf01161b758 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,163392.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,07697359-e150-4149-b01a-68d70da01930 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,163392.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d6fd0e81-bf95-4c44-a7b4-8e40ad55a45b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,163392.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,252a9e17-4385-43ec-ba35-057971a7ce1a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,131376.00000000003,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,12532d65-1152-4c88-bfe3-3d3d452519f2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,131376.00000000003,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c96ff948-0326-4ca8-8c3b-964f43f03380 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,131376.00000000003,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,29799f16-641c-4571-bdf7-092fd3b2df27 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,163392.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,04900a57-ab00-4374-b39d-fb47141f5ef7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,163392.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f9d35d8-a01c-46a2-a678-f4f788642e80 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,163392.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,64b849e0-afbc-4951-9b65-5958ef97788b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,131376.00000000003,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c3312dec-1942-4ce4-9afc-88fc66c2ceb8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,131376.00000000003,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,095ed4d7-756d-4906-a896-5112ecc49d14 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,131376.00000000003,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,84a7e647-d78a-4cd5-9448-0fde3bb6433f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,163392.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,26d445a2-0507-4476-943d-f6b7584cd4e2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,163392.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d9ae8db4-9380-4405-afb8-a3c9bd459230 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,163392.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9343e828-2eb5-4c1a-81ce-42997f732971 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,131376.00000000003,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a325f350-57a2-464c-9b40-e287c1b8f666 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,131376.00000000003,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,807356ac-f536-4aa8-b2df-e97eb0cc11e0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,131376.00000000003,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,43a06141-5848-464a-b234-137e45513adb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,163392.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7ded315-1fb6-491c-824e-5c43ada78195 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,163392.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b125423e-4353-41ef-8614-80aa1985848a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,163392.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0f89eb20-f5d8-4c9b-9158-780187e26eae +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,131376.00000000003,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,84573ba7-a798-4e5f-9df2-f52ff43cc58c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,131376.00000000003,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,10f54a8d-d66c-43e1-9e1d-377c02c2d77a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,131376.00000000003,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f477c6ae-c803-4e0f-966f-0dbb58dc5b77 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,163392.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1d02c082-2b67-44ca-9958-877c7bd6363d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,163392.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cbbfa943-0059-4bd3-bf69-c1330e83d2c2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,163392.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,776d8e37-ca61-4862-a3c7-89ce7a39d10d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,131376.00000000003,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1ea29922-31fc-4002-9e54-3990cf55ec2e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,131376.00000000003,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5bfc3e26-6e3a-417d-9c3d-a90459890e79 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,131376.00000000003,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:11.9, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1516e6f6-7a09-41a8-b342-a27249f68902 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,163392.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5abd26ed-afdb-4e79-a62a-d49e5f8e0d73 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,163392.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b00e48d-eedf-4b23-8eb8-4dcac509d26e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,163392.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,38226c17-5888-46e0-9e02-a7cf9afee349 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,112825.59999999999,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aa740cbf-0c7b-40f7-a3fa-e192c5cea5e0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,112825.59999999999,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f8d2453-83e1-4dd7-8beb-bc00c4c88749 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,112825.59999999999,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f9b82d05-3ebb-4d93-9b04-00fd4ea266e0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,112825.59999999999,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2a7d796b-8ca8-452e-98b6-94226211f312 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,112825.59999999999,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bee49a62-2489-4f59-a3d7-67cb5bbdb7d3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,112825.59999999999,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,45a08738-bf67-4c4f-99a7-d651ce8f6b53 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,112825.59999999999,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,10911d70-500f-46f3-9c3a-8ddb353fb8cc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,112825.59999999999,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2f193d0-5840-4cff-92a6-7812209087f4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,112825.59999999999,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,97b932de-22d3-433f-925f-bc9739fba9bf +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,112825.59999999999,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c89b740-cc1d-432b-bd7b-4c111396b0cc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,112825.59999999999,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c80a547-6a1b-47c8-b60e-04d33800e33f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,112825.59999999999,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8f7eeb36-0669-402c-8113-11ea56f88391 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,112825.59999999999,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5d2201cf-3641-4c40-87c6-22143a892991 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,112825.59999999999,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4eb0236c-fa64-497e-aa7e-abb0c9145fba +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,112825.59999999999,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,63d1f451-a08d-4083-920c-d9c09b9776ee +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,112825.59999999999,fuel-combustion-consumption,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7ce43fc8-f7f6-42ac-b74f-1f8a3dc08503 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,112825.59999999999,sampling-scaled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a1adb41b-76b4-4ca2-bd70-4d576d04dae4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,112825.59999999999,modeled-data,"fuel_type:Peat, density_value:400.0, density_units:kg/m3, NCV_value:9.76, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5a4deca0-a716-4a70-804a-1554d69b908b +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9e32d798-d87a-4319-918a-d4bf02d3fa6a +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3cca4332-d3ae-4dc9-80b1-ae79e9985bcb +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1f9a51ae-fb20-42a9-9de6-c980a60aadeb +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,25bea582-1bb7-4ff9-abd9-e94c2f4fcb0a +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b6997e90-56fa-4f1e-aed1-5566cb59ffae +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c952c0b4-408e-4c01-b74e-6769cfa17a74 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8a6a5fee-454a-4c74-b734-d4005bdb2924 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba69b6cc-0978-46dc-acb5-32f3eb7bdeaa +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,79412856-fa81-4f4c-b933-5159fd09f85e +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed0ddb0a-0fa6-4c42-8c65-986e20cb9776 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,69d2daf0-ecda-4a6c-a359-91906e4bc7fb +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8653f525-86dd-4131-b524-16aba0a75bd2 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4536345b-bfaa-4957-97c7-6f18d45c6711 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,26a30e51-db02-418d-9b39-8f1747293d57 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,87fc8f11-97a4-4536-ac64-b8730098e545 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7fec866-663b-4bb7-9a75-e83ae4b7e292 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,07f79bc3-e593-438d-ba6a-c60879779b6a +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a9902e5b-cf7b-4bf3-b314-e3f4d20c613a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74fd5558-7817-460f-a192-066c5a3a867c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,da2063ad-9c56-4a98-aeb2-8012e32adad7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,bbf300cc-068e-4c3f-b90f-12cf72eb4ce8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8799679c-44df-4ab8-9f96-c9d5155c128c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7c384bcc-8f62-4524-a81b-c832bb0aacdf +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1a38d78b-3e9a-4078-b4e7-0c0543496e66 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62cf2818-66e0-4628-9202-429f0726cf41 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f66413b0-f391-4e51-aec9-0e7b8329b7a0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,23916af6-c4ae-481f-a654-f56b80b129cc +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9252444c-54f6-4978-8c8b-bea8893bb1a2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7dfd6915-036f-4fbf-b527-8fdae9694197 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,59d46532-df15-4ec5-b4cb-8a01e2d5f3d1 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e4be2daf-aa51-4a1d-a27f-0f43c28da44d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,464cbf33-2507-4a35-9921-1fea20236aa3 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d8be6e06-65d1-4eda-bd0f-1d5f35b485d2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,710640.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ce341110-4299-4753-bf0e-b9ef138bf9e4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,710640.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,72ccc1a8-e3c4-4612-a5dc-da8f39513e52 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,710640.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,15cc3c4b-a5a3-49c3-b6af-ca82ec5b7ea7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e03866b5-9d09-4263-9504-87e90748c293 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e47aa1b-f203-4839-84cc-69d04904e2bc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,43b2bd18-cc7f-4d2a-89c8-ef7d841c0029 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b24992a2-eae1-4675-8f0b-e297f17a8374 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,747cf984-527e-4402-a8af-b4f3ed14542c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,98bab81c-a272-4479-83ae-a2a87b2436b5 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8d7b4f29-b738-47f7-9191-c1f5b29b56f7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e6596e36-6676-4f9a-84db-e2186f6d1ed5 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,86dbcb5f-37d9-4f1f-a1c6-27e15a73f24d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1755d171-070f-4e90-b51f-f3ce34a8d7be +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3045afd3-52dd-439b-88a9-38c5aa1cb1f1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2c712e88-25f3-47c5-94ea-3be8ea60395b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,995eabe5-8d22-43fa-9748-b6e65bd520dd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dd6830e8-326b-4df2-abe5-2d5eaa302c28 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,58527c72-425b-4cb2-9960-52461b344579 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,67f45aa6-3cef-4f5c-96f6-d6ca1f554235 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e252094d-0623-41b8-8e57-a7755d3adf28 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f203e412-5d68-42d8-820e-cb19fec0ff18 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3189039c-f05f-4300-80ad-0d6b51a45b09 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f7b12295-a789-4a81-803a-b83d3e4e2b2e +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ac837720-e47e-4be7-89d6-98dd1b485448 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cbf589ef-6835-4450-bdf7-878486e64313 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5f9c5409-8b3e-426a-8924-c2510be33f40 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e408a8e7-13a6-40be-82ca-3fda87020f9c +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76e7aedc-862b-40d4-af99-1cb716eb3443 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8665481a-3f33-4ac0-9714-6e1315ae0bec +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,096a97b5-09ce-4fbf-9b17-f93666b9b15a +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,370a7898-6850-4942-8ca7-774fb459b9bd +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,50c6884d-07f1-4fee-85df-fb84d1c6f40c +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2e5323f2-f431-4ccf-9e65-f1b6ed5e6c96 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,926b0241-e77b-48e0-b94c-836cd1523b7b +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc6ef924-c9f8-4f1b-8e26-4786027ec310 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7c027c32-70e7-4509-8af7-ef714f8409cf +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,676800.0,fuel-combustion-consumption,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,71f2184f-544f-4c09-be1a-909408fdb289 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,676800.0,sampling-scaled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6a814714-1972-4065-9149-1da52afcbf67 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,676800.0,modeled-data,"fuel_type:Crude Oil, density_value:800.0, density_units:kg/m3, NCV_value:42.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d3aa0b76-673c-4f11-87e6-a9b17bf0088a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,635970.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f4c9f02d-6cd6-4446-81a0-8d4cc5a10bd6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,635970.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c581669e-097d-43bb-bdde-3cae44dc6b4e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,635970.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9f5f4676-c6e5-4c63-a392-fdd9e1186510 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,619317.84,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f1813652-0c45-4110-8892-ed2d9c5ba2e4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,619317.84,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ae911c3-25b6-4cc8-87e6-899ecb3d5f91 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,619317.84,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,916b2223-679e-4df6-a5a5-9a5b779ca514 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,614293.24,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4f8befb1-2d57-4a54-a31d-e2584c55c458 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,614293.24,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,03fbc2da-c266-4bb1-b8f3-db1629dd0473 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,614293.24,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5029ed1b-9bca-4d69-b35f-1099b56bbb65 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,617738.6799999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fef214a1-cc62-40d3-b3ea-978464a9a3b4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,617738.6799999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e5d8c242-8b8b-477e-8083-e4fd8fadf34d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,617738.6799999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,db9b8c29-6928-4fc1-983e-b78d7a3de5d0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,635970.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2774df42-b89c-43ba-81a5-aee51778fd78 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,635970.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,df0815d2-6172-450a-ac88-269b09376ee8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,635970.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f578f7fa-8869-43f8-bee3-79c6f3400bad +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,619317.84,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,006428fd-d396-47eb-9b21-abc00854dacd +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,619317.84,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b5509188-5b2f-42e7-98c8-3e3669c7c0cd +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,619317.84,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6ef71708-4909-4e2c-90e5-f58d92899f2b +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,614293.24,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,925f50b3-d8a0-495b-b4b1-c8d82c651f1b +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,614293.24,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b154cdb-521d-4f2d-bdc4-27742b5d41f1 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,614293.24,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,91bd30bb-bfc9-42e1-accd-289552476edf +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,617738.6799999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,114cabf1-5abf-4852-bae8-a37ff723a454 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,617738.6799999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e34cf8eb-1a24-4a64-b1e8-95a425601a91 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,617738.6799999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,abc4cef2-f4c4-42ea-b7fb-7aadca3eb82f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,635970.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,462e1ab7-ccc4-455d-8e29-dafcf4a39fda +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,635970.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,62f22a4a-1005-4938-a741-5ab86410ddc8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,635970.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e3ffdbf0-d277-446f-b126-4eba520a8163 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,619317.84,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e7cdc215-a2bc-4481-8007-7bc53880b70d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,619317.84,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ec672b2-792c-4bbd-9573-2d005c76ece9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,619317.84,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f5cef4f7-61fc-410e-8db8-846035783ec2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,614293.24,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,24fac35b-025a-4ad7-9f01-be31c1b1b2c6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,614293.24,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,266f4691-7e3c-4aae-bcbb-a1fbdc2d1e66 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,614293.24,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ab94d0a8-76bb-4672-ac2a-1050c21f7739 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,617738.6799999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8df9a3dd-fc05-4e7b-ab32-b6f98bf197e0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,617738.6799999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,029443a1-8b59-457b-9e89-ef5a8e3e1ebe +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,617738.6799999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,96363db9-1fe5-4638-a707-186ab045a0f5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,635970.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3507d45-4f7b-483d-846e-b55b9f3191d0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,635970.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d5c2393-dc9c-42fe-8b22-44885a65fdd0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,635970.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b305b259-a500-4e3f-8bae-e99bb9a6a713 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,619317.84,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f95a18e7-5e97-4122-82f8-1e73c8fc79e6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,619317.84,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d2529e39-e128-47ec-852b-897261b35be2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,619317.84,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,aca8b74d-ed21-4be6-8d7a-f030d05e693f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,614293.24,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,62b85f44-75f0-45b7-91b4-4f2390641e48 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,614293.24,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,74376138-0ab3-4a02-b98d-59a86ba89aa9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,614293.24,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9b4ebf5b-1ca2-4cfa-8f84-2eedbc4ac155 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,617738.6799999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,41a16d56-1d55-42b2-93ca-1fbeff147801 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,617738.6799999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aa3ec524-27ea-4d1f-acda-c7086bbb04eb +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,617738.6799999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,03bdf740-66d2-436e-bbc1-dd274710d7c2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,635970.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6fc691a5-3919-47d9-9bb7-482047620255 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,635970.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,279d8a21-4a5b-49b2-9edb-6316d4b79833 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,635970.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d616d2d4-a6b3-415e-a59e-41c1cf8653be +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,619317.84,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,54f40f07-2dd1-4d17-8ab1-bde35852540a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,619317.84,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,27a261ed-b0b3-40e8-8d95-b25dd5ca9d63 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,619317.84,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c0262977-fc84-48f2-8da5-a6a63b8b1d8c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,614293.24,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,905d8aaa-0fb0-434f-aa9f-1421920fee78 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,614293.24,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fd8c5fb5-484a-41b7-9a9f-ba6a8223bdc2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,614293.24,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0767ca4a-174f-4b56-99d6-bf6c3a5332cc +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,617738.6799999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b65d491-2817-4132-8534-38beecf37344 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,617738.6799999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,41c13f6e-53c5-47d9-b84a-53543a70d271 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,617738.6799999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c4a707e6-8ef0-42eb-8b2c-2ba528847a43 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,635970.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a5afecf8-6c02-4ef7-b91b-82700d340f4f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,635970.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d60f6846-3231-4bd9-a9e2-db2d82824f02 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,635970.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3124f24c-3234-47ed-8a47-74dcc54138fa +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,619317.84,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b6609b0a-e39d-4c15-adc4-443ef5202914 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,619317.84,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,83d9a9b2-61cd-4d78-babc-08cd14232b59 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,619317.84,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fb1d1f99-ad6a-43cd-8951-64672538a9ae +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,614293.24,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,38b5b976-4e1f-4642-9548-1a640aac9463 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,614293.24,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eafcab44-6bbd-4b4a-908f-83a13f3fdda6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,614293.24,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0d3f6ba2-3288-4251-8177-c4c1f3b98b72 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,617738.6799999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0ac4f38a-0767-43bc-a0f9-87a13d982c64 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,617738.6799999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d8a1912d-1aa9-4fde-82f5-175f1cbcc089 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,617738.6799999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6f0b591b-5f8c-426f-b40f-a8aa4a84a8c3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,619579.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c691d8f0-5bb4-42ea-9a92-9d9bd02c0460 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,619579.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,126be9fa-d003-4c6a-af54-2b4e60f2d7ec +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,619579.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5781a6ff-4527-4a64-a492-804fc1603dec +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,603356.04,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b3242b5-dfe6-4825-b8af-904ee7c50462 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,603356.04,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee4a230b-ce26-4764-b94c-2f9770d281d0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,603356.04,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3ea4bc25-8f98-4b06-84b8-19666b222d70 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,598460.94,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,de0a9a3d-e934-4f6c-bd93-bd7120352833 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,598460.94,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6ba2cdc4-ecb3-463d-b0c8-b7a5be269700 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,598460.94,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4daa1d28-413f-4b5e-b498-8eade89f7b15 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,601817.58,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f583d03e-83e7-42b4-ab26-7a04ad1a775c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,601817.58,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae61d0e6-0095-45a2-b999-57515ab95c03 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,601817.58,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,17b1a167-b828-4995-b879-e2761555d1cc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,619579.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8583a302-3069-4af6-b250-fbf9cb5f143d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,619579.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,115298f5-c331-43cf-9296-e80bd614cfb3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,619579.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3015afca-679b-4b46-836e-47dab4d5e907 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,603356.04,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d7b7a63c-5931-4656-9fb1-f96e75a109c4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,603356.04,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,87e8a78a-4976-494c-a66c-d4a3882ad27f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,603356.04,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bb75a5e1-5fbd-4cd2-a681-c1a430fce3f1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,598460.94,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,43a917a8-ed53-484d-b973-88354b2c7e11 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,598460.94,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bff40597-04c7-4b9e-879d-fc8b31a43dfe +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,598460.94,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,76f73503-4a40-456e-ad03-9e3e4619eae7 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,601817.58,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,197dee2b-6969-4ee6-87f5-5842cab4c3df +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,601817.58,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b016e87-6d3c-4ac9-bfb2-e351c9e5d11a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,601817.58,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dd148156-d82f-4bc2-bb0f-307fad4e9552 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,619579.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,249f0cee-300c-4db9-88f7-52a4b8a9b5d3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,619579.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dee5b5a9-7ca7-4a38-8b9f-7aee462ecc56 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,619579.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3f7740da-9092-43fd-a2a6-c5a899bf017d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,603356.04,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e6ee16a3-f74c-4bfc-abd6-8a2b6cd586e8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,603356.04,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f178b485-e02b-44a0-944f-55c061e1e233 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,603356.04,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,704afa66-3444-4e0f-8503-728dcc282dde +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,598460.94,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,391c9145-490b-47c6-8e3b-57a55316f5c4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,598460.94,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca269d6f-89b0-4b5c-9452-a677e154c434 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,598460.94,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5d378ea4-c7c2-4d47-9802-af1458f552ac +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,601817.58,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b218309f-335e-493e-be9d-ca3f5855ee89 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,601817.58,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cd9a142a-2b7e-46b1-8877-6747946b9da0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,601817.58,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9a4323ca-55bc-4eb5-9931-6cd193f77c8c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,619579.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bb3e15eb-91e4-4b9f-9518-1da462e25471 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,619579.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,44e1fea6-b915-4c5d-8966-8287654e8786 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,619579.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,539cbba3-4bb2-4e1b-90db-17365d5f3c2e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,603356.04,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,42a46145-8ad8-4867-99f7-fcf55400b5c3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,603356.04,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,210288aa-bbbd-48c5-bb7e-cbc875c05c34 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,603356.04,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ad73459a-c8c4-41c1-a470-ce50d34f0a93 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,598460.94,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e1915d1c-a61d-4cc6-9ab0-28d65ab6c1b0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,598460.94,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1d86ebd5-d06a-411d-bed3-1826aba0abff +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,598460.94,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,839d46af-7f7a-4d45-8b59-69d6fd26a229 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,601817.58,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,faf41dd5-d898-47bb-b543-de1da835d42d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,601817.58,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f472daa-7690-4f65-87b9-210aad00c7e9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,601817.58,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,18ac0397-02c4-4e28-a735-ea3897272d19 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,619579.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b6bc66c0-b895-4e63-bdb6-3c0621c1d322 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,619579.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b7fdb28-dfbf-4da7-9d58-9c4160a032fb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,619579.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,48f393e1-af5b-4172-ab5d-6d539549816f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,603356.04,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,febfa232-3cbf-4b6c-bf6c-0d38fef74828 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,603356.04,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35b36687-b609-4fbd-a4a8-28c8b9467abf +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,603356.04,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3353a6be-ba13-40b9-bc22-7ec9f9c74e45 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,598460.94,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,67dcc81f-7521-42c1-9acd-4d8a6425081e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,598460.94,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0fbe8aec-ddad-43be-a873-a1ab9bfe5c43 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,598460.94,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,497f6a7e-7cf4-40d0-b5f7-9c8c96cd3e9b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,601817.58,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e70c3361-1c32-4d0a-b2c5-b3df37109cb6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,601817.58,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a2a7a175-2f19-47c7-a3eb-2f4fe1fc611a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,601817.58,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6cb860e0-2b84-4e34-9d78-4f6fdf8e5028 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,619579.7999999999,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4d6c71a4-dfdc-489e-a50c-970ffdb160da +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,619579.7999999999,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fd0a9169-6282-4f60-9404-1c11db48304c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,619579.7999999999,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:44.3, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,14b7ffe3-5556-4a6a-b33e-db3d1dc2ddfe +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,603356.04,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,77d70d86-03bc-483d-b682-01721105922f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,603356.04,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,44f7185b-85b0-4fa5-bd3e-a646f8736ffb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,603356.04,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.14, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8145d6b2-756d-4bd0-81fb-592e905196d2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,598460.94,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b5a4ad93-d738-42ef-af90-e6abbbed7ddf +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,598460.94,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b95fbb1-fbaf-4669-998e-2fdc5e721672 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,598460.94,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:42.79, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,96c41a8e-ecf5-44ff-9ab3-e44f0f9f5f92 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,601817.58,fuel-combustion-consumption,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c7c4ec52-1c1f-4c6c-8d44-7fd3832d079a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,601817.58,sampling-scaled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b4c1186-e862-4b87-8f3f-09de843099ae +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,601817.58,modeled-data,"fuel_type:Motor Gasoline, density_value:740.0, density_units:kg/m3, NCV_value:43.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e5ef3c22-f818-4c7b-9b0a-26c09e892f17 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,679775.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ee89181d-197d-457c-a7f9-9ccbd8f6f21e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,679775.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,54bf139b-7ca0-4d59-a156-18c28b819fb3 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,679775.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2cdf7031-ae96-46e7-9c6e-2689ff43a1a4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,679775.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,15e26991-ebf0-4393-8f99-299de2f10d66 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,679775.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b791786c-4c38-4a5a-9c71-0e3a9dac3bbe +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,679775.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ea5970fa-b21d-498a-8618-ce596a507d3d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,679775.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,80943608-6b3b-405e-978e-490996bb8207 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,679775.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7550728b-d5db-4fee-9e5c-dcaa30ff1e0c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,679775.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,718a7240-5fc9-4cf8-94da-60673d684349 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,679775.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,714cef62-08b2-493c-a3e5-994e288b9cfb +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,679775.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c09dd4c7-488a-43e8-b79a-7fab88549327 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,679775.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d07a191c-6c1d-4ece-91f6-d00296f79498 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,679775.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f816107b-4672-4882-997e-364076ba77ab +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,679775.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7964aeef-024a-4b7f-9b94-3bbd349bcd10 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,679775.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,37e75281-fcca-449f-90c7-480bbbf087a6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,679775.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb02f8c7-ba0d-4d51-9c39-9bca54d05edb +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,679775.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,49e2c319-f24e-4489-beda-0514d1cd17aa +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,679775.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,545e776d-0e1e-4512-9b1e-997121b43460 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,683279.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,968e1b1b-0633-477c-8a75-dfb4fed3d7ea +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,683279.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,18bfb881-b641-4787-b1ef-5d818f6931dc +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,683279.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cae986bc-cd71-4ece-a087-12f6995de36d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,683279.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,db4ebc9c-8447-4fb2-baba-cd241a02265d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,683279.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1726a6df-9f3a-48ca-a9ca-d2ed0eb2545c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,683279.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,be600fc1-1405-43ab-846e-9fe91b8bf8ea +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,683279.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,057f2a40-3bd4-44df-8f1e-57d10c3e0fc1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,683279.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19fa5ec0-c68a-4440-acd3-7e356d8351a2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,683279.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b90d747b-fc5b-48cb-a688-4a23ec4b87a8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,683279.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,76538994-d90f-4b00-a93f-3709a39d4d50 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,683279.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b2fff912-fdae-4df8-a76c-0fca89bc30ff +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,683279.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d3d0951c-b041-4142-b332-6ca9742ec3d1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,683279.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dcfd3785-42d5-4586-9d96-ad817581b49e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,683279.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39d7aa02-d30d-437e-ace4-5cad11d7cc9a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,683279.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,eecf492f-f1d8-43e9-9ec1-ee2936223e2e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,683279.9999999999,fuel-combustion-consumption,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7a78fd7-ecd7-4a42-b0f2-130d61c904bb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,683279.9999999999,sampling-scaled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a0cce15e-8672-413e-af09-3bf5b36c63ea +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,683279.9999999999,modeled-data,"fuel_type:Other Kerosene, density_value:800.0, density_units:kg/m3, NCV_value:43.8, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,eeed749e-5479-4602-a847-6b9878649ef4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3cd8ddf7-c4b8-4164-aa7b-e1a215985bf7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,718788.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e426914-c237-4f9d-8b2d-ba28468f1cbc +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,718788.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d05610d4-ac4d-413e-86e4-137d8b4576a9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3ddda078-d8ee-46e9-9b83-23b7d26d9b40 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,718788.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,23446f37-a31d-4b85-aed9-cd515a4d340a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,718788.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,be0f826d-fb84-464b-9893-04785c4a94e4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6af1ae2f-024d-430a-b43a-b7219adcf428 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,718788.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,26f37561-564a-4b4b-8980-c9f8f4a625ff +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,718788.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fff32a8d-6a59-4d3e-b67e-a1a47534d118 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,34c17976-f54f-4274-95a2-263cb722f0de +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,718788.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b16cdcee-8959-4cff-aaa0-1ab79546f43d +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,718788.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,97b06d8c-63b4-4670-8d33-c99aba5d0170 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cafc33f5-20dc-4185-89c3-7793358aa6d9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,718788.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dbfb494c-a768-49de-8fca-2b976837a024 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,718788.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a6a50b21-c9d1-4fdb-b60f-083e400595a0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f5d52995-7932-44e7-b782-90426acfc9da +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,718788.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00223ae9-2c37-4e4f-b268-1a4b632a2c20 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,718788.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6596c215-8fe3-4b34-b1a3-d734e7602645 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85033c4a-656f-4ac4-a2a5-57676852dff8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722400.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b9d8b569-afd8-4bf9-bfc0-b3b8b789ccd6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722400.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f4c27eb8-3345-4005-81bf-d37b8754a318 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bfcf3ce2-0e91-464d-9e39-3ad7789fffb4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722400.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0cbaffd9-52ed-4853-9343-c0dab5c44679 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722400.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9c768f08-c358-49c7-afb6-ea0b8f446b21 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a28f7230-fcae-43e8-b98c-534a316e654f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722400.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,21c9bf7d-2199-48c4-989e-83e1c3b4b39b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722400.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,07d0579b-cc69-4bd7-aea2-1e5c543cc703 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3d33b87e-fda8-48da-ada3-7209deaddd26 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722400.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f6cbfff-fb02-445d-8229-a5709cb2508d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722400.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d4c58f1c-84c1-4b64-96cf-e9902241eee6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9938dc10-7265-45b6-871a-3a47a65926e2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722400.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f583cdf-c1a1-442a-b291-f0b5fbc94ed0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722400.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,885df02e-e517-454e-a539-ea8596343c77 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f5b08a6c-089e-497d-b2a6-8decb11d8128 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722400.0,sampling-scaled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,baeaa751-67c3-4b49-b907-f171a66a6be1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722400.0,modeled-data,"fuel_type:Gas Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6c9f8300-c355-450a-97df-f331428df4e7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b6e6253-b801-420e-acf9-b7d771cc8e65 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,718788.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ff922ef-b0c9-47b8-b1d4-4fcc2c8e146b +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,718788.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8d46d421-16e7-4981-8d99-b50ab6bc007f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,715110.48,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2ee81d5-c1ea-410b-880e-a74365436f57 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,715110.48,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,65466152-6270-4390-a0ef-d06943f152b7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,715110.48,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fddbb186-972a-44e3-9423-a111ca63af96 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,711432.96,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b11a7f8b-9df7-4716-84d9-0c37eb598347 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,711432.96,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,67dd8c78-308b-4e40-8bfd-4469e4c297a7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,711432.96,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,38ba53e1-47db-49d0-aab8-4af412587d2a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,714441.84,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b80bbbda-ea79-45dc-a1fe-4227772ddbd2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,714441.84,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b7fc01bd-a304-47f4-8076-f10c62d996c6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,714441.84,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,774c8dd8-c73c-4edb-9d1b-2e14e60fd896 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,38dcda06-dcbb-47cd-831b-5b0fce813eb9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,718788.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b364284-1a78-4d83-abfa-39918c35c4d8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,718788.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2a057976-2bf2-4212-a571-48d84f896ff2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,715110.48,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7aba34fa-5c7f-4690-a416-fb91a97a7ec8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,715110.48,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,46908097-485c-4e6c-aabf-66245f7b01a8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,715110.48,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,bd9eae31-3513-4257-b736-6e2222001874 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,711432.96,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0d6ac526-4cf2-4b54-89e2-6c96d0190234 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,711432.96,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bff74309-e4a4-42d2-9dbd-8d053e220fb4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,711432.96,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,af548a80-3965-4394-9670-1f482f4b635e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,714441.84,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9177501d-0e79-4739-8fea-dbd67151ee4e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,714441.84,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,af6c44e6-5f0d-4578-b914-ba568ca64291 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,714441.84,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,373209e2-c6ce-47f7-9904-3a6378eacaca +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d1afb320-b1fc-4ac1-89c3-58d4a38a1f43 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,718788.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7dc3a756-2e6f-4a6d-8252-ffde025191a4 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,718788.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4baab66a-5244-4958-bc5e-a3a41cac6eb7 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,715110.48,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5a899e47-3ca6-4612-bb89-21f692a86944 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,715110.48,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e49e265c-85b4-47c1-b6d8-97eeb788e4e6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,715110.48,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d3daeb0d-9366-4936-acb0-9c5a249aad56 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,711432.96,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,70f1905b-3f55-48b2-ac42-e1fb92a3dc88 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,711432.96,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2a73a08b-3dd4-4275-8af1-288246ca6b52 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,711432.96,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e7acb669-9bab-421c-bdf9-579cb85773fc +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,714441.84,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6fa528b1-407d-486f-834d-263f7d4e9baf +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,714441.84,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f4871289-0b38-4a9f-8608-9d8cea13acb6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,714441.84,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b40aba9e-bfc4-47f9-acd3-5576dc3fb8ec +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,953dff42-9d3a-410a-b3cf-e74cbbd2f213 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,718788.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c273f808-06eb-4b1a-9177-ba9ec825909c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,718788.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7337428f-a479-4164-b00e-23633e52fa08 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,715110.48,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b84e779-0bf2-4c7a-82b0-19e4979317c5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,715110.48,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,be7f9738-cd2a-48f8-851f-479d548cc08b +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,715110.48,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d2231092-b0c5-44ca-b9a5-53fb20873393 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,711432.96,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ffd3c7c5-fdb4-4634-ac3a-206cf07366d9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,711432.96,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8a951914-1f72-4558-93b4-7dd42392d59f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,711432.96,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7ed47aa6-b5f0-4494-bd46-cddbb2870984 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,714441.84,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bbc88810-bd9d-4fb8-b936-95733c5921ba +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,714441.84,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a9debd4a-e48d-4c8a-bdfd-006a04e6879b +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,714441.84,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,376ed172-0baa-47e1-91c1-d5d0b8926697 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,609a35ad-74b8-4bc7-b7ae-9961d65d4007 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,718788.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,41efcab8-2dcc-4051-a5ac-96fa6647c184 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,718788.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d81979d3-e1b7-41ab-8a40-763694bdf5c5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,715110.48,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d3a7e020-66dc-4756-b607-55868cfc38b3 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,715110.48,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6b118c1e-6e9e-4d12-9e37-805a8ac3f9ea +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,715110.48,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,567c6377-b198-4df5-ac61-8aebc6af2d8f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,711432.96,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2f58b9af-346c-44a7-8017-d4f6c5277ef8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,711432.96,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee2b1c37-78a6-4c98-bd07-6ebbe49a315f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,711432.96,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4373a093-7b41-45d3-8d9b-1e7d17693e9c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,714441.84,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a83a6b5-0e8b-43d7-b758-4c5651f93071 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,714441.84,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e799a45e-b28e-4c4f-9381-be4a7eae1829 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,714441.84,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5cd5d81b-09b2-4f8b-9c8b-7816551e1791 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,718788.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,de58a13d-a4f3-4425-80f9-f0ec809a015a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,718788.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dbf254ac-d426-4c31-a48a-22430da33e38 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,718788.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,13089690-48b8-4c39-bfab-37d854a45bf2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,715110.48,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6480a440-0355-4ddf-aaff-bd7ce090d9dd +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,715110.48,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9bb93f01-6569-44a9-9845-25e51346cf7f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,715110.48,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5afde8a4-33f1-4c86-847d-9b6734111dfe +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,711432.96,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4c1e5860-75e5-4855-9674-5812db09480f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,711432.96,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e632319-92d1-4cb7-8cef-ab245f8866e8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,711432.96,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3b6d17fb-67e6-48eb-9a45-c733d6f37d1f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,714441.84,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ac5f4c79-df28-4e2a-a1f6-29542312e53a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,714441.84,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c2b62f98-61f2-49db-9ef6-eae026351131 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,714441.84,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f4cdabfe-bc32-409c-b10d-c3877454a980 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b7a21d51-74e6-4e9b-bc34-143f0d244ab2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722400.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c0b5b957-74ef-43dd-a522-3b9a5c2cce41 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,722400.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,94fac1bb-f40e-40b2-96d8-7db375f2aca3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,718704.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c475155b-2955-48d0-8b6a-125b015d6c50 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,718704.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a132a823-a34f-4914-90d9-3da046988708 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,718704.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f129fb8b-c031-47a1-ab1c-b1c65713cfb8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,715008.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0c6e1bd4-2d6e-46af-bd62-3d66c241f7db +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,715008.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,23a24f62-2c06-48df-b420-7b7270a3046d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,715008.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,799f1b67-3d98-4c5e-b461-9174968dc030 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,718032.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,191be3a7-8217-41df-9021-87c3ef948ac9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,718032.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa580b59-0370-4410-8124-89f9c1535e56 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,718032.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b9332973-45c1-431c-95e2-8986511bb074 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d73e56a2-56a8-4150-8b48-cab8f648ad5c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722400.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,449c676d-a3eb-4c92-937f-2242fb01645a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,722400.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c2a726e4-ad6e-48a3-8660-1f1fed73c063 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,718704.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a8a49eaa-28b2-487f-9679-0ac7e5d86a60 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,718704.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0cd0f000-ec0c-4e99-9248-55713782cacd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,718704.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8b9b3d8e-da9b-4512-9203-66f98e3db40b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,715008.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,67b82a05-9161-401f-ae7e-1aa7a76819c3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,715008.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fd5a6735-bc50-4293-97fc-89ab5a9e7f3e +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,715008.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b4132ecf-2f82-46a4-b252-219906320926 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,718032.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,09fc61ba-80b7-4ff8-8c7a-719b55ef9696 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,718032.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c890766a-9daa-40c7-b3d1-b378e1ac6b87 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,718032.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,334d2ab0-24c8-4171-a657-1b4b1c184799 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1c3c3f3c-3cd7-495b-841c-068e94d231b3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722400.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f11185b-4998-4f1a-a08c-df27754cfc6c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,722400.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,64683fe8-2646-4e37-be3b-ebe37810f90b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,718704.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d1c7f9ef-0bb1-4e1e-b369-b5a37b35cacd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,718704.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a9463032-02c4-4bf0-a783-fbe915bcbcce +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,718704.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c1cfff70-68b8-47c9-ab52-c536c81ef2d6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,715008.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ed84e009-6d31-4ef2-8a9f-50494db1f3cf +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,715008.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8d719d2-7a5a-4f7c-9465-8d3299eefd13 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,715008.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0cf97380-74e4-4f5a-b6db-27bd41faa43c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,718032.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,752547ed-2c51-4731-b651-ececfba46e6f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,718032.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bf55d572-a599-47ae-ad75-0bb48596ff7b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,718032.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5518392d-503d-4fb6-8d72-6c06f636ff9b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,31e842c1-5258-4559-b84c-2d67e6557e19 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722400.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,02c33b00-8994-4029-8d9c-72eaa2d645a2 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,722400.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3b94be4f-a573-4be1-86b7-dbd93315c4b6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,718704.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,09eff203-3846-4321-b019-fbdbcad4cc2c +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,718704.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,26b86905-7f52-4eb6-818d-df5bd5ad4bd9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,718704.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9b6eabab-cd83-4bdb-801f-b92d7414cc25 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,715008.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2996f050-6681-4168-8ead-3d876b003732 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,715008.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0869a5d6-6a87-48e2-bf3d-49bd5ad6ead5 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,715008.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3c54b04d-b517-4e25-8921-3da0e5f5f6c5 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,718032.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c88c91e2-8166-486d-a765-79bbf38172a3 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,718032.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1c08c5a6-9820-4ce7-81ff-e1960dc46882 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,718032.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,97fd3a47-7ae2-4771-bb2e-a91b8baf0714 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,11d62c94-dc6b-4613-aa49-073d9d7d2802 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722400.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c13043c3-1039-4da3-8873-892ef1062e4d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,722400.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9779d83e-8de9-4a08-8053-e1710436a317 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,718704.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4415204a-d71c-4dae-9046-c5d461f75fd0 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,718704.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,96035158-bca0-41da-bc27-b62bdf4d8836 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,718704.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c6b66595-51b1-423b-8176-8d9a958140ec +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,715008.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44913073-2bf4-4653-809d-990279105bba +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,715008.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,10e1e3c7-8578-4545-9e61-d5131238e01f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,715008.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d9d581cc-35a0-4d5d-a626-f5cd83536084 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,718032.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,84a91c9f-110c-4a10-9a15-d63d98684982 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,718032.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c8bf4dc3-bf81-46c9-a059-39e4e9b8f83a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,718032.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5fc9b7a1-baaf-4357-a06c-b2ed3d8ebf8d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722400.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ff395c34-a1d4-495f-adfa-b4eb27e41600 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722400.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c01160e8-cfb6-4592-9465-7095fc30cea1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,722400.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:43.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d98660de-c0dc-43fb-80ba-70940abe6630 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,718704.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c51f4ed-bbb4-4452-a992-2f4c79793231 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,718704.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,051aae5b-488e-45d0-93fd-850091af9870 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,718704.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.78, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2034a2d7-4b75-432c-9855-e5020098c9ad +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,715008.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a4aafab2-c3c7-4e5c-bcc2-872cee18662a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,715008.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a4270854-ee5c-435e-87ed-b4f0c8e6c5ad +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,715008.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.56, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,67d33d33-72f2-4a47-b2fb-40f1228038d4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,718032.0,fuel-combustion-consumption,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,88f90d20-fb4d-4076-aac8-84fc0c422996 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,718032.0,sampling-scaled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88601416-7d81-4fd8-a508-761769b91b3f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,718032.0,modeled-data,"fuel_type:Diesel Oil, density_value:840.0, density_units:kg/m3, NCV_value:42.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,95f007e0-2cbc-4961-977b-d3a7ccedd186 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,577235.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3b3dd5d9-0582-4923-b898-479d31bd65e2 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,577235.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3412f286-654d-4020-9827-d60b3541b299 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.1.1,world,577235.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,79ba0f38-4532-4cd3-b4ac-f3b94970e296 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,577235.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7c770514-53c5-4003-a11e-4e91c52df483 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,577235.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6df82826-2ccf-4442-b7f9-8d3ebd23c028 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.2.1,world,577235.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b9c47726-bddd-4da3-aad5-b7db43402645 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,577235.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e88f0c17-6988-4441-b849-e9d900c2da7c +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,577235.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ac7c1bfd-c5b9-4dad-bb3a-43c27fb77a29 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.3.1,world,577235.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ad2f90bb-774f-4eec-93b9-ea687593b69f +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,577235.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,29bdf6ad-88c4-4182-bdf9-d574a869f138 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,577235.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8a6f26b6-bea6-4803-9952-937dda2e8f5e +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.4.1,world,577235.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6e21564a-10dc-4716-812e-bd8bac15258b +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,577235.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d4ee0677-cf45-4542-b17d-e263411f570a +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,577235.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a37e8ae6-96ae-4900-9c7d-5452dbca642e +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.5.1,world,577235.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b1d15614-1e47-4a63-bc45-20eaeebf067b +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,577235.2,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,315646d8-c48d-4e35-a748-f094e1305802 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,577235.2,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,16283ecf-ee29-41e5-b369-29b68aec5239 +CO2,world,kg/m3,"Marland, G. and R.M. Rotty (1984) ""Carbon dioxide emissions from fossil fuels: A procedure for estimation and results for 1950-1982"",Tellus36b: 232-261",I.6.1,world,577235.2,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6506d14f-c315-4e4a-be6e-686585e13876 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,78309299-4011-4206-a642-754017b8df1f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7da259e9-d26d-4072-a904-6d3857eeabd9 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,77784857-1f21-41cd-b00b-f2286b72792b +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8894940a-e8ee-4f25-9226-3a674f253991 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0728893a-0b77-4fcc-b201-2c16820345c5 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cb8a2eb7-944a-4d7d-8045-d56f9f6bd8ce +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b0aaf432-d4ad-430b-92c3-6131ebb1e5dc +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b25192f5-c934-47cb-a2fe-e45a0da98425 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a950086d-a911-430f-bc26-3f0c6a8e524b +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97399a5c-2bd3-45a2-80f0-5cbaa3b49fc2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,105f2b9c-73c2-4a2c-a348-d5255707207f +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,13c9dd28-0b7e-48ac-8e68-cbb3f04b6bcd +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,97504339-fb13-4672-a185-7c61c3e0bb24 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc3e5aff-adc3-47e7-b1bb-4af556dcd4a2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,523e3316-f36a-4688-8f53-0dbb8bb6681e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a56eb2c2-a462-4e90-ad81-34b3ab0f527a +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20cffc51-c316-4cdd-bde3-db482b1a2a74 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissio to the Earth's atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,8a923699-8f29-45bd-91a0-8271500c3ebe +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,96d6cb81-fcad-4848-938f-0a55779bad38 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,36f039fe-b101-4d0b-8c6a-8093f5fcb378 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dc272d80-876c-42ea-9db1-f79fd197c33b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c050244e-8e49-4abe-9c71-33efcac19c56 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7b23b84-0b70-465e-b134-3f497d2bbced +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,361c4346-4cee-47bf-91d0-7376b813fc7b +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,23e01a95-1d35-4042-b9df-da57dee68ab4 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,581f505d-bce6-4557-8f59-147fb166a534 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d7d65572-1e4d-4081-9f10-608a176dde95 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4bd524c1-68e7-446f-83dc-79e52c6d3ef8 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a6f4075a-c1e0-4f40-9d0c-d954439de7a5 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7943458c-8e81-4e98-8a14-e54dfb09d9d9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2ab862bf-f7ec-4e44-ab90-d279c7a2bcdf +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,263cdfca-4d3b-4850-b8d6-d1df378c4bbd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,53d62d40-3dea-4f48-9337-0d81d64f5c7d +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,801293.6000000001,fuel-combustion-consumption,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fe3f1f86-346e-464f-ad42-367743071930 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,801293.6000000001,sampling-scaled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c835f320-75d3-49ba-ab07-cb51dd11c8eb +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,801293.6000000001,modeled-data,"fuel_type:Residual Fuel Oil, density_value:940.0, density_units:kg/m3, NCV_value:40.4, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2fc89d56-8106-420b-bdce-a9358a47a497 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6962289-0629-4b85-beb1-a1e523801ed6 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00a8cc0c-899b-40b9-a0b9-b0d4b9d419fc +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.1.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,993524df-81d6-44a0-bed9-54453310a378 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74eac922-2689-4945-9d39-42a2577ba133 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6a50178e-9040-4d4c-b913-d5a38859c597 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.2.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,952f3e4b-f59f-4a25-8bb8-807d044c7f51 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f030cf6f-c847-4b54-bab9-9968948eec79 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f9c90d5b-95dd-4b8e-9853-2c74a1b6466c +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.3.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5d107487-4660-4f2c-aded-cccc37948358 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1220d861-4fc4-4fe1-8ad4-e3a69f8955ea +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aad8d316-7e37-45cb-a773-830521e4db5e +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.4.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,50dbf1c5-9431-4d88-9fc7-f0c7bd5290a2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,66f59814-ef25-4277-9942-9174582e32b8 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,92e2e615-c6df-4b04-8561-43ead5a29975 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.5.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,36b2f926-d869-423f-a8b1-f105613d4fc2 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,edf2dfa8-0785-48ae-a03a-36ae18f198c0 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,675ac5a0-a4a4-49cc-a5e7-69ed2fef9563 +CO2,world,kg/m3,"Marland, G. and A. Pippin (1990) ""United States emissions to the Earth`s atmosphere by economic activity"" Energy Systems and Policy, Vol 14, pp319-336",I.6.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,86f00c4c-b8c8-4a45-8ff2-8474930804ea +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,172c6aa8-a3a5-44b8-82cd-4820f57838f1 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,de5ac87c-c7da-4ad2-8913-3dfeaebe6b33 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.1.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,06e4f7f4-e6e6-4c1e-b62e-21cf3ce20516 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,171962fa-11cd-4b1f-b4f1-f93b8e623920 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d4913767-f08a-4add-8797-2f35c813a987 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.2.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,58054736-efff-40f2-a72a-8e3bc91b2550 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,549f0867-d258-4eca-9ea2-6c69e66f7872 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e7e86a7f-3e26-4030-adda-47efbd1e2357 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.3.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,daffe2f0-203e-40ca-b8da-3f19762760a6 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0d8c2572-b8c3-4956-9c33-a5dc78a8237f +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a336ea66-f195-40de-b783-4c3c12bd06ed +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.4.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,72cf06e8-61a8-453c-8eb6-212ea4abb7cd +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fafce26d-974c-4e5d-a460-071f4a3bfa58 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,11e08bc1-a3f4-4a02-a7e1-449e1bba33b9 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.5.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3792c4b2-79b2-41fd-ad50-3ef650982c04 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,585e609c-1ebc-47a8-8e1f-467af00f9d4a +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,84174e81-59c9-4f3c-a33a-f833423f7216 +CO2,world,kg/m3,"Grubb,M.J.(1989),On Coefficients for determining Greenhouse Gas Emissions from Fossil Fuel Production and Consumption. Energy and Environment Programme, Royal Institute of International Affairs ,London, UK April. Prepared for IEA/OECD Expert Seminar on Energy Technologies for reducing Emissions of Greenhouse Gases, Paris France.",I.6.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e747d20d-80ba-4417-a673-9158b6ef0e14 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5cd08ae4-eeb2-4d92-b0c5-bd0a1a62c89d +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,761e8133-2e69-49f4-9177-496312afcf26 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.1.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2c78aa56-d1d5-42c8-bac1-d55b1bb357c3 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dc8f0ea5-bec3-4b34-9b42-f59ee6d79626 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b3fe0538-5422-4f24-a9b8-f84356eea6ea +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.2.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f8b4e92c-dbfc-4760-9202-a2ce07005785 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c4c51b5b-a5d9-4093-92e6-ee2133af6cad +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5ada81df-61ac-4da6-a582-f29f8ab952ed +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.3.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,f4c0397f-a741-483e-b8ed-c7439d834ee1 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,27995f14-a8f2-42d0-b10f-abec5a62cc1d +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1ff5a338-4ad5-453c-8a23-83e2649aa3f7 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.4.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e0cd319c-820e-42f9-b522-abc9f502023b +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bdf37dfb-cf61-44d9-ac3e-66ba1af8de79 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aee2e076-ed04-441e-aebb-f395a8ddbf0a +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.5.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7b4bde1a-dea2-4d51-9044-03c291396109 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,514.08,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13e4c718-23e8-4500-a7bf-7db3a58304b6 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,514.08,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5d3e5b2e-5f2d-4229-a077-a19597b2b989 +CO2,world,kg/m3,"OECD (1991), Estimation of Greenhouse Gas Emissions and Sinks; Final Report from OECD Experts Meetings18-21February 1991. Prepared for the IPCC, Paris,France.",I.6.1,world,514.08,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7518ca7d-1b20-448c-8a4b-1308eee1961b +CH4,world,kg/m3,,I.1.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,49daf086-fc7f-4fcf-825b-943cb36c5a78 +CH4,world,kg/m3,,I.1.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35b94c66-4d4d-4f38-91bf-3e560a70e98e +CH4,world,kg/m3,,I.1.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0922fe7e-db80-4fbd-a3ec-98e2a3e58880 +CH4,world,kg/m3,,I.2.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3397fab5-e72d-4ce1-90a7-ccdfc3acc317 +CH4,world,kg/m3,,I.2.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9e8bfc36-3246-400f-827c-b2e9124f8064 +CH4,world,kg/m3,,I.2.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7bf35280-65a7-49f3-b056-aaba802d99c0 +CH4,world,kg/m3,,I.3.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6f14c9f0-c18d-4486-99d3-f485a4001952 +CH4,world,kg/m3,,I.3.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8ec6c21b-a545-4131-9885-a7081eccc5c8 +CH4,world,kg/m3,,I.3.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,50a201f8-0a36-4c52-828d-0610f090ce3b +CH4,world,kg/m3,,I.4.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c815e3c2-0e81-4491-b3c3-afae983af03d +CH4,world,kg/m3,,I.4.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,db72dcea-be30-4836-891b-1bdbb6564a88 +CH4,world,kg/m3,,I.4.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,188ab6ec-f7ce-40c5-bfd7-6d948182b4fa +CH4,world,kg/m3,,I.5.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e0df6d12-d8aa-415e-a926-0a3713687c3a +CH4,world,kg/m3,,I.5.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3cb66822-3e98-4297-a2ec-12db4d8cc03c +CH4,world,kg/m3,,I.5.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,205257ab-2bd6-4a9a-b9b2-ffbf70bcce6a +CH4,world,kg/m3,,I.6.1,world,300.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,77122200-1829-46d6-8fa8-a0ccc45b209c +CH4,world,kg/m3,,I.6.1,world,300.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6e076c9c-0cc6-4909-ab31-7507060e25e4 +CH4,world,kg/m3,,I.6.1,world,300.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,580fe286-81ab-4e58-92f1-954d75c3a705 +CH4,world,kg/m3,,I.1.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8236d825-a39e-4c69-aef7-8e96f4f068c3 +CH4,world,kg/m3,,I.1.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ee6b4527-4077-4e8d-bcb8-4363a52dd666 +CH4,world,kg/m3,,I.1.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,d1f2a632-69f4-4c21-9fd3-2233bb505ea8 +CH4,world,kg/m3,,I.2.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9c220ead-0062-4edb-a389-cda904b02447 +CH4,world,kg/m3,,I.2.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4bd0d7e5-eec0-4941-a71e-7b1de9eb503d +CH4,world,kg/m3,,I.2.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,03543dca-d2b3-4474-b315-adc6c6b2d749 +CH4,world,kg/m3,,I.3.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f619ae03-dd50-4c58-8a60-8530e3be1bff +CH4,world,kg/m3,,I.3.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,41ec52e0-5f70-4d98-b62a-73aa94488adb +CH4,world,kg/m3,,I.3.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,9eb2599a-9a24-4407-9e45-a4a567a21feb +CH4,world,kg/m3,,I.4.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,70bb968c-6a5b-4bf8-b8c4-c819fb8fb9c9 +CH4,world,kg/m3,,I.4.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,af515074-d7da-4d56-a518-ed0665bc14ae +CH4,world,kg/m3,,I.4.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,97d29297-6f30-499f-b60c-cee4d8aa1026 +CH4,world,kg/m3,,I.5.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,13bd70a5-330e-4af0-88cd-0fcb944e2a11 +CH4,world,kg/m3,,I.5.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5509eac4-2484-40fc-ac5d-a96119746b4d +CH4,world,kg/m3,,I.5.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,00b66e7e-4ebe-4b21-9dea-f23f1f89b70a +CH4,world,kg/m3,,I.6.1,world,1000.0,fuel-combustion-consumption,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f35b7dab-7f18-45c7-8384-a88695f11a6e +CH4,world,kg/m3,,I.6.1,world,1000.0,sampling-scaled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e611b518-9214-4dca-9626-8ba279b9af71 +CH4,world,kg/m3,,I.6.1,world,1000.0,modeled-data,"fuel_type:Wood/Wood Waste, density_value:nan, density_units:nan, NCV_value:15.6, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ccdbc1c3-c80a-4fbd-9f5a-93b9ada69379 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d13e6740-7e39-4131-8aa1-dff33f6d60ac +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ff452bf1-d7a9-4e51-8878-40e693213ff3 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.1.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,cc1287bf-0d71-4e1f-86c5-b56edd5d5e07 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,51862521-9ee6-41d5-90b0-0fc4cf8cf84c +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c73a91ad-dc2c-4971-b3e2-69afee5326dc +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.2.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,33f0e4b9-2b34-4a68-bbec-81b7198e79c3 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8f188e5d-97c1-44f3-82bb-823cb584b721 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1445566e-79ef-471b-bc16-e10d70365c65 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.3.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,c6eab076-7523-4ca3-85ee-fa103f2bdb2a +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,28e65bdb-fcfe-475a-9874-51ead9e98a45 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,df77770b-bf3c-4768-a0f7-14e54001b115 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.4.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5318ee8c-7505-4d40-b57e-741672f432b9 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9838137b-b6e7-4609-b7d9-01fb9faa2511 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6fa4620-2e36-4009-a8a2-909151c84d99 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.5.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6cf98454-b6d5-4931-ace7-df05c73ac486 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f61f01c-aac5-403b-a7d7-a00d61cbbe65 +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c22bbe8e-118d-4748-b962-c7b6775f358c +CO2,Denmark,kg/m3,DENMARK`S NATIONAL INVENTORY REPORT 2014,I.6.1,DK,15.67,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ef516a24-7179-40b4-8171-3ecff84dbef7 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,735f9619-ee26-4e72-804e-ba38b25c1ea7 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9a79d749-0c78-4f8e-803c-d60517e626be +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.1.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,802af3b8-d711-4307-8a62-3c8308dcf56e +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6f772c2c-9d4e-4b42-afee-837b3ed57e9a +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e49c3f99-2017-425b-9271-76ebc2ae1046 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.2.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a735dd9e-1750-4f83-b2c6-8c3c93e1ba01 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a007b098-d7fe-4e40-b974-19b72d2e21a3 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c5cd6352-9188-42aa-885c-9d554a435000 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.3.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,01c91187-2601-40cc-b6e5-6a13871a4c54 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,86dafb0c-660c-4fb0-b913-2de38104d793 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00233f10-a4c9-447a-8032-fc9ba8afadfd +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.4.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a46f5b59-cd45-464f-9250-f185815f509b +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,434b205e-1d95-40e1-a6c1-ff0065d37d0b +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba59037e-e11b-4170-ad99-d3a1130a87ea +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.5.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,49633edd-e899-4525-86f8-4b836db773d0 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,fuel-combustion-consumption,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,869be452-567b-4725-aa87-4f93b5ce3bfa +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,sampling-scaled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,50be7ce0-e034-477a-b922-fcf87d065da3 +CO2,Greece,kg/m3,ANNUAL INVENTORY SUBMISSION OF GREECE UNDER THE CONVENTION AND THE KYOTO PROTOCOL FOR GREENHOUSE AND OTHER GASES FOR THE YEARS 1990-2012,I.6.1,GR,15.62,modeled-data,"fuel_type:Refinery Gas, density_value:nan, density_units:nan, NCV_value:49.5, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,78227953-4a08-4657-9187-e4b0c772aa79 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,953c6606-476e-435a-bd57-4c998ce697d6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0d26a548-9c82-4204-ad92-3f5600d508cc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f3cc8e12-11bb-4db7-a569-030d31e44183 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0ec4de8a-b6fc-4e5e-81b0-46c969737dfd +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6176a9f-89a6-4bd1-a033-78f2f24b5be4 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f1c0fcbc-98cf-4959-8422-abe4085aa6cc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e7a85667-ba2c-4851-ac14-fc1d0a5345df +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,31080657-e8fc-449f-bdee-a601983fdb58 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,45105701-92e7-4e2a-bcc0-e64132f0ee01 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,61ae5e32-0320-4ac1-b8c9-1efadb518f1c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e1cc0d3-acec-4e58-9dda-d2773af07bcd +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a90095cc-22f9-449f-b342-3dec89360b7c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3a692a2-3367-4c61-91d2-33224dfc678c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,009c8804-1cfe-4377-94bd-68a3fe3a2f03 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,88e21680-d0fc-4b11-85a2-d6e3fe88387c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1b28f3c9-1446-4abf-8c29-d8afb6064389 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a6fa98e0-4acd-4748-a36c-cbc7dfcecd07 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3faeda76-eb15-46ff-ab58-011a45c55a7c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e42660a9-fbb2-4fe7-ad44-de5e884cb52d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b6b26ed-96c2-4e81-85bc-4c97cc35bbfb +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,34ac7524-805e-4628-8cd7-7ccac783dfa8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c79f81fd-d54e-450f-98a5-8a3d4f118e96 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,232a239e-2a54-4006-8b77-32faf6991d95 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8da2c39c-728b-45be-9c80-b5b6d9585424 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,69c83195-ddd4-467d-b5ea-a240fbf88951 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39d569eb-f79a-42ae-aec9-e88ee4d49e5e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5636823c-b0bc-45f0-8da2-6a1d8763867b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8c72002a-4408-4994-a541-e8f9f55625dd +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d57ef675-3ce1-40d8-94c7-e7b6348682a8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0e6cb93f-5317-475b-b748-f59cf27f601e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0c5c2ccf-eb24-4bbd-b5b1-71ce6d1ea3d4 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,97633102-30cf-463f-a81c-ee0f8af5e698 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0d0917c6-f261-4652-9ecc-ddd1fd6cbf2b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,116b3b78-5b66-48e9-b3ea-d6f9e2fb3a0c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,414ecaba-c194-45f6-8e21-a1a22b6fd118 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,68e5594a-387b-49bd-b9ca-81d75f77ae68 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7f0e20d8-8d86-489d-8ac2-4091d645db43 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8c1f3cb4-81d7-4fa5-807d-8808c4c97dec +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,64809214-e1a1-48b9-b7f9-9607964d6052 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a67d0a8b-ccc2-4a83-8ffa-040d0c488570 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0f3d03a4-ca80-42ee-833f-35b5110b1364 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,09266dff-6404-41c3-8612-9a0536eb68f3 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,26c85a11-4092-4a08-9983-ab2e61714707 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c34e44ac-84eb-4adb-93a6-0f2e00adef85 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d1d639aa-8933-4993-a355-c9d0b8b40374 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,60b564b8-407b-4fed-bf6f-a9037edb2f0c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,479e6461-ff9f-4e7d-98f3-a9c60d020948 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,204e619f-dd10-4900-b208-a235b68461cf +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c5ca66a3-fd0e-4a88-aff8-37a5a803a92e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c9ed4e20-2753-44f0-a297-b97f904d13d9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9ecbb7d8-613c-406b-a560-6a1c9f5318ae +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3a56d5f5-b7da-43e4-ba60-afaa50d82145 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eff79d4b-22de-41f7-96ab-e223fcec4494 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,00d63b41-6cb3-47bb-847a-37926fe17e7d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9990b3c7-7ec9-41af-bb60-8c4d5cf3dae7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,85a26d9a-adec-4e7f-a426-c8ab7b71ce60 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,97a5faec-1dbc-4bd3-ac13-e7bad43b8c88 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c2cba9ea-a079-4956-8361-fd23fd4564bc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,06ed4fbb-5e65-480d-9981-5490a3613c4d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cda19522-6be2-44bd-babf-7114d1d217a2 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,63dcc5a3-d363-4643-ac9e-a9c8744c883c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d1cb5170-6ae1-4a3e-b6be-5de1dc90a8e9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6e7b2978-ef69-4f74-b737-6c6676fae503 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f594753e-69e0-4b39-86b4-2bfdc9ae1acd +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7bf9f11d-9ba8-4a3d-aa63-e11fc7eee5bf +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2d5c2194-7bab-4d08-a999-c3e0d6fdc4e5 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2ea30f16-1847-4fe9-b19c-d8f1d2d7b020 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8fb91ec1-458c-496d-841e-099ad2b602b3 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9459c2ec-368b-47c3-a291-87d27c70a315 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e6f104d9-e51a-4a4e-b8af-7dd10d1dc97f +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9d96ef90-ff80-42e0-86d3-0ca325d7f1e6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7c08d0a9-bd07-4570-aff0-6494a34a95fe +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b0458b4d-6a08-4234-aba9-18f6a04367b0 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5c297dce-3427-4fa3-8832-64518be50c93 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,32e6f785-1c9f-415d-9fcc-42be9010b774 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d769214d-0519-4a56-8fff-aacb490a6d5a +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9fd4aac0-bf07-4d9d-a13f-65b3814ddd9e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1b3ee63e-a1a9-4d72-9785-0e630ac62e4e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,92caa35f-7500-4090-98f6-eda1b89a24e1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5512711c-720f-46f9-abb1-02102accf249 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5ac64275-ab87-4a71-bfcb-0a9ba7592120 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e2bee8b6-65b5-4e73-8ef1-f5805ea01fbc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,df590e64-0bc8-4b1c-87db-718607ff9b4e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0907fc11-6341-4d75-b70d-dc3e05738c64 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dac08830-7e13-41ca-b58b-599c67b42a91 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,33b9bc13-bcb2-4c82-adba-1f32598e65b8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d25a5db2-2b95-4693-9ae0-dcc8388aba20 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,fuel-combustion-consumption,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3688c375-8023-40f8-ace2-c059b52db812 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,sampling-scaled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,36afd4b7-7fa9-43fa-988c-3aa968d047ce +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,630337920.0,modeled-data,"fuel_type:Lignite, density_value:400.0, density_units:kg/m3, NCV_value:14.8, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f4bf3334-386f-41a1-bec1-fcfe10b14990 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea6dbca5-cb5b-4ce7-a881-1722bd00ed32 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,04cd3100-3ced-4d87-8b3c-836c7ccce884 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,702b6048-c697-4977-9830-2649e7e019c4 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b1673649-b45d-4b2f-8e55-2af85e5904d1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39cff036-2851-4d3c-851c-b48308c0b6e0 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,68494d49-878b-4678-b899-75ec45920bed +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7737c3cd-7193-4ca2-942a-1a03b9ac1c27 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2d0be320-5330-43a9-a0ea-0aaca24b00d8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e2ac8fb5-eff8-4657-bb26-8ffcd81799ad +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f8e42f2d-2efa-46ff-a10c-4a48fe3ebad2 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2f7513b7-7257-436d-893e-d8b29edb161d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c149a29e-7448-4bcf-ac87-5e2e36be8d5b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,64b785f3-6c24-43c8-b3f2-4d8112e42834 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,12a6b8b0-6c14-4c9d-b99d-61fc3eacaf37 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b79c11f5-adc1-4f12-8178-7d7da7978138 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5dec711b-0eef-4cb1-a8cd-9859d5cb4605 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fe9b6aee-ca29-4819-ba98-0bf3856b4824 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,488b72d9-9ca1-4944-bd76-165c67051f8d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,54c2693b-715b-4fb4-b169-b6ce72489e74 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,267f9a92-65ea-4f08-8e7d-76fd20b30dfc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,81dc66b9-aacf-4615-8b4f-ebca66e25ee7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4d1a4013-341f-4575-80ba-d24d5fa53b21 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73e7b779-d5bf-4904-b92c-3256689289a6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c1a82c86-28b4-4659-80d7-242978e30fbc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,01cd666e-df45-442c-86b5-62755aa6d4e7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f7992b0d-012a-4009-83bf-039ce6555297 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,87fa6fd8-df34-426e-8956-f1d732eb50e3 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b5a6daa2-b1fc-4cd5-bdcd-00a80927c555 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,56106078-34dc-4b7b-9aa8-134bdc57008e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8ac81526-a21c-4b12-8b14-983d056b0b06 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6c202e11-535d-4182-a21c-f610338abcdf +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d84d27e1-ebc4-424b-b085-fca23973e8a7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2ed5767e-1499-4978-aae6-4a731029c76a +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1b15ee7f-a5e8-4564-b922-50cf03fea99d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1e1dec5e-5243-4407-966b-23605d2250be +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e7627b89-721d-4b56-a400-0a730844bbc1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8754e172-63ac-42ca-829a-d3eff9b16516 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ccc88927-39f1-42f6-bdf5-06cd15fd9225 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6a5773a3-b4ec-4376-bc5e-6d131a7aa1ca +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fb477038-59d6-4158-a843-c29d04718872 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,75699828-e877-4532-935d-56a7e36831a2 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,593b74eb-7587-4eb1-9392-af97f86ecafb +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93d3ad0c-01ff-465b-884b-05935e9fd49c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9ceb2161-c34c-43a9-9287-3a3f7777ec74 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,548ae92e-9728-420e-adea-2520b5d434a0 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ba22a3d6-e6ee-4dfd-9387-b9bd7e14b1ac +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,166ef41f-8933-455f-b21e-d2e1f754ed17 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,601dd042-9742-45ec-b5c6-465d541db3e7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f9ddc4a5-ea5d-4b20-b85a-9f3523bb5e4e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e331ba18-5aa7-4779-ae45-b57e93bd3f1a +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,509ff60c-5749-4b92-8eb9-fdaafe7d28e6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,fuel-combustion-consumption,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e87840f3-b048-4063-92b5-ade27c79d2e9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,sampling-scaled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3b7469e3-ed1d-402c-85d9-073e40cf9894 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2531492865.0,modeled-data,"fuel_type:Sub-Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:18.7, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7600a5ad-2e3b-490a-8df5-caa9139542da +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5f55cf67-499a-41f4-902b-bce518208e1c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,beda3043-1741-4d9c-9ae2-3c8546c01a1b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a25930c4-e2e1-4650-a5c3-f6259fd32fef +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2fd99f63-4351-427e-9ba6-3a484ae1c7a9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f7e694a3-96cd-4b45-90a3-7030b4653278 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a97db6e7-5d53-47fe-a4cf-b3a7fd3c21c2 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,20edb57f-597b-4508-a521-98fb2139ee7b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c06146c6-fa46-4b69-91bc-2f152414842b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5d7cfb5e-c15b-400f-9095-d4fe6d758580 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e9b7de9f-a060-4cab-b9e5-ee6b9abddfbf +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5a25bdb3-bc30-4780-8d7d-f641cc60819f +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,861b3225-57ee-40c1-8ec9-39317c795a03 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93978d72-76ed-4802-b452-941c4b06802c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2dbd04af-9ec9-49d1-8a87-36cb1933ca28 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e27a3aca-c130-46f9-aa94-999d51fb34d3 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9bcbbd1c-ba24-4543-b4fd-8907df1374ab +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a66ee7ab-fae4-4ee4-9559-da12f2fe0b92 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7922be5a-1275-49e9-8e54-60c27bf217a9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7b9bfcf3-3a94-4b0a-a72a-6c6468fb8fd8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d9ff9964-6300-4dc2-96e2-8d32d3812988 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,036dfb90-889d-45f7-8b24-ad2c74afe99b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5fcf54db-860e-4fad-b2f9-02180a3d187f +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,caef0d3c-b3d9-4a18-90dc-2034603077ae +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,16b8da96-eb4f-42db-941e-e2b89ff47e33 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c226aa0d-933b-487e-b728-b1e420014901 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,044db3b1-33d3-4ba5-b3f7-d7fb7e51ec4f +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,22a028ab-8e6d-492b-a9b9-c80d4fd604ec +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e3aac6db-8aa6-4bbc-862a-e169bb2504ca +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b955f33-e99e-44ea-beb7-fc9aeeabd11e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,87f335b6-fab8-4f06-9547-af26625672b8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2212c6e4-671f-4adc-897a-8ff82306045d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,48872a10-4570-4b7b-babc-1c7299506149 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c7fbcea3-0ddd-4924-b6e6-28f37e885765 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32f483d6-0503-48d4-99e0-2b4adefedf6b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c0460b81-d2c8-40a3-ba80-af9368e77b69 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6fdc75cb-9616-407d-b9e4-2ee06864fb51 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d384bcd-8e92-472d-8995-cbb6bb314356 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1fa2f060-789a-43b0-b19b-0e1cd4ad6a06 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ba378cfa-7bfd-4b36-a393-b353755e5fde +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c0ab75bd-073f-483a-80ef-9bd1fbbd987b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f7ff34ab-bc10-494d-b22c-2ab8fed81bcc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,56a71107-d9e5-4e54-893d-8d040d8904c1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6133da66-e2c0-40fc-8341-a24751f17220 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,276b744b-b72c-4654-bda3-3c41776305ac +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6d1e75a5-b119-40e8-ba72-6de0348efbe1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1a124a0c-a0a4-46c0-bce2-c20404c3b639 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,30e88475-27d6-4a9a-9ee2-8acb96ffc2b4 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fde787f0-49b4-4318-9142-3dccfa8c166b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,33c09a94-6e7b-4d8d-939a-805e146ea117 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,da9cb7ae-de18-4052-87e1-784ad4c8efd6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4360c880-4de5-46ef-b7be-21fb2434eb9d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,79f1c79a-6d79-404f-a1d2-b1da81d40326 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0680d43d-d668-4af2-b8a6-465ea9165a97 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5e18d455-f8e3-4648-b511-57e5a2a51664 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6dd20d84-f3fb-424b-b00d-492dc800f921 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a8d90ee5-1e1e-4746-88e2-cce34e7684bf +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6ab12665-f50c-4641-b0c2-73d29f7e47c9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3a5cd571-9daf-419a-9471-75b7e1007fc3 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a15dcab2-4e63-4267-aaed-43f3aed277bd +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3d095244-7742-450d-b3d5-9176ff1f6740 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5833e208-8d17-4d31-8516-09cac293eba1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,445bcca6-eac1-4c4e-aadf-bbd369ab3f56 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f901be0c-0367-499d-9959-d6a74af105c3 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a111d17d-1174-4ca9-8360-f00758ea46d9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5823ae1e-fe4f-4796-81bb-91365371b422 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8a1a69bb-2b98-465d-9472-bb87d711cf59 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a2d55f6c-1537-43ae-a1b4-bbd97ecf46e2 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6bb7e2b3-1512-4487-b168-fa1d0a393a88 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c897547e-7be2-4399-842f-476f9c07c65d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72398aa9-cc5c-422c-ab6e-fa8fc7b43ad8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5fe7533f-28d1-42f4-b963-c7b83efc4be4 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d74c55eb-05c2-4081-81f5-8de368a2bf44 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1c2afbc8-441a-4142-bcf6-2c33767bd111 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dc104f4f-1ac4-4fc9-9df5-2ee352dfd254 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,50d7bc00-88e6-42d8-acb0-fd8f9d3f840d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0750b2d7-1e1f-457f-b654-e8dabee1a677 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,07328c18-d159-447c-9f1c-dc277a08020b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9e442f22-17a9-4b00-b127-9fa15aa3140e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,05ae7046-e7f4-4043-9124-e7d217e5a1dd +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c561c39b-2368-400a-a4e3-cf183de3cf3c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cf2e4e9f-abd8-4ab3-a188-dd1a3caebfe6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f464364b-feda-4789-962e-48bf3104b05b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,60d818b9-f886-40f0-83b6-0475f1dec173 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,66392914-0661-4bc7-8848-e1fa185babc1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bc134a05-333a-4118-b2cd-847dbefb6b53 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,00727f89-e6aa-401e-9bca-d4e3b1bc347f +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,838a82bb-713f-489b-a20b-b697fca0c6b9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e8edd280-715c-48f5-bc0a-90d8962239b4 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3a0c4dfb-09c5-44d3-9276-62942f8ceac0 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,27c720cf-89f0-4119-b22d-8854e75ee1dc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1658f172-ac8f-4bb7-908d-df5f188bce97 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ca28bf70-bd5b-42ea-82a6-b84c15670514 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6df9a2a7-591e-4319-a4fe-85c6b199fe0b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,93d4bac0-4054-4593-8a35-200b5d47f5d5 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4341d8c5-27ef-4b63-b18a-91cacc755016 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ea62d8b2-5495-4933-86f3-6aae7a001889 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,74eb546d-1846-498f-9272-0e87e150d108 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,59244b6b-bf26-43a3-a72f-e29c8d740240 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1fc40a08-9211-4db8-bcff-a1e0297bcc2d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,03fa9fbe-49bf-47a7-90c2-d54d2e0d79ad +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1cf93a22-3514-4c13-b141-388e649f34cb +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,023fca3f-529f-4988-b86f-7ca1b0f4222f +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b531e8d-43de-47a9-a420-49f0d777cba9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6ae6fa26-2fd2-4762-abad-85daa634bcef +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,471b4da9-2eb7-48cc-ac39-ea926fd4d642 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,fuel-combustion-consumption,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,14bcb1a3-bbf5-4191-98ee-fa7d3b348aca +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,sampling-scaled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ac8306f-fc4f-4531-9bbf-ffe6a8e1b521 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,3072421999.0,modeled-data,"fuel_type:Other Bituminous Coal, density_value:1346.0, density_units:kg/m3, NCV_value:24.1, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1d0b2c37-d808-4137-8b4b-3d408390f195 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eef1cfcb-6e4f-483c-abee-d5406955d43f +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b53cac56-7b68-42bf-ab5e-2a0446266535 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,613d31c9-c12b-4d96-ab3d-cc2b19a8ac58 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d46ca765-5a3a-48bd-af83-5efcaa54b337 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e523f16d-2629-49ec-aa04-7cf5997545f1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,215958d3-870c-456c-a6aa-49cfeedf6a5b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,170ef9cd-d5d8-457f-8500-76d88e0d06d6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,81cc6c93-61b0-40c5-a4fa-5a44a1ca777e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8cbb3c50-9616-4743-994d-a17622b41636 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,09c9ce71-4942-482d-ab92-9b95bd873312 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f57ab807-c286-47b5-ba3c-b4b1c3111b03 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6d9f3377-1ab8-4a5f-b3a3-f6d307e76881 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8303a39f-7b25-4c7c-9739-6c4bee5cd64b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cbad9e19-ffa5-4f39-bef9-754b39428070 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.1.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0027ff3c-9095-4dff-96ab-9b8b0aecd9a5 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7237d883-404a-4e68-a571-9a4f819e276b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c6cf392d-c449-49c5-a20f-37b544e1c431 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,32167717-b670-4cb1-8710-1ad6205e1c34 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e184893b-7eda-4fdf-bb44-2e1d9e87ef50 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,45c6fb38-3b4b-49a1-8e33-36e44ff7da2d +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c05d5a16-d56a-4bf1-9510-dea4b69ea978 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ea8ff604-2421-4eef-9c9c-8fb6e976d27e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,870d12af-aaaa-4056-a41c-57108c81700e +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,940e0cdb-bf8e-491c-a8cd-7e585c24a8d6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cdfa1503-22c3-4036-989c-5b35759a4feb +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e87b0b7-4660-4835-9572-80e2440e2262 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,66f8b1ab-fe5c-4901-b525-bd455abc8da2 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,41005b36-8162-49a8-b557-3764fcd11765 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e60574ed-91ee-425d-b61b-c5940e225255 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.2.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8d1dbb29-f61b-45ba-b5e2-929565434418 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bfd39894-1a00-4108-9126-e9269054b58c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b5c58e3-271c-444b-989b-537b21e50970 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,06a8d870-ffcd-4672-a3ab-699ac1692ef9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7a065e2d-5a0a-4cb7-b378-93debe776255 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d71f8e26-7e3d-4b6a-85e5-bbd3a9efa81b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,711e586f-e7a6-43a2-9ecf-33c6c63486e1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9230a072-370d-48cd-9695-8e5c0a18a395 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,519b95c7-29a5-4efc-be88-3974a4c2ddf6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2cb3bccd-6bae-499a-98d2-2afa96169af7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f18564cd-9f39-454c-ac96-f55b607eb584 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b018c052-3c9e-4b1f-bb91-1958f3c537ee +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,74ada9b6-87d4-4d4e-bd85-f268378ef58c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4313763c-47eb-436f-b2b8-a97a28e038ef +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,792aefbf-d253-4da2-9b87-e5d863e373e7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.3.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e4336b6b-a052-46a2-ac3b-003804035959 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a9d0c6fa-96ec-48da-a9cb-5addb653a2e8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4e6b8e7f-125c-42e3-b0e2-3d276254bdaf +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1fade186-2cf7-4392-b332-18fbb69df7db +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e595599c-4089-4af2-b121-a180708bfda1 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,135c7f41-6a3b-4528-b4a7-b1597e38d647 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,962b5536-8c5d-410e-9742-92c23dbe3276 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fe83887b-002d-4e11-a30e-de48edc680d0 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,faf62845-66f3-490e-9a54-5db1f2682da7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cf1abcd2-2824-4173-83e6-5b4da856ee8a +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,67175c82-30e9-4714-9d3a-49403c3a6751 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fc2d3454-5b95-42d7-b9e0-8aa660b05551 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,24aaaa81-4300-48bc-b509-ce1b4f5dd0e8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,10c0fd46-2579-4699-86ac-61d44ef7cdc6 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,46917c58-8bd7-4fb8-b34b-edf1790a74d7 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.4.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1356cd41-14d0-4da3-aa87-7c29073362a9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f0c075e7-99ff-4043-bfd7-e2132d006ad8 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,311411f6-49cf-4db6-80a0-b2f6e78fdd22 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a0d2005f-7676-4c7b-b7b9-f75bd1cc618a +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a62c0451-0aaf-4f9b-a5a0-7c0473c5603c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1a4dbcab-1045-43e9-82ff-ed780b65ef01 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6323b7c8-3ac6-4546-bf3b-76b25722ee86 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3844262b-523e-498f-b651-1cfe85792631 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,caa358c1-1eec-44e6-8d56-6e4003083b70 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,737c407b-33d4-4cc9-9575-5b0db6a52c69 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a238f9ff-36e3-423a-895e-933cdfa90df5 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80e27308-c631-437d-b120-8e6f87c761c5 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5f090547-c5d2-4894-a8a0-cff672799ca0 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7402b06d-c1b7-4821-9469-6938281113c9 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b3295725-8bb1-4ba3-b30c-13fc9d0fa476 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.5.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4b4f6fe3-1181-4a7a-81ef-0d47313b2be4 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b3253d43-09f7-407f-953e-04ec168155dd +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b6a9606a-ca6b-4bb8-b280-689c3a1a72fc +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ef4af0bf-a2fb-4d53-bb89-fdd4d7dbdba4 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a32c3d2b-9aa3-4076-87cd-8e1003657252 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,928c7b96-29d8-4942-b3e6-579fcd675960 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,30f5ca93-6fc3-4d8f-97a9-b7b5fde1ec7f +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,297e08df-116d-481a-8bcd-9bbf07222ec3 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f42953ea-188d-41b4-bb38-012bf8d97a98 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cb27c8d5-da01-448b-ab44-07f23b644790 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,537783d6-3a71-4622-9fa3-fc1c61546704 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73cbb5f7-b8c3-4dd1-965c-f8fa83126d6b +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ca00801a-af64-4a05-8b4a-4d03c773c363 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f35ae62b-7f73-4fb7-89bf-99140c148e56 +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,73cdc941-5c2c-4895-9a8b-6d035246935c +CO2,Indonesia,kg/m3,"Retno Damayanti and Herni Khaerunissa. Carbon dioxide emission factor estimation from Indonesian coal. Indonesian mining journal Vol. 21, No. 1, April 2018: 45-58",I.6.1,ID,2248041385.92,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:28.5, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6f0d256c-8195-4721-aa8b-eb3c2247e684 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4dd9002c-9d6f-4e62-a951-ad470602bf42 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6724300d-3b1c-4fae-a45b-80b5e63b8fb9 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,33c11627-4773-4a05-ad51-86c81cf49abf +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,015d67d4-1b93-445e-90f2-634fa45b8971 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,786a850c-2903-4b4f-9a8f-82413690c442 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0e772849-d9ca-4d97-90f6-2fff245ba15f +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f835b429-cad3-4d63-a2e8-e5f1225845fd +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,900f5c6d-81f1-49a5-8900-55db5f900d48 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5b56416b-9d2b-4bfb-845b-b2e6dc420c5a +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4813a0bb-3c3f-49cd-a4ee-e72f521d694d +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7ce51c0f-df77-49a6-9d5d-f1d59f1bed04 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e179baf2-236b-4f94-8b8d-2c6deb1e59a8 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4a1061e6-9585-4e97-b886-b95a459caadf +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ce680924-20f4-4638-9ae3-d0ecae454923 +CO2,Mexico,kg/m3,,I.1.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a07baa9c-c648-4c92-929c-bc404e2ead84 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,15441795-7c67-4eda-9bd2-5b1cbaf6fea9 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7c555ac6-687c-4cf2-9850-39c4e0cb68e6 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7f2c28a8-476b-4b2c-bb73-05ebe8e2132b +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d38d5ed-0c2b-4fd3-bab6-57c40ef125f9 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,76732f7c-53ca-459b-84de-077a6c0d1cdc +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,742090af-3abb-409c-9334-c2150bc14035 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4c55b397-0db9-46f5-8edb-94ab9948c8ba +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,925dcaef-634c-4f4e-8896-961c9e992fd4 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e581eaba-d328-4fbf-b615-1a2d1df697a9 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8fc201af-8b09-4151-a83a-1e783df48691 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7b8dd828-5c22-4612-b79e-d88b8d9ea0a7 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2acd03f1-9b46-4de1-aa04-11af5701f17a +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b4bddf03-b13a-4203-8785-8380bd4252d5 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,42344ec2-030e-4e93-a622-3764d50cee24 +CO2,Mexico,kg/m3,,I.2.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1e239cc2-fbff-4fc1-b29c-64b06e8ba711 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,414dd373-adfb-4845-ae03-c7929f85dfc3 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa5544fa-2207-4e5c-b819-214255edccba +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b24abeda-ed68-4849-8f82-956ee93b20a3 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d0b9d4d1-c59c-401c-a72a-f4ff2f1221c9 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f79a41bc-b2ad-4528-999f-98e66cda53d3 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b5e5193d-b838-4a33-ba42-a9592de13995 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b187e99-20f1-4dd2-94f1-3ea8e398ac80 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7ca7d631-4a95-4d7d-b41c-dad7f17e8821 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,436286d1-f09e-4041-9c37-278f0d58c034 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0d5bbfe1-307e-405b-9aba-22743176f6ac +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9cd983b7-beb3-408d-91c3-335e30f4e807 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,eed205b6-1db8-43da-a441-aaac92c31878 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9a5d87ac-6b33-4ccf-a1b5-d904579c1cea +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7e021c13-4f2f-4481-9ab1-265435c93406 +CO2,Mexico,kg/m3,,I.3.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f46c99c7-11a4-4f21-b146-6b9fcb3b13b2 +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d568074-8c0c-4e7e-a55d-1d588916becb +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,713b56c5-719e-4eee-ba7a-667b7a5d66b5 +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b66f3ec3-ded9-4807-9302-624dfcf252cc +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eef3ce74-b053-4de6-b818-b2440c2bffb1 +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,421e5cf1-af6b-4f47-9808-270210778b83 +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1276ab8e-dbdd-4447-8453-fc30b6bd4ab0 +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c968aeb0-7635-4d95-a51a-babbf157b22b +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,45f415cf-ebd3-47f2-bdb8-61c35203d739 +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,de839b5d-0a56-4cd3-bfd6-a0eb01edb6a3 +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aee1d9bb-1e7f-4940-b608-8aef86cf564c +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3c163ee9-559a-438c-a2da-1cd4b9f3c5b6 +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0f5d0d82-0dc9-4761-8815-9196393b0d7f +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,61cf41b2-b586-419b-a58f-a7f7069db34a +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,96c8bbb9-1357-469f-8edb-27f4df8629ad +CO2,Mexico,kg/m3,,I.4.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,8d576108-3458-4e99-9bdf-d27929822221 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,48eac9ed-eb68-4b35-aa36-0351df518192 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a7e6aaab-6d5b-4086-8d8a-fcefc76f36e1 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4024ebe8-3731-41ef-8bae-35b751706f19 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,05416579-54e5-4112-ae22-02e98c64a9f1 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9d39ddb5-8744-4191-a934-c6055375d782 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e9c5b80e-724c-43d7-ada5-6c4bd49798d5 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,083a0adb-bd0e-4a07-8956-49c96acfefba +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1633ea33-b8d8-4c85-9d77-731d3b890980 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4a73583c-6b9c-4d08-a979-d6fe03853954 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1cd6bd51-06dc-4323-bb66-aef6d6da4d43 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c3e85f03-af52-4c38-b589-12d4dcf4c753 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e27ada29-de71-4955-8597-c7f2c1df6cab +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,10bd3a7d-fda7-4763-8d93-82e368e1d555 +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1241f347-5a0e-4869-b639-fa3e7f66987d +CO2,Mexico,kg/m3,,I.5.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1aec9207-6f29-4bdf-a926-ed150ee4b25c +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c6712729-5429-4821-8a8a-934cbf5c870f +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2daca112-7172-4850-9d0c-10a02230bb17 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a5f61132-70fe-44d9-9a56-a7d6fe030085 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,91926306-58b6-4789-af06-5a40bae3816e +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7fffa724-a1d5-4cf4-bb3d-607360d53436 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9bb2ed86-1b3d-47cf-b204-1f9932fadc46 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0cce0a37-e220-4950-abda-9ad84af6bb82 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,54f6d356-2382-4aad-b149-a4e392c9ee8c +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,040851f6-1b28-46c1-a177-e2bb5c55987b +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,72ee827d-e01b-4607-97cf-63cade16b482 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2d01e05c-1be2-489a-b24f-25ba62bbdcf6 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9b43576a-8e98-48e5-85b8-dfc5111e69a0 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,fuel-combustion-consumption,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a6fc1069-8a46-4b6b-97b2-e4e4cad47be6 +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,sampling-scaled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4cf9d6b5-9bd2-4c2d-b5d5-c3d69650381b +CO2,Mexico,kg/m3,,I.6.1,MX,2269082555.502592,modeled-data,"fuel_type:Coking Coal, density_value:829.76, density_units:kg/m3, NCV_value:30.08, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,146e0710-4dfb-41da-ba72-cb30b7a43192 +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,53dae8aa-21d9-46f7-a999-4397c9a5481c +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,218c1648-b2a9-4db2-a9ae-067e3efb8e60 +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3471ec5b-2131-480b-9a53-046280f156f3 +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1bd2cf24-4858-4b3b-bb49-a68da2534711 +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,156b389c-0e21-406f-ad1c-fb452270c28c +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e3c71bc5-7418-4bf1-af93-ebd5224d1ea7 +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,141e01f9-588d-4c6d-b8f1-3cf547c2125d +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7515a61c-1d68-41c1-9626-9d6e3294292c +CO2,Mexico,kg/m3,,I.1.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4b9a1846-03c8-469d-9444-85258b004dc4 +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0601348d-9b60-4bfc-9391-72bd0123dea1 +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0c0820c8-d998-450c-a718-9dbe858e2907 +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,daf14b32-d873-48d4-adad-5dc6c9bccadb +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fefd0c7e-b384-4176-b1e3-72024f86531b +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ef808060-ed76-4946-a859-d795afdc90b0 +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,55dafbc0-94be-45c7-ba2d-e98ba90f8e60 +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a05d928f-1312-445a-9d28-1a30a53b0afa +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3e992d4e-f1b2-4679-b188-3ee3486a008d +CO2,Mexico,kg/m3,,I.2.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9bdd716b-722d-4c96-8549-797f87b34a0c +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,73a2da57-97d2-432b-afda-2aad58c44f6f +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9f62096c-59f4-4775-ab0d-1ede5848082a +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a141c511-4ac4-4bf6-b927-8f9dd29b9eea +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0e2a2314-1cd5-47b8-8b9c-77818f83c053 +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c5dd1731-70a8-4a74-a316-cd5c4f767af0 +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d40037ec-6e3d-4ae5-8241-c114a1c64970 +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,f017c3a4-1331-4131-8cd4-cea7af053bb1 +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,58cb44bf-5f96-44ec-8ba1-3ef16cb1181f +CO2,Mexico,kg/m3,,I.3.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4538b298-f170-4e16-b47a-43dd34050bcf +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cb4e5037-8667-4563-96af-ba8033695e83 +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6919d3c5-1021-4026-82ee-e7b2c6b392b3 +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c6bebaa8-f899-4204-a8ea-2a6d6865b0d6 +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5b228e69-f594-4f66-b6d2-dd884cfbe991 +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,955c04f8-4a78-480a-a5e2-9fa13a99a501 +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,78cded8e-4658-4afc-ad7c-186cd69a0a21 +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b42ccf2a-a32d-4125-98e1-f55f80dabb1c +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0c0a270c-955c-4116-ae0f-bb9fa032e41d +CO2,Mexico,kg/m3,,I.4.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,55e1ec08-4fc8-4dd1-bea3-39ccc40593ac +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2cab1964-9fc1-4cbf-b409-dcc186d9d3a3 +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ef92c4cd-d393-4c4d-ab1e-33893413a314 +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,863041c7-9a5e-4d9c-8c93-cc9ec3c3db34 +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b345fcd0-36dd-4188-a2c1-d76b2e52f9a5 +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,691952cd-c249-4659-b218-5d90c19540f6 +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c4b96381-7848-4867-8ab5-7a833cb3dc87 +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9ecae570-8315-4eed-b51b-23a4bc75938f +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e2f62211-5e77-4090-9e29-176865b7900d +CO2,Mexico,kg/m3,,I.5.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,db6021c1-f4fc-476b-9d96-1fd45cf22d57 +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1834525d-823d-465c-968a-ae0e9d5146a0 +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e63cf1a1-678d-41e9-84f1-a085394bd574 +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5a4ab742-a01f-4b6f-acf9-f3877b8effdd +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,056cb2f6-d47c-43ed-b9cf-cfc424bc0790 +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,83af8199-d186-4374-9039-3b242b90e80a +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,30cccf03-8d31-4120-ad19-558938070779 +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,fuel-combustion-consumption,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,55ff26d3-6393-4b2e-9787-ff2806b01784 +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,sampling-scaled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ff05b18f-197f-4ba3-811d-1a3436122bb3 +CO2,Mexico,kg/m3,,I.6.1,MX,1110008645.28,modeled-data,"fuel_type:Coke Oven Coke and Lignite Coke, density_value:400.0, density_units:kg/m3, NCV_value:25.32, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,af890e7d-fada-46b3-80d3-d588ce097132 +CO2,Mexico,kg/m3,,I.1.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,87f27066-32c5-42de-be65-a5c5d61663bc +CO2,Mexico,kg/m3,,I.1.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2b359ef5-b1b8-4b3f-878c-42e908fd98af +CO2,Mexico,kg/m3,,I.1.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,22ee058b-1a55-4e49-b9df-7a2c2a44ce9b +CO2,Mexico,kg/m3,,I.2.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,17f60ff4-c0dd-4d2b-99d2-dbdcb75cd180 +CO2,Mexico,kg/m3,,I.2.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8ad6d5d7-9eb2-46f7-8d8a-dc7195868a8f +CO2,Mexico,kg/m3,,I.2.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cc60c23c-72c2-40b0-b5de-a1bca9348ba3 +CO2,Mexico,kg/m3,,I.3.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fb9d4ea9-c099-42b3-a3a0-cd53d71f1d62 +CO2,Mexico,kg/m3,,I.3.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20be3fcd-29a2-4725-865f-be897b863c5c +CO2,Mexico,kg/m3,,I.3.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ebbe0b2b-e504-42f1-81b7-b3741788b67b +CO2,Mexico,kg/m3,,I.4.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8da1c10e-f124-4889-aefc-710451d8b7c2 +CO2,Mexico,kg/m3,,I.4.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2e1b6381-39b7-436d-8e29-b75ec84e822d +CO2,Mexico,kg/m3,,I.4.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,91f89576-19e8-4f04-a623-bd45fc53d726 +CO2,Mexico,kg/m3,,I.5.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,44f93ac8-a136-4524-90f6-248c5b4dffc3 +CO2,Mexico,kg/m3,,I.5.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9b03257c-4ba9-44c2-8681-ef773aff2ed6 +CO2,Mexico,kg/m3,,I.5.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0952ab5d-8a76-47b8-817c-5f3bcd8d1b49 +CO2,Mexico,kg/m3,,I.6.1,MX,84442.58,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dbd790c1-ffb4-4a64-950e-30405d563656 +CO2,Mexico,kg/m3,,I.6.1,MX,84442.58,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d307a1cf-e45a-4a9d-aab1-ecb96c51f12f +CO2,Mexico,kg/m3,,I.6.1,MX,84442.58,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:36.37, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,66c2b138-0ac1-49a5-89e8-de200e3b4ca6 +CO2,Mexico,kg/m3,,I.1.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,77992b27-e0fb-4bfd-8ba4-d85c10a1fa7e +CO2,Mexico,kg/m3,,I.1.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1f502111-dbda-44e0-9d64-05e072746911 +CO2,Mexico,kg/m3,,I.1.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,14a89211-8093-41e7-85b9-7e224df8e6ab +CO2,Mexico,kg/m3,,I.2.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,180fcdda-4c6e-413b-a0aa-b85db9127d15 +CO2,Mexico,kg/m3,,I.2.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ed4a0c20-eac2-4d56-8336-3771d2ebf366 +CO2,Mexico,kg/m3,,I.2.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d45be779-14ec-402c-8237-eea4e3921ff7 +CO2,Mexico,kg/m3,,I.3.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c538c5ba-df7a-4671-b850-cee221b4a73f +CO2,Mexico,kg/m3,,I.3.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,cf2a2c0c-1409-46d2-9e66-12cc9c4dd9e9 +CO2,Mexico,kg/m3,,I.3.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c9549a66-42e5-4394-b03b-13e4efd36a8a +CO2,Mexico,kg/m3,,I.4.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,42798ec7-758c-4aa0-b25d-ac02e5004f6f +CO2,Mexico,kg/m3,,I.4.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0135a383-670a-482f-8d06-cf373e289532 +CO2,Mexico,kg/m3,,I.4.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e000c83b-e769-4c34-b3b5-6315668b7a73 +CO2,Mexico,kg/m3,,I.5.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8cd85606-8617-49b9-b25b-2f099476f6c2 +CO2,Mexico,kg/m3,,I.5.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8f2bec6e-1290-4c57-9444-e9cbd610f0eb +CO2,Mexico,kg/m3,,I.5.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6ac27a22-757a-4c03-8e85-79537be3848a +CO2,Mexico,kg/m3,,I.6.1,MX,77722.89,fuel-combustion-consumption,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,400cf654-3058-4476-901c-c80986027f72 +CO2,Mexico,kg/m3,,I.6.1,MX,77722.89,sampling-scaled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,91f46690-9b4c-4c40-a56c-80083f82122c +CO2,Mexico,kg/m3,,I.6.1,MX,77722.89,modeled-data,"fuel_type:Waste Oils, density_value:nan, density_units:nan, NCV_value:42.03, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cfa4407c-ddde-4cee-9ceb-94aa16d90818 +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7f20144-2418-4fc8-86fd-9d582239c452 +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1856af2c-3b9c-494c-8a99-5aea2d7980f4 +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,67cb9465-becd-42e2-b4cd-828812759ba7 +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a0f6925e-acc4-4969-93df-c1de4e64ee63 +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7dfd9e3-11c3-45be-a02d-56c306bc0697 +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,437dc336-5d54-4f72-bfc3-5cad2b9adc97 +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d779f9ed-4844-4ec9-8be4-b39bbea9ffb1 +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a81ab8d2-efef-42ce-83c7-c8147b807c1d +CO2,Mexico,kg/m3,,I.1.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,676f910f-7aab-4068-ba80-ed9c0232ff2c +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0a61b6ca-75c3-420d-b318-b3da132929f2 +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,35b46279-b17a-4916-9dcc-1936f0f33697 +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,26f43bfa-6c0c-4271-8372-389fbda8d936 +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b8e5333-4262-466e-af24-6e6d475a87f9 +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,afc526b7-d54e-48b8-a1e9-c39c43646bc1 +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ea995521-a84b-4086-a22c-f1196b8d8fd2 +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4101597a-ce0e-43b5-8cf8-5aee57f927ed +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,09437005-b95c-486c-a56d-519e1f8e3f97 +CO2,Mexico,kg/m3,,I.2.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4a656177-9867-4aa8-a94f-4a2cfc24d518 +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ddf1d0f1-a6ad-465a-aa4d-c7d127ea9e8e +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,08118d0a-f2e0-47ff-9a28-d05345ee7a3d +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,414e29ad-95a2-4799-bb8d-1e0b8291bf7f +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ff8111e1-b6e1-47f2-87e4-84685a921f3f +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,df046c7a-6bc5-4e05-93df-82a247024ff8 +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0300db43-f9c2-4ba5-901f-0f4335e75b24 +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c4f5e9d5-9307-442c-a410-186136234bc8 +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b4b08fc4-0f91-4a74-a02d-e317ab868572 +CO2,Mexico,kg/m3,,I.3.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,3253fe8e-8132-4768-8608-68dade442cc8 +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,331b83e7-ebe4-490b-b587-fbf884a0c02d +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,956279ad-c730-48f7-a3a8-daa4e62f6dca +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,dcdda7f5-2aef-4508-bee4-aaaa43bbb9f8 +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9aeac6a8-54b1-4e8b-a5cc-a71c00569d11 +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f8cdee90-be36-4335-a805-c9bd5d137c68 +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0a022ba6-b0d6-4a1e-9740-ea67316d2d9f +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a028c30c-ccac-447d-a603-3e1478aef4d0 +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,58d61a7f-7e82-4690-ba65-545d87bbb0d1 +CO2,Mexico,kg/m3,,I.4.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,5a08286b-457c-4c38-9f9c-2f8cfe528337 +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,07b5f182-8475-4f02-8bc6-e306f3aa6807 +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7f17c946-0587-440f-8bd6-addf107011c6 +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a31e7eac-9855-4e64-9c23-3accc8ba88da +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,31abed89-fe39-431b-94d1-0c22772fab8e +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,17255ae4-ab05-48f0-a1ff-9700c853bbc0 +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,20d5c1a0-f837-45c9-8d96-0c044e33afd1 +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a7673534-fb22-4172-a370-415ee9311fbc +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,66e03a78-741b-4522-9465-922f9e826775 +CO2,Mexico,kg/m3,,I.5.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,df66b9b1-1857-4c63-875b-56f6b716f0f5 +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8cd16930-dbf0-463a-8311-3d21591a8767 +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,aa0c35da-98e0-4242-b221-cdaed3d5ebfb +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,45cc2ce3-dc2b-46eb-bfc7-13f8d325d5a8 +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,260ab9e8-76fe-4d06-be22-d187225d2101 +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa6789b3-02d7-4819-93d7-2aed4881bcc7 +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,b0594aec-2963-4d3d-a07f-65f251937d32 +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,fuel-combustion-consumption,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,7a4cc6f1-d35a-42b5-9a61-58f11858c9b7 +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,sampling-scaled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2b716e6c-dacb-406a-8137-aef1e1aa8781 +CO2,Mexico,kg/m3,,I.6.1,MX,2421783630.5740004,modeled-data,"fuel_type:Naphtha, density_value:770.0, density_units:kg/m3, NCV_value:45.22, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0233295c-9575-4d61-af51-f233fe565506 +CO2,Mexico,kg/m3,,I.1.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d2d750f-7615-40e3-8515-85be4227bc07 +CO2,Mexico,kg/m3,,I.1.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,52204d5a-adc5-4131-b019-b1dcf3d53ff8 +CO2,Mexico,kg/m3,,I.1.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,442a31c0-0218-4b6f-a350-53cde9edf467 +CO2,Mexico,kg/m3,,I.2.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,626a7baf-d71e-48fd-8493-164f106e0422 +CO2,Mexico,kg/m3,,I.2.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,473410c0-3ccd-4dff-937b-6e5a11338418 +CO2,Mexico,kg/m3,,I.2.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7a011670-577d-487b-9886-c6fca22ab68b +CO2,Mexico,kg/m3,,I.3.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,aa5ddb83-6bcd-4b3a-816b-1d42dab47cd8 +CO2,Mexico,kg/m3,,I.3.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7d717357-81ff-49ac-93c0-aa8f14074a54 +CO2,Mexico,kg/m3,,I.3.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cb1a67fd-3130-4bf8-a772-1c9aefd2f275 +CO2,Mexico,kg/m3,,I.4.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d2cb1948-18ef-462a-8036-49e1938d8d05 +CO2,Mexico,kg/m3,,I.4.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,52bed9f2-87a9-4472-a288-68bb65770629 +CO2,Mexico,kg/m3,,I.4.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e5fc943d-bb80-47f1-82df-1e277e38ff64 +CO2,Mexico,kg/m3,,I.5.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,465bae52-6133-4730-b63d-f5f2be7dbd72 +CO2,Mexico,kg/m3,,I.5.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,103e8dbd-a220-4049-8322-290cc58c1c6c +CO2,Mexico,kg/m3,,I.5.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2bc06a5d-98ad-450f-8c7a-76c6c2aeb413 +CO2,Mexico,kg/m3,,I.6.1,MX,78225.78,fuel-combustion-consumption,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d5622f48-e77e-45ae-bcfa-41571c686618 +CO2,Mexico,kg/m3,,I.6.1,MX,78225.78,sampling-scaled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5531d32e-fe14-48e9-b407-28d96e1fa8e0 +CO2,Mexico,kg/m3,,I.6.1,MX,78225.78,modeled-data,"fuel_type:Industrial Wastes, density_value:nan, density_units:nan, NCV_value:40.95, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2d2ea487-d860-404c-8e02-bfaf5bded674 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3eec654b-6f64-4855-8fa4-7231e13f3df2 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fa207752-56ff-4e06-8a3b-0e710c2acb35 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d1768154-3a1a-4038-88d2-f47222d7d899 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b53d8e72-8f77-4adf-820e-f8e0c416a662 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6a40d411-83fa-4bdc-a574-832f8c8893c7 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cb2af2e5-6cc2-48c0-8f9e-633b4d62b9a6 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,da089190-9f40-4538-a7db-c5fe3bcb30de +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d6074c44-57d6-438e-9b92-87ddb2a914fe +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,a49446f6-48b5-463c-939a-840e5431a5c8 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,33c17aa1-2152-4cb9-a9fc-7214125d9a86 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,be3ff926-c45b-4fc3-aee7-5a6368c9f82e +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4195884f-c990-4eb0-9cbe-580c9a3027cb +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5a0541dc-4b17-437b-8147-704575be879b +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,16cabdcb-29fb-4998-ad55-87a328acba62 +CO2,Mexico,kg/m3,,I.1.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,2b4b2acf-93c0-479b-9579-cac7017dfdef +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2fbce85c-fa95-4e31-ba7d-59777d53ea08 +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c8064305-73f5-4bb4-870f-bbd47d12d274 +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,e02846c9-01a4-4470-ad80-1d7ec069666f +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2b20a3e7-4e26-4a56-a229-6862c6b0f938 +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,46becaa2-9f9d-46e2-8946-27ecd5abfde2 +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,611ad1c7-765e-425c-9e1b-de0db85b09dc +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,66436d4c-f7bb-45f3-9daa-1f88c16b6ef8 +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,39cb7021-d65e-425c-80fe-96c6640185ee +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0f894130-22b2-4a84-93cc-275a10831c0f +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,52cbd43c-b327-4c73-a32c-70d63a9ab7e7 +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e60a0e95-4b7d-41ac-b199-fb546a1d279d +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,1fbe270a-5e39-4fcc-a579-77af407c7227 +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9d3d25d2-5ece-4747-9fcf-c53e4769f82b +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4b1d17e1-eb2c-4a8c-a9a5-502dcdc77949 +CO2,Mexico,kg/m3,,I.2.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,105b497d-92a8-4a7a-925e-1c79b283d1b2 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,78edc774-974d-4770-82e4-f151d74d9817 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,fdd88fbc-216f-40d6-872c-44ec38f25774 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,7fd0633a-690b-427e-9e41-ae7d19408104 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,61370a23-f880-460a-9248-92bd39146367 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae12e3c7-3606-4b67-9a04-a8c1d68e4eb0 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,30abec0b-5574-4330-9d6a-d645ace12e0b +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8344d6c3-6be1-437b-ab45-66ef5516e4dd +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ba62b4b7-612e-4de4-8961-66460cc4d035 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,fcaa5e5e-5e97-41b9-af34-e3dbe7ab2d5c +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8c8b843c-fc2b-4f66-ae4f-515c76c3959d +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6edfe8b4-8ada-43ba-a7de-e27b61facc71 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,afc8f41d-4d9b-4744-aa8f-48fe0b32a1c9 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd2532a3-344a-4bf8-ba5c-5c54f3364bf4 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ad38b8ba-6507-4475-973c-2c804fb27b34 +CO2,Mexico,kg/m3,,I.3.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9cec6e5a-fbc4-4ed0-92c4-a1235aee8588 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bd448b96-ea13-4b46-9143-41b57fad0a9e +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,b065bd89-710f-43a6-9260-8bfcdf181840 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d49d4ed4-61bb-4a5a-ab71-a563329eb63f +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,99800515-a0d6-4982-a269-4b35cc2b8ac8 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,95fd7259-4508-4a03-89d6-254c5f1e36db +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,992b2a05-4605-465b-9732-b8fa18f48640 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,38940d5d-e2a5-4760-a662-7d6a56c90652 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,defa4f38-4a32-4d46-ba1a-bf633a012c0d +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,11d32d2d-1b56-42a3-a476-dc3911572728 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,cf719ca5-b8f5-4d8a-8f0f-3bb8047e616b +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eb16e7ca-c809-4258-944e-7d99aec7ac66 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,63c62196-13d7-4792-9afc-793398f2d296 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8a776a74-ea4d-48d0-ae41-673545a4712c +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,91000cf5-76e6-41a0-9a31-e6fc87ad2f37 +CO2,Mexico,kg/m3,,I.4.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,018e278c-1e35-4f49-9cb1-10ad2a4a3ff2 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,816738c8-cea9-4da5-be7e-806953463de3 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dc71d43e-28eb-4d2c-b736-adfbf1f4a9ed +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,acb86543-cda6-42cb-8258-38b46d331d22 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3678395e-54d9-4977-92ba-5cc23a135d84 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,19298c53-dd65-459b-b2a4-b69eae7889a4 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f5e59c8a-21f8-46a0-966d-3c095118de03 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,abda932c-5c2d-4a7a-8978-b2db76aee893 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,344ef6b7-8f29-4208-95f4-126ad2eebd34 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6b2c089e-5022-4e36-b339-f83bbeee5377 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,385c28b0-450b-42fa-8437-34eaeb78fa78 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,64ff468f-ea34-4084-b863-df8dcaec05da +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,75783e62-0e87-434b-aceb-8f1a21c030bd +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,18edddbf-f3b2-4d6c-9e4e-9b59b2183695 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a6c25fb3-d268-4bfd-ab6a-ed32f9a1cb95 +CO2,Mexico,kg/m3,,I.5.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,17ee0af1-6263-4bcb-8eff-5f70696fe330 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5aa1bf7c-aebd-4ca5-9fb0-8d12cc9d438c +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,efaaf988-0ce2-4d1b-8fa9-135983a593a6 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,491aa582-b4e9-452f-aa9b-161aaeef09cc +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4af7406d-36ac-4aa6-9d90-fb2e71fd1ddb +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7294d533-5bdd-4676-a4ff-73042705189c +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f67d9727-6004-4e1a-b38a-33241ee085e8 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b675025-9d37-4461-aa19-660cc6c6eb62 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,51f44c5b-ca5e-48ff-968d-9759c7ce3be1 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9e721d03-1151-483b-9f50-961acd90e05d +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,01be324b-78e5-41b1-b914-391f70f22142 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,88d75c3a-0017-48b6-90b2-277e6c650132 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,39a67499-4279-4efe-8347-19a04d7ea8ac +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,5da801be-06f3-484b-b98c-6ca5eba341d4 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2ebe0eca-9a80-4560-9c4f-8ef9d610efc7 +CO2,Mexico,kg/m3,,I.6.1,MX,2278388.2699608,modeled-data,"fuel_type:Natural Gas, density_value:0.844, density_units:kg/m3, NCV_value:46.74, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,4fbb6748-5ae1-4e8b-a76d-097dc6254c8a +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ae737cb1-f772-4022-a12b-e745764d46c4 +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,007212ff-1a15-47e5-8bf1-e0890d7c602d +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,cc1bcd4b-7114-4847-a5eb-30f65f17e244 +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b6577304-688f-47d1-9b08-b0f60079bbe7 +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae4a510a-2430-44e0-a4bc-5b6d250bb677 +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,429ffa5d-fc89-46b5-a850-c17883c0214e +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,e95697d6-d5e2-428e-91cf-1ae40663ddcc +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a557f9c1-c576-457d-83bf-c7d6f4feaf89 +CO2,Mexico,kg/m3,,I.1.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,069ecb57-cb60-4e7d-b6ae-3c8a1dd76d61 +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3e65b332-536c-4465-8898-b957df99f084 +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3adacccd-a914-45db-a7d5-db1cffb9b383 +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ea62ec1e-8db7-4a7b-a569-3b63eaa62ac4 +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,9b3c6d6a-5432-4604-b9d4-4146c81fe9c3 +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f507c9bd-6a99-4878-9b83-882fdc68e752 +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,6d1337c2-2b5a-4513-a7de-86fb7018de84 +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1096d36c-ab52-4ee1-bbfc-caedde08bfec +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8a823cb3-a39e-4b95-a5e7-fd42bb8cd7b0 +CO2,Mexico,kg/m3,,I.2.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,91408490-c56e-455c-aed6-6e8c8f218f15 +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6b9bfe2b-fd73-4d19-b5a7-8b9604ecd972 +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,79f491a5-2d2d-4ff0-b8c4-a93369acde49 +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0498a5d9-ff91-4e79-bf4e-f93747fb693f +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,becfe74d-7746-4d78-b64b-ab5c5d50d023 +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae579b7d-7e10-41b1-89cf-12743eeb1797 +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f72c520c-40f0-41ba-a84e-e26dd0f255f9 +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2d202c4b-3561-4471-87e1-b2e19f43f0cb +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d5cde1f1-04a1-4c45-ae7b-a5db98a1bfcf +CO2,Mexico,kg/m3,,I.3.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,16589050-11db-4bc3-86b6-3abc044e0489 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,a94bcfd4-949f-4cfc-938a-84c605559d20 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9bd87609-a9d8-4ff1-829b-026102b0c9b1 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,487f7229-6d09-4752-a7d4-9a6de2c42466 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4b3cce98-9b54-46ab-bd0b-bc85fa1bb698 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,60dab209-e572-48c4-a377-0928c0ad9509 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,f61ff794-843d-4640-994b-bdbd0dcfed03 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,27cfe4df-17d7-441e-80a1-eb1ad65f5c19 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,dd40a0f2-cadf-4fc5-a328-5919ec636339 +CO2,Mexico,kg/m3,,I.4.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,d143cf47-cd59-4089-8c92-bdf839609d5d +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0f18018d-6244-4900-8c6c-6bfe347ab1f1 +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,326ac386-b7b7-43bd-b93d-541dfba3bc2f +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,c6b2de26-c569-4d52-9a43-2ec1dd49bdab +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,37305636-9b9e-4961-981b-2e659c72992d +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4d4ab780-dcda-4ad9-a3db-d46580034efb +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,0f53577d-21a1-48e3-b0d6-37d65e193844 +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,4e39bb3b-0e4c-4af2-bdc1-312ff44ac12b +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,0b6e14ce-94ee-4105-a69d-a79b95c4b6ce +CO2,Mexico,kg/m3,,I.5.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,88c30c04-c65a-49af-9ce9-fddd6917c14f +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,df8df4c2-f9a3-4809-8bd9-de0a263d87f8 +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3f3dbc16-3b00-490e-b32c-2b265ff3bf99 +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ba060395-84da-4b66-bd99-b8635d798dab +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,8a3dc85b-f37d-4548-b0c1-2d665edf8d80 +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,bc591e21-d182-442f-849e-2e6f30df04a0 +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,ae513ab6-9108-4b71-94c0-89a294610853 +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,fuel-combustion-consumption,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6a51d595-de06-497f-9223-54544a1a2be0 +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,sampling-scaled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d9d1e2c7-31c3-46f0-8e78-034bf83b6c57 +CO2,Mexico,kg/m3,,I.6.1,MX,5888284.26144,modeled-data,"fuel_type:Liquefied Petroleum Gases, density_value:1.96, density_units:kg/m3, NCV_value:46.16, NCV_units:TJ/kg",,8ac51911-476e-3427-bb93-6057b733eee0,9afe45f9-9990-44ec-a373-dc276f996fb9 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,505.34399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,629c100e-d924-485e-a5a2-6d7207bfb9a5 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,505.34399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c4566896-26db-4f5f-b2b9-cf47554f3b0f +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,AU,505.34399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4fd8e5d2-6165-4feb-8cd3-8094bc82b1ec +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,505.34399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,81409198-9b77-4ec4-b481-8c96a093a2dd +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,505.34399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,1bd46ec8-5482-442d-8e5a-117357263eb9 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,AU,505.34399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,afd19572-4c8f-4b4f-83e2-d432bead4026 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,505.34399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,289ec255-4e7e-46a5-9836-8c087b397184 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,505.34399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8e9c990c-5083-46e1-8285-dc2436960205 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,AU,505.34399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,dc984e3a-b6d1-4b11-9bfe-cffabbc98372 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,505.34399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,da9fd12b-1669-4111-8274-785a5fa7eb43 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,505.34399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9977f981-11bf-4f4a-9e75-610b3b97c279 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,AU,505.34399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1dab0f96-e79a-45f0-9bda-1930b1545aa3 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,505.34399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,ab43ef62-09aa-42f0-88cf-024b9df135a8 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,505.34399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,81eb0448-edac-497d-b3f5-82ff28b0ae33 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,AU,505.34399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fd7a03a0-b861-425a-945d-bede9d6e8a88 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,505.34399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,082d9371-9500-4772-b773-7ad52a31014e +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,505.34399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e8e9450e-d53d-46b3-90a6-93e6bb5fc1a1 +CO2,Australia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,AU,505.34399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,996e3823-23f0-48e4-bf8f-95de9a2349a3 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,506.352,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,1b48a3e2-51f6-443d-a5c2-bc3184a31b3e +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,506.352,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,89b7b29b-f9a5-4891-8cb9-ffa17b05336f +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,ID,506.352,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a163ce10-9beb-405a-8ea7-8cafc81cea03 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,506.352,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2a62effd-7277-4738-82dc-948db28c73e0 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,506.352,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9c25fbe2-e473-45d0-909f-0ab6f15b7f39 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,ID,506.352,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7b18a9cb-dbaf-43c8-8e6e-196cc7d3b041 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,506.352,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,901a8106-9157-470c-8097-589a81e2eef5 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,506.352,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,96dd03e3-0f1b-461b-8c34-5d4b8bad145e +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,ID,506.352,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,bec0824c-7f1c-454e-a278-e06d78ec6dc9 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,506.352,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6d097d74-d1aa-4e70-a181-b14aa4ff79d2 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,506.352,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2c7798fd-8a57-4f95-8163-bed12f0b7d4c +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,ID,506.352,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,250ad47d-1da9-4844-bdba-33de373b3050 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,506.352,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eae737e0-92a0-4c79-b2d4-11089f29d2d3 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,506.352,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d919c9f4-0d2c-4f72-a188-f16e9c0a8f12 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,ID,506.352,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,77d3c772-25f7-4882-a9fc-814aba9cd473 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,506.352,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,eaf66868-69b0-4955-be2e-e6bb4a24bdbf +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,506.352,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,45555af2-856e-45c4-960a-9276f31bb746 +CO2,Indonesia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,ID,506.352,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,aaa86fc4-c320-4a7b-8cf4-6566e81a2534 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0cb45448-d963-4ab3-be3f-7ff02c30e170 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,eddd4027-7e07-4321-8205-b88a2598c7ac +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,MY,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,a4d83d61-0b35-40e8-9fb8-85d9cb103f20 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,58d63dee-d5ab-432f-80b6-f4c6ef85566b +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8361c561-b2a5-48a6-bdef-cd8141633361 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,MY,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ab58e64c-5cca-4384-990b-79222a00d26f +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32e01ee7-1cb2-44f8-b9ff-65216d6103cf +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,9203c8a1-72fe-4088-8fce-ab1a8d9349ed +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,MY,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ac057c60-5c47-4916-b50c-a19ffff5b1a8 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c44dfbe5-7263-449a-94c9-3d8fe79c656f +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,8b33179f-418d-4297-bab3-1528d9220a1d +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,MY,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5aad5159-f6a1-4e85-a2c1-4aff17b1fa44 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,403f45a1-2dcc-4292-a919-b826752c5228 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c0c6d856-0c60-415f-b95e-7a8e685e773c +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,MY,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,0d9aa14e-b6c6-4d1f-b904-d21f28e331ff +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c1c37320-619d-44bc-90f9-a49f581db3f6 +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,83dee837-a2de-40c1-81c1-d4f0b865f8de +CO2,Malaysia,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,MY,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,339ab715-43ee-47ee-b305-69636b95d750 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,510.38399999999996,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,99447464-8db9-4a1a-85f3-24770ee2a78c +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,510.38399999999996,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,771a4cc0-8dcf-4673-9970-920f84bd6c9d +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,PG,510.38399999999996,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6beb8003-4215-4a7a-ad52-898c0d4df1e1 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,510.38399999999996,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,85b07973-c3e0-4ebb-aa4a-51ad652d43aa +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,510.38399999999996,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,be53c814-f978-4b15-8470-6c0eeaaaeff1 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,PG,510.38399999999996,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,375c2b4f-bf7f-4d8b-9315-2f6d752424f6 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,510.38399999999996,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,d42c4bf5-9302-4cbb-8876-c2568c5387fc +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,510.38399999999996,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6ee2094b-8ce4-4c5e-9d14-63a8ba2d63b2 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,PG,510.38399999999996,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,fa65a023-6d9f-4206-b75e-879f3b033458 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,510.38399999999996,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,32bf9309-58d0-43fa-a889-2df599e3aa84 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,510.38399999999996,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,87ff6081-c295-4284-9770-2878cf09e6f5 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,PG,510.38399999999996,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e09a3cff-9878-4aa7-9c00-9b5756eb3a64 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,510.38399999999996,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,bdaea095-778e-44da-9fc1-f229c425c933 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,510.38399999999996,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a0e50c1a-9f1f-475c-a2ef-8f33112fa351 +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,PG,510.38399999999996,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,94b5e3d2-2604-4147-93a0-088d3f18938f +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,510.38399999999996,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,b2513ae5-b1ca-45f4-a3f4-a986a2d48fdf +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,510.38399999999996,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,80541a3f-aad3-42d5-ade6-266a44d15b0e +CO2,Papua New Guinea,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,PG,510.38399999999996,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,3f5c5c0c-4954-449c-b158-4d76422d48c2 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,22b1c912-c838-4b7c-b227-d07cb004b43a +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,237bfd42-5236-47e1-9522-cdf6acd8f962 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,RU,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,ab3af958-d331-44c2-8044-0d1107e1b754 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,0dc2a60a-4444-4e41-9637-f6e40493441a +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,3bb3828a-c11d-41fd-845f-ce0e79948a31 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,RU,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,75677486-404a-4f2a-a9cf-8b75ff78a5d8 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,3bef4893-a3c6-40b0-ac47-c24c96f615cc +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7798467c-061e-4cf7-a308-712685306996 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,RU,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,e01fbf59-fb0c-40ed-91f6-4c8871efd9b6 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,99c37335-7fca-4528-b4f1-def0f765b655 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,ae2f555f-2a9b-4a63-b713-0d5dda0f0006 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,RU,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,7aad678f-c1ee-4450-8608-eeb7523ac324 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,30cedd03-2feb-4447-b844-9982d1eb16fc +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,5af17a1e-f5de-4556-a4af-3f11e9568f28 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,RU,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,b3176949-dd3f-4d75-847c-f35823368bda +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,507.02399999999994,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,053ed471-f0a0-409b-a396-63318b537f96 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,507.02399999999994,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,7e3e49a0-f23c-4a8c-aa30-cc2db6305019 +CO2,Russian Federation,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,RU,507.02399999999994,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,93e3621c-5958-437b-841b-c4faa406316a +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,501.31199999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,361baea1-9221-4b35-bc50-83a2720b465e +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,501.31199999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,c3d9afa5-5a50-4c78-8f0f-fa15fb2cddab +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.1.1,US,501.31199999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,57858634-e01f-417c-99f9-764982c21088 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,501.31199999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,52b1dbef-f1aa-4771-a369-e4a78f59fd6c +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,501.31199999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,2063d569-057c-4f9c-949a-4cb26780815f +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.2.1,US,501.31199999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,613336f9-6706-4519-b149-8cc9f349b782 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,501.31199999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,dc946480-5780-4e29-aa4c-ee5b707087da +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,501.31199999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,e871e3ca-b65e-43a0-84ef-18e4b97ab18d +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.3.1,US,501.31199999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,1cb03a6c-352d-40a9-b4cc-06b558a96cfb +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,501.31199999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,79f12914-b896-4759-aa34-d062dccfa9c7 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,501.31199999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,a6ad79bf-565a-470c-a909-42dc92acc57e +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.4.1,US,501.31199999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,4c6242b2-7fae-4e10-98f6-fdaae7c31cff +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,501.31199999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,425f94b2-b2fd-449f-9bba-b0da72b79257 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,501.31199999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,d7aa70c2-bd75-4ef6-bf97-85a11966c9a7 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.5.1,US,501.31199999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5516db9a-ec0b-4296-9f5b-467a6e104144 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,501.31199999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,936cfb2a-8ba2-4c4e-bb4d-ed4becb8cf54 +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,501.31199999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4c764585-73da-4894-ae4b-6e23dc50426c +CO2,United States of America,kg/m3,Data provided by Japan Natural Gas Association and The Federation of Electric Power Companies,I.6.1,US,501.31199999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,529b4a7d-2b1b-4113-9762-41340b17c22d +CO2,Russian Federation,kg/m3,,I.1.1,RU,493.58399999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,c3c782ed-9da2-4239-b9a9-44ca16f91f94 +CO2,Russian Federation,kg/m3,,I.1.1,RU,493.58399999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,6fe16647-80f0-45b6-a17a-6f71c42d9f1e +CO2,Russian Federation,kg/m3,,I.1.1,RU,493.58399999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,5d5e0852-7a5b-4c1d-bf4d-6fd4355dfd6c +CO2,Russian Federation,kg/m3,,I.2.1,RU,493.58399999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,335abe12-cf34-476d-aa72-2e37ac891fd1 +CO2,Russian Federation,kg/m3,,I.2.1,RU,493.58399999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,4e100509-6593-459f-a832-75432015a82b +CO2,Russian Federation,kg/m3,,I.2.1,RU,493.58399999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,2da9cd69-0813-423e-9cb6-89906efa2c3a +CO2,Russian Federation,kg/m3,,I.3.1,RU,493.58399999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,373175fa-528a-4566-9849-a9d52879cf31 +CO2,Russian Federation,kg/m3,,I.3.1,RU,493.58399999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,f1ff9148-fcca-4a85-bfee-eb16a3e54605 +CO2,Russian Federation,kg/m3,,I.3.1,RU,493.58399999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,51a3387e-d82e-4750-9549-c1a45951237a +CO2,Russian Federation,kg/m3,,I.4.1,RU,493.58399999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,15854031-1850-4647-9416-5a24ee634813 +CO2,Russian Federation,kg/m3,,I.4.1,RU,493.58399999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,540339ff-ee7d-42a5-aad7-58eb2b03b0f0 +CO2,Russian Federation,kg/m3,,I.4.1,RU,493.58399999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,6c201ed9-f2dd-426d-82c9-721008b1f6b8 +CO2,Russian Federation,kg/m3,,I.5.1,RU,493.58399999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,6aa7a50f-44eb-4dba-baf0-3b104897c34d +CO2,Russian Federation,kg/m3,,I.5.1,RU,493.58399999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,20a48bd7-ee84-4c7a-9257-9829e2edfb57 +CO2,Russian Federation,kg/m3,,I.5.1,RU,493.58399999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,86e8c7fb-f193-4702-909d-ad103e26d9ac +CO2,Russian Federation,kg/m3,,I.6.1,RU,493.58399999999995,fuel-combustion-consumption,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,2256df90-8399-43ae-b41a-6962433517f3 +CO2,Russian Federation,kg/m3,,I.6.1,RU,493.58399999999995,sampling-scaled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,3f02ca39-70fb-3728-8d53-d4f66e8b30ef,994f0ef1-f75e-4980-bd38-858f33d122bf +CO2,Russian Federation,kg/m3,,I.6.1,RU,493.58399999999995,modeled-data,"fuel_type:Natural Gas, density_value:0.7, density_units:kg/m3, NCV_value:48.0, NCV_units:TJ/Gg",,8ac51911-476e-3427-bb93-6057b733eee0,48993a01-b7c7-4864-b63d-840a087067c6 +CH4,India,kg/tonne,"Proceedings of the workshop on uncertainty resuction in greenhouse gas inventories, Ministry of Environment & Forests Government of India",I.7.1,IN,2.08647,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:During mining(Deg.I), density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,4f5d1997-f20e-4cfa-bbc7-3eea77382979 +CH4,India,kg/tonne,"Proceedings of the workshop on uncertainty resuction in greenhouse gas inventories, Ministry of Environment & Forests Government of India",I.7.1,IN,9.378359999999999,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:During mining(Deg.II), density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,20fe363b-7ffa-4f15-8098-3fb17dff3947 +CH4,India,kg/tonne,"Proceedings of the workshop on uncertainty resuction in greenhouse gas inventories, Ministry of Environment & Forests Government of India",I.7.1,IN,16.94988,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:During mining(Deg.III), density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,520eaa8b-dc21-4fb0-aa3e-c6dcde952f4d +CH4,India,kg/tonne,"Proceedings of the workshop on uncertainty resuction in greenhouse gas inventories, Ministry of Environment & Forests Government of India",I.7.1,IN,0.70266,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:Post mining(Deg.I), density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,dfa7e473-8cdd-41ca-9b36-52dbb343b937 +CH4,India,kg/tonne,"Proceedings of the workshop on uncertainty resuction in greenhouse gas inventories, Ministry of Environment & Forests Government of India",I.7.1,IN,1.54155,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:Post mining(Deg.II), density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,faec93bc-8d75-4637-8014-cd236486693c +CH4,India,kg/tonne,"Proceedings of the workshop on uncertainty resuction in greenhouse gas inventories, Ministry of Environment & Forests Government of India",I.7.1,IN,2.23704,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:Post mining(Deg.III), density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,43e64101-3a47-45d5-9804-294ef3ba0c22 +CH4,India,kg/tonne,"Proceedings of the workshop on uncertainty resuction in greenhouse gas inventories, Ministry of Environment & Forests Government of India",I.7.1,IN,0.8460599999999999,fugitive-emissions-coal,"activity_description_1:surface mining, activity_description_2:Mining, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,b4aa236f-f633-431d-a73c-7e6970737756 +CH4,India,kg/tonne,"Proceedings of the workshop on uncertainty resuction in greenhouse gas inventories, Ministry of Environment & Forests Government of India",I.7.1,IN,0.10754999999999999,fugitive-emissions-coal,"activity_description_1:surface mining, activity_description_2:Post Mining, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,fb294ff4-abb6-4b1d-8c00-367686d6c65f +CH4,China,kg/tonne,,I.7.1,CH,6.64659,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:mining depth of up to 200 m, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,b8a51e56-1e8e-4fb5-8e8a-9bb429a9075b +CH4,China,kg/tonne,,I.7.1,CH,7.3851,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:mining depth of between 200 and 400 m, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,8c1c3ac4-01bb-4990-be52-12a90dfe8e72 +CH4,China,kg/tonne,,I.7.1,CH,8.71872,fugitive-emissions-coal,"activity_description_1:underground mines, activity_description_2:mining depth of above 400 m, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,9f6ecad4-bd68-4791-93b7-eba414e820f7 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,3.3e-05,fugitive-emissions-oil-gas,"activity_description_1:Well drilling - flaring and venting, activity_description_2:Flaring and venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,6b93d6df-1bce-4caf-807a-2756a52013d3 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.0001,fugitive-emissions-oil-gas,"activity_description_1:Well drilling - flaring and venting, activity_description_2:Flaring and venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,3f1fe9e1-eb88-4b0b-9973-a5474cf4c5c3 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,5.1e-05,fugitive-emissions-oil-gas,"activity_description_1:Well testing - flaring and venting, activity_description_2:Flaring and venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,76901332-d7ad-49b1-8f59-7d724b444ea8 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.009,fugitive-emissions-oil-gas,"activity_description_1:Well testing - flaring and venting, activity_description_2:Flaring and venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,7efb9b29-b13e-422e-af48-91fd2620b39c +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,6.8e-08,fugitive-emissions-oil-gas,"activity_description_1:Well testing - flaring and venting, activity_description_2:Flaring and venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,533edf46-c138-4003-8acf-734d9b9b0584 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.00011,fugitive-emissions-oil-gas,"activity_description_1:Well servicing - flaring and venting, activity_description_2:Flaring and venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,7f407ba6-3880-446b-b358-cbc02e9cf714 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,1.9e-06,fugitive-emissions-oil-gas,"activity_description_1:Well servicing - flaring and venting, activity_description_2:Flaring and venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,0747db86-9b91-4435-90af-7e9496fd8ac9 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,7.6e-07,fugitive-emissions-oil-gas,"activity_description_1:Gas production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,e40095c3-83ba-4983-ad3b-5e4453be309d +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.0012,fugitive-emissions-oil-gas,"activity_description_1:Gas production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,9de8475d-2c14-4360-9039-28dbeececa45 +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2.1e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,ef629bff-4e05-4f7f-9c74-f725d93c1700 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,1.2e-06,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,fdf9e425-5662-4a26-92f7-b539572c8f4a +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.0018,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,2571e95e-6e4b-496d-962e-c04908b8894e +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2.5e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,ce5ed8bf-de9e-42b1-abe4-52aa1d9b28da +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2.4e-06,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,3b0017f4-17a0-4ac1-a673-2b8c99d3e26b +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.0036,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,b3bc9493-c61a-49ac-9ef3-9dd183c0eb89 +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,5.4e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,0c2108b4-38c4-45dc-9cec-30baa4e82621 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.063,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - venting, activity_description_2:Raw CO2 Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,a074ffeb-7609-4cae-b964-3f6fb267a876 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,7.2e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,02bf20d8-e852-4012-81aa-9e543d69f6e6 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.00011,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,64659e01-0889-4a08-8672-78730436397f +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,1.2e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,6d8c7898-230a-46f7-8c4b-c0a5e731f5ae +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2e-06,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,631143ad-727c-408a-a218-3461bb4dd7f9 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.003,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,04e783b6-5b20-4039-b658-a334f0077e46 +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,3.3e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,ece46836-61e7-44b8-8a5f-4fb2a938cc68 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.04,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - venting, activity_description_2:Raw CO2 Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,64ea6035-29d8-4349-8832-5728a68c5e9c +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.000182,fugitive-emissions-oil-gas,"activity_description_1:Gas Transmission & Storage - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,1de9c16c-3732-4899-a360-b133896a2913 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,3.1e-06,fugitive-emissions-oil-gas,"activity_description_1:Gas Transmission & Storage, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,35a117c0-a742-4bd1-acc6-5ec377e59a23 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.00072,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,877682bc-6eed-4dff-9523-b80a138d5b19 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,9.5e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,f0e8f0c5-385f-4c0b-8ccd-27bde4a9954d +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2.5e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,de695ac1-3a96-4b36-a741-5b4da6e86eb9 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.041,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,3a9af866-2042-4a08-a4b4-d075f125cdad +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,6.4e-07,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,6e4c930a-0d3c-4534-aefe-6ff607c4f2dc +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.017,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,c5af33c3-d23f-4812-bc9a-6a02e80e7fdd +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.0053,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,448b248f-eebe-46f2-9020-74788faaa324 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.00014,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,c413014a-697c-4aea-9151-12cfdd9a1c7f +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.022,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,9cbde3e8-1f43-4bdb-904e-e84e8a784e9d +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,4.6e-07,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,aa8ac0d9-ec9c-448a-94d6-b135c974dc97 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.0035,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,5f622991-049a-4e0c-aa65-3287253105e4 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.00022,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,a9fa6f19-dc92-49a5-878c-04d9b04769d0 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,1.6e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,06134d5b-f592-4129-b804-7d0e7c4f4f83 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.027,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,2d9b856f-83be-4353-b998-43ec17ee1413 +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2.4e-07,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,b781367b-593f-421b-8763-b1ca9d6d8123 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.0087,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,03d58e03-1d73-475e-b281-c9549e21f575 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,0.0018,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,935745ed-e8c2-43fe-8d2b-1f34754d9cdf +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2.1e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,ef228399-44fb-44bb-a196-1ec16f31237e +N2O,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,5.4e-07,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,056221fb-bdbb-44af-8976-31a4b9ee4750 +CH4,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2.5e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil transport - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,c5616190-0d71-45cc-b3c4-e1291a57cfa9 +CO2,Developed country,kg/m3,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development.",I.8.1,world,2.3e-06,fugitive-emissions-oil-gas,"activity_description_1:Oil transport - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,d90c5ff5-2784-4d3a-a282-541db5fa4c39 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,8.8e-07,fugitive-emissions-oil-gas,"activity_description_1:Gas production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,fbffdd58-9b55-4921-8673-47f7acabe3b9 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.0014,fugitive-emissions-oil-gas,"activity_description_1:Gas production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,796cc039-f064-414e-9039-57e8a95df45c +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.5e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,59b2e330-afd5-4fca-b604-c21d297b3dd6 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,1.4e-06,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,e8f3429a-7f26-4197-9aed-118d967c3076 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.00215,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,4391b4fc-5153-4c26-b8ee-d509c85ac0ca +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.95e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,c8c1701a-e6f3-4e9a-8f70-7dd85e0aa5f5 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.85e-06,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,c2fdabde-2ff0-46d1-8d4b-b864c907e484 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.00425,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,714e2c29-54a8-4e62-90c7-20f724bcbed4 +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,6.4e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,8c665131-49d0-4c0c-abe0-6db3031f5d4c +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.1065,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - venting, activity_description_2:Raw CO2 Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,3b934b8d-cb9e-4640-9ad9-c82d3fc7247d +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,8.549999999999999e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,1654052e-63aa-4b3a-bdea-e03d3b44a00b +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.00013,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,9669843f-b09a-4b2d-b57b-ab9c73f0c552 +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,4.65e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,81e43a93-b4ab-4869-b431-17d88f6a9083 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.4e-06,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,6844b0f8-8586-4272-859e-20dde2c88064 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.00355,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,1a709a62-1713-42a2-8d4b-2abc7bef8f2a +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,3.9e-08,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,cda7bb3c-ade3-415e-bd87-bbb8393d856d +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.0675,fugitive-emissions-oil-gas,"activity_description_1:Gas processing - venting, activity_description_2:Raw CO2 Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,255a2360-16da-4958-9fde-36ac933e1d1e +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.000392,fugitive-emissions-oil-gas,"activity_description_1:Gas Transmission & Storage - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,43c0ca6c-e6f6-48cc-a549-6cbe4570ed48 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,5.2e-06,fugitive-emissions-oil-gas,"activity_description_1:Gas Transmission & Storage, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,bae69822-863a-4a89-bd60-3e0e1cd3ff23 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.0008550000000000001,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,d1f8f18e-53c7-4ee6-a4db-c857c85572ca +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.0001125,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,afca2b8e-8590-4c21-b4be-9e21665b6122 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.95e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,2e09e81d-f966-46e1-b422-0f14aea2050f +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.0485,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,02d14a13-053b-4372-931c-1806fe86d114 +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,7.6e-07,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,7e3cfb1c-0bea-4b2f-9a87-766c10900b6d +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.02,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,cba24320-1646-4cc4-819a-61f7621370a9 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.0063,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,13240a75-dabd-4963-a4a6-540e1c991fbf +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.000165,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,d95105b1-2bd3-4958-ab4d-0f0c4a4dc1e0 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.026,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,1fdcea5c-8deb-4a0e-ada2-eea7116ec48c +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,5.45e-07,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,610ab459-591e-4063-924b-814e794f3ad0 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.00415,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,8f6311d6-bf13-45f0-a71f-6d5a833e566e +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.00026,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,8b6de4ca-84b0-4985-afa8-0d9ae97e6cb1 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,1.9e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,ec813772-1775-401e-b7b5-da7f44e0624e +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.032,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,88949fc6-839d-4117-a4b0-9d10c6842c61 +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.85e-07,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,cc558110-e7e0-4007-b976-345862817eb2 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.01035,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,0914aba8-d91a-46c4-a967-23fc2b65f616 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,0.00215,fugitive-emissions-oil-gas,"activity_description_1:Oil production - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,3efb0256-1e25-4b72-a473-607a84ef82e2 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.4999999999999998e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,15bc9e2e-d4cb-4e25-ac38-9953e1371794 +N2O,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,6.4e-07,fugitive-emissions-oil-gas,"activity_description_1:Oil production - flaring, activity_description_2:Flaring, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,25136b93-9d09-4d91-a255-e0956db25c09 +CH4,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.5e-05,fugitive-emissions-oil-gas,"activity_description_1:Oil transport - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,d55653bc-7b61-49fc-a4e7-dc76852a0032 +CO2,Developing country and country with economy in transition,kg/m3,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan.",I.8.1,world,2.3e-06,fugitive-emissions-oil-gas,"activity_description_1:Oil transport - venting, activity_description_2:Venting, density_value:nan, density_units:nan",,a1f5eab0-e857-3c02-be57-887181b2fc38,14728855-f5b0-417d-a911-d4d1535b4e4a +CO2,Mexico,kg/TJ,,I.7.1,MX,58170.98,fugitive-emissions-coal,"activity_description_1:refinery gas combustion, activity_description_2:None, density_value:nan, density_units:nan",,c2458f7f-f309-3eb6-829c-5a635ad30de0,319b97c4-6c4b-4d34-886d-c9834e3560b6 +CH4,"West Bengal, India",kg/tonne,"Singh et al., 2022, Updated greenhouse gas inventory estimates for Indian underground coal mining based on the 2019 IPCC refinements, iScience, Volume 25, Issue 9, 16 September 2022, 104946",I.7.1,IN,1.9000499999999998,fugitive-emissions-coal,"activity_description_1:undeground mines, activity_description_2:None, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,ad9c0234-869b-4476-8da6-b7fe33147d9c +CH4,"Jharkhand, India",kg/tonne,"Singh et al., 2022, Updated greenhouse gas inventory estimates for Indian underground coal mining based on the 2019 IPCC refinements, iScience, Volume 25, Issue 9, 16 September 2022, 104946",I.7.1,IN,3.28386,fugitive-emissions-coal,"activity_description_1:undeground mines, activity_description_2:None, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,2186bf1c-1de3-4740-82ea-44de0e9af4d6 +CO2,"West Bengal, India",kg/tonne,"Singh et al., 2022, Updated greenhouse gas inventory estimates for Indian underground coal mining based on the 2019 IPCC refinements, iScience, Volume 25, Issue 9, 16 September 2022, 104946",I.7.1,IN,38.0358,fugitive-emissions-coal,"activity_description_1:undeground mines, activity_description_2:None, density_value:1.98, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,9104289f-9f5e-4ffd-a179-c6861f7a9c9c +CO2,"Jharkhand, India",kg/tonne,"Singh et al., 2022, Updated greenhouse gas inventory estimates for Indian underground coal mining based on the 2019 IPCC refinements, iScience, Volume 25, Issue 9, 16 September 2022, 104946",I.7.1,IN,33.7194,fugitive-emissions-coal,"activity_description_1:undeground mines, activity_description_2:None, density_value:1.98, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,afb26c45-523f-485e-a88e-43589b5df4f9 +CH4,world,kg/tonne,"2019 Refinement to the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, page 4.18",I.7.1,world,12.905999999999999,fugitive-emissions-coal,"activity_description_1:undeground mining, activity_description_2:None, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,ebd8c408-84b2-4499-ad0e-1458f480f8ff +CO2,world,kg/tonne,"2019 Refinement to the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, page 4.19",I.7.1,world,11.682,fugitive-emissions-coal,"activity_description_1:underground mining, activity_description_2:None, density_value:1.98, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,07dbab28-12a5-43e2-ac43-a5bd3845588f +CH4,world,kg/tonne,"2019 Refinement to the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, page 4.20",I.7.1,world,1.7925,fugitive-emissions-coal,"activity_description_1:undeground post-mining, activity_description_2:None, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,49a01dd2-2068-4609-8496-9c0c86a8602d +CH4,world,kg/tonne,"2019 Refinement to the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, page 4.25",I.7.1,world,0.8603999999999999,fugitive-emissions-coal,"activity_description_1:surface mining, activity_description_2:None, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,39315327-eeb6-4d88-83ef-1da26d121ece +CO2,world,kg/tonne,"2019 Refinement to the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, page 4.25",I.7.1,world,0.8712,fugitive-emissions-coal,"activity_description_1:surface mining, activity_description_2:None, density_value:1.98, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,818aa262-64d7-4613-9f35-07edc2093142 +CH4,world,kg/tonne,"2019 Refinement to the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, page 4.26",I.7.1,world,0.0717,fugitive-emissions-coal,"activity_description_1:surface post-mining, activity_description_2:None, density_value:0.717, density_units:kg/m3",,c2458f7f-f309-3eb6-829c-5a635ad30de0,96dfe7a7-dc79-42f8-a8d1-77494c78c7ab diff --git a/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/Methodology.csv b/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/Methodology.csv new file mode 100644 index 000000000..92a6b81ef --- /dev/null +++ b/app/seed-data/emissions_factors/data_processed/EFDB_2006_IPCC_guidelines/Methodology.csv @@ -0,0 +1,6 @@ +methodology_id,methodology,methodology_url,datasource_id +c2458f7f-f309-3eb6-829c-5a635ad30de0,fugitive-emissions-coal,,6a508faa-80a8-3246-9941-90d8cc8dec85 +3f02ca39-70fb-3728-8d53-d4f66e8b30ef,sampling-scaled-data,,6a508faa-80a8-3246-9941-90d8cc8dec85 +f766b3fc-e2e8-3a8a-90a9-b24b0074e4f7,fuel-combustion-consumption,,6a508faa-80a8-3246-9941-90d8cc8dec85 +8ac51911-476e-3427-bb93-6057b733eee0,modeled-data,,6a508faa-80a8-3246-9941-90d8cc8dec85 +a1f5eab0-e857-3c02-be57-887181b2fc38,fugitive-emissions-oil-gas,,6a508faa-80a8-3246-9941-90d8cc8dec85 diff --git a/app/seed-data/emissions_factors/scripts/EFDB_2006_IPCC_guidelines_Stationary_Energy.py b/app/seed-data/emissions_factors/scripts/EFDB_2006_IPCC_guidelines_Stationary_Energy.py index f6ac34bef..ed3b00e23 100644 --- a/app/seed-data/emissions_factors/scripts/EFDB_2006_IPCC_guidelines_Stationary_Energy.py +++ b/app/seed-data/emissions_factors/scripts/EFDB_2006_IPCC_guidelines_Stationary_Energy.py @@ -19,7 +19,7 @@ def separate_min_max_median(val): """extract value, takes median if range is given""" - if isinstance(val, float): + if isinstance(val, (float, np.floating)): return {"value": val, "value_min": None, "value_max": None} value = val.replace(" ", "").strip() @@ -78,6 +78,11 @@ def save_to_csv(fl, data): writer.writeheader() writer.writerows(data) +def convert_units(df, unit_col, value_col, from_unit, to_unit, conversion_factor): + # Filter the DataFrame based on the from_unit using .loc to avoid SettingWithCopyWarning + df.loc[df[unit_col] == from_unit, unit_col] = to_unit + df.loc[df[unit_col] == from_unit, value_col] *= conversion_factor + # Mapping IPCC to GPC mapping_ipcc_to_gpc = { @@ -217,18 +222,91 @@ def save_to_csv(fl, data): } region_to_locode = { - "world": "world", - "Republic of Korea": "KR", - "Indonesia": "ID", - "Mexico": "MX", - "Japan": "JP", - "All over Ukraine territory within boundaries recognized by the United Nations": "UA", - "Australia": "AU", - "Malaysia": "MY", - "Papua New Guinea": "PG", - "Russian Federation": "RU", - "United States of America": "US", - "South Africa": "ZA", + 'world': 'world', + 'Denmark': 'DK', + 'Greece': 'GR', + 'Republic of Korea': 'KR', + 'Indonesia': 'ID', + 'Mexico': 'MX', + 'Japan': 'JP', + 'All over Ukraine territory within boundaries recognized by the United Nations': 'UA', + 'Australia': 'AU', + 'Malaysia': 'MY', + 'Papua New Guinea': 'PG', + 'Russian Federation': 'RU', + 'United States of America': 'US', + 'South Africa': 'ZA', + 'India': 'IN', + 'China': 'CH', + 'Developed country': 'world', + 'Developing country and country with economy in transition': 'world', + 'Mexico': 'MX', + 'West Bengal, India': 'IN', + 'Jharkhand, India': 'IN' +} + +extraction_fugitive_dic = { + 'CH4 emission factor for undeground mines in Jharia coalfield': 'undeground mines', + 'CH4 emission factor for undeground mines in Raniganj coalfield': 'undeground mines', + 'CO2 emission factor for refinery gas combustion': 'refinery gas combustion', + 'CO2 emission factor for undeground mines in Jharia coalfield': 'undeground mines', + 'CO2 emission factor for undeground mines in Raniganj coalfield': 'undeground mines', + 'Carbon dioxide emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, venting)': 'Gas Transmission & Storage', + 'Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring)': 'Gas processing - flaring', + 'Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring)': 'Gas processing - flaring', + 'Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring)': 'Gas processing - flaring', + 'Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, raw CO2 venting)': 'Gas processing - venting', + 'Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring)': 'Gas processing - flaring', + 'Carbon dioxide emission factor for fugitive emissions from gas operations - Gas production (flaring)': 'Gas production - flaring', + 'Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well drilling (flaring and venting)': 'Well drilling - flaring and venting', + 'Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well servicing (flaring and venting)': 'Well servicing - flaring and venting', + 'Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting)': 'Well testing - flaring and venting', + 'Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for venting)': 'Oil production - venting', + 'Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring)': 'Oil production - flaring', + 'Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, venting)': 'Oil production - venting', + 'Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring)': 'Oil production - flaring', + 'Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, venting)': 'Oil production - venting', + 'Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring)': 'Oil production - flaring', + 'Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, venting)': 'Oil production - venting', + 'Carbon dioxide emission factor for fugitive emissions from oil operations - Oil transport (tanker trucks and rail cars, venting)': 'Oil transport - venting', + 'EF of Surfacemining': 'surface mining', + 'EF of Underground mines': 'underground mines', + 'Methane emission factor based on data for Chinese underground mines.': 'underground mines', + 'Methane emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, venting)': 'Gas Transmission & Storage - venting', + 'Methane emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring)': 'Gas processing - flaring', + 'Methane emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring)': 'Gas processing - flaring', + 'Methane emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring)': 'Gas processing - flaring', + 'Methane emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring)': 'Gas processing - flaring', + 'Methane emission factor for fugitive emissions from gas operations - Gas production (flaring)': 'Gas production - flaring', + 'Methane emission factor for fugitive emissions from oil and gas operations - Well drilling (flaring and venting)': 'Well drilling - flaring and venting', + 'Methane emission factor for fugitive emissions from oil and gas operations - Well servicing (flaring and venting)': 'Well servicing - flaring and venting', + 'Methane emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting)': 'Well testing - flaring and venting', + 'Methane emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring)': 'Oil production - flaring', + 'Methane emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for venting)': 'Oil production - venting', + 'Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring)': 'Oil production - flaring', + 'Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, venting)': 'Oil production - venting', + 'Methane emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring)': 'Oil production - flaring', + 'Methane emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, venting)': 'Oil production - venting', + 'Methane emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring)': 'Oil production - flaring', + 'Methane emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, venting)': 'Oil production - venting', + 'Methane emission factor for fugitive emissions from oil operations - Oil transport (tanker trucks and rail cars, venting)': 'Oil transport - venting', + 'Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for Raw CO2 venting)': 'Gas processing - venting', + 'Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring)': 'Gas processing - flaring', + 'Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring)': 'Gas processing - flaring', + 'Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring)': 'Gas processing - flaring', + 'Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring)': 'Gas processing - flaring', + 'Nitrous oxide emission factor for fugitive emissions from gas operations - Gas production (flaring)': 'Gas production - flaring', + 'Nitrous oxide emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting)': 'Well testing - flaring and venting', + 'Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring)': 'Oil production - flaring', + 'Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring)': 'Oil production - flaring', + 'Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring)': 'Oil production - flaring', + 'Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring)': 'Oil production - flaring', + 'Tier 1 CH4 emission factor for surface mining': 'surface mining', + 'Tier 1 CH4 emission factor for surface post-mining': 'surface post-mining', + 'Tier 1 CH4 emission factor for undeground mining': 'undeground mining', + 'Tier 1 CH4 emission factor for undeground post-mining': 'undeground post-mining', + 'Tier 1 CO2 Emission Factors for underground mining': 'underground mining', + 'Tier 1 CO2 emission factor for surface mining': 'surface mining' } if __name__ == "__main__": @@ -273,6 +351,32 @@ def save_to_csv(fl, data): write_dic_to_csv(output_dir, "DataSource", datasource_data) + # ================================================================= + # Methodology + # ================================================================= + methodologies = [ + "fugitive-emissions-coal", + "sampling-scaled-data", + "fuel-combustion-consumption", + "modeled-data", + "fugitive-emissions-oil-gas" + ] + + methodology_data_list = [] + + for methodology in methodologies: + methodology_data = { + "methodology_id": uuid_generate_v3(methodology), + "methodology": methodology, + "methodology_url": "", # Add the URL if needed + "datasource_id": datasource_data.get("datasource_id") + } + methodology_data_list.append(methodology_data) + + # Write data to CSV + write_dic_to_csv(output_dir, "Methodology", methodology_data_list) + + # ================================================================= # EmissionsFactor # ================================================================= @@ -298,9 +402,9 @@ def save_to_csv(fl, data): "??????? ? ?????? ???????-????? I. ???????-??????? ???????", None ) - # extract only EF values for Stationary Energy using IPCC refno + # extract only EF values for Stationary Energy using IPCC refno "1.A" and "1.B" filt_cat = df["IPCC 2006 Source/Sink Category"].str.contains( - "1.A", case=True, na=False + r"1\.A|1\.B", case=True, na=False ) df_filt = df.loc[filt_cat].reset_index(drop=True) @@ -356,13 +460,22 @@ def save_to_csv(fl, data): EF_df = pd.DataFrame(output_list) # assign "GPC_refno" using the mapping dic - EF_df["gpc_refno"] = EF_df["ipcc_2006_category"].map(mapping_ipcc_to_gpc) + EF_df["gpc_reference_number"] = EF_df["ipcc_2006_category"].map(mapping_ipcc_to_gpc) + + # make a row for each GPC_refno + EF_df = EF_df.explode("gpc_reference_number", ignore_index=True) + + # remove EFs that don't apply + EF_df = EF_df.dropna(subset=["gpc_reference_number"]) + + # Replace None values, which means "generic EF", with "world" + EF_df["region"].fillna("world", inplace=True) # assign "actor_id" using the region_to_locode dic EF_df["actor_id"] = EF_df["region"].map(region_to_locode) # remove EFs that don't apply - EF_df = EF_df.dropna(subset=["gpc_refno"]) + EF_df = EF_df.dropna(subset=["gpc_reference_number"]) gas = ["CO2", "CH4", "N2O"] EF_df = EF_df[EF_df["gas"].isin(gas)] @@ -372,8 +485,43 @@ def save_to_csv(fl, data): {"KG/TJ": "kg/TJ", "kg CO2/GJ": "kg/GJ"}, regex=True ) - # Replace None values, which means "generic EF", with "world" - EF_df["region"].fillna("world", inplace=True) + # filter the dataframe when the actor_id is not mapped + EF_df = EF_df[EF_df['actor_id'].notnull()] + + # df with EF for fugitive emissions + EF_df_fugitive = EF_df[(EF_df['gpc_reference_number'] == 'I.8.1') | (EF_df['gpc_reference_number'] == 'I.7.1')] + EF_df_fugitive.reset_index(drop=True, inplace=True) + + ## ------------------------------------------ + # Emissions for subsectors from I.1 to I.6 + ## ------------------------------------------ + # drop EF for fugitive emissions + EF_df = EF_df[(EF_df['gpc_reference_number'] != 'I.8.1') & (EF_df['gpc_reference_number'] != 'I.7.1')] + + # Filter out the rows that are for Japan and Korea + filter_values = ['Only for Japan', 'Japan', 'Republic of Korea'] + EF_df = EF_df[~EF_df['region'].isin(filter_values)] + + # list of units to exclude + exclude_units = ['MMT C / QBtu [HHV]', 'g CH4/10^6 BTU'] + + # Filter the DataFrame to exclude rows with these values in the specified column + EF_df = EF_df[~EF_df['units'].isin(exclude_units)] + + # Define the conversions and their respective factors + conversions = [ + ("KG/TJ", "kg/TJ", 1), + ("kg CO2/GJ", "kg/GJ", 1), + ("t CO2/TJ", "t/TJ", 1), + ("kg/GJ", "kg/TJ", 1000), + ("ng/J of Fuel", "kg/TJ", 1), + ("g/tonnes fuel", "kg/t", 0.001), + ("g/MJ", "kg/TJ", 1000) + ] + + # Apply the conversions + for from_unit, to_unit, conversion_factor in conversions: + convert_units(EF_df, "units", "value", from_unit, to_unit, conversion_factor) # extract useful information from 'properties' column to be used later # Define constants for slicing positions @@ -463,7 +611,6 @@ def expand_metadata(metadata): # New list to hold NCV and GCV values tmp = [] - # Process each row for index, row in filt_df.iterrows(): value = str(row["NCV_value"]) @@ -588,15 +735,6 @@ def expand_metadata(metadata): EF_df.at[index, "density_value"] = densities_dic[fuel]["value"] EF_df.at[index, "density_units"] = densities_dic[fuel]["units"] - # Conversion process - def convert_units(df, unit_col, value_col, from_unit, to_unit, conversion_factor): - # Filter the DataFrame based on the from_unit - filtered_df = df[df[unit_col] == from_unit] - # conversion - filtered_df[unit_col] = to_unit - filtered_df[value_col] *= conversion_factor - df.update(filtered_df) - # Define the conversions and their respective factors conversions = [ ("tC/TJ", "kg/TJ", 44 / 12), @@ -640,10 +778,10 @@ def convert_units(df, unit_col, value_col, from_unit, to_unit, conversion_factor ("kg/Gg", "kg/kg", 1e-6), ("kg/kt", "kg/t", 1e-3), ("kg/l", "kg/m3", 1e3), + ("t//kt", "t/t", 1e-3), + ("t//Gg", "t/kg", 1e-6), ] - new_rows = [] - # Apply the conversions for from_unit, to_unit, conversion_factor in conversions: convert_units( @@ -659,7 +797,6 @@ def convert_units(df, unit_col, value_col, from_unit, to_unit, conversion_factor EF_df["density_value"] = pd.to_numeric(EF_df["density_value"], errors="coerce") new_rows = [] - for index, row in EF_df.iterrows(): density_value = row["density_value"] ef_value = row["emissions_per_activity"] @@ -682,7 +819,7 @@ def convert_units(df, unit_col, value_col, from_unit, to_unit, conversion_factor EF_df = EF_df.drop(columns=["Description", "value"]) # make a row for each GPC_refno - EF_df = EF_df.explode("gpc_refno", ignore_index=True) + EF_df = EF_df.explode("gpc_reference_number", ignore_index=True) # make a row for each methodology EF_df["methodology_name"] = [mapping_gpc_to_methodologies] * len(EF_df) @@ -715,10 +852,116 @@ def convert_units(df, unit_col, value_col, from_unit, to_unit, conversion_factor ] ) - EF_df["emissions_factor_id"] = EF_df.apply(lambda row: uuid_generate_v4(), axis=1) + ## ------------------------------------------ + # Emissions for subsectors I.7 and I.8 + ## ------------------------------------------ + # create new columns for EF units transformation + EF_df_fugitive.loc[:, 'emissions_per_activity'] = EF_df_fugitive['value'] + + # Define the conversions and their respective factors + conversions = [ + ('Gg per 10^3 m^3 total oil production', 'kg/m3', 1e-3), + ('Gg per 10^6 m^3 gas production', 'kg/m3', 1), + ('Gg per 10^6 m^3 raw gas feed', 'kg/m3', 1), + ('Gg per 10^6 m^3 of marketable gas', 'kg/m3', 1), + ('Gg per 10^3 m^3 conventional oil production', 'kg/m3', 1e-3), + ('Gg per 10^3 m^3 heavy oil production', 'kg/m3', 1e-3), + ('Gg per 10^3 m^3 thermal bitumen production', 'kg/m3', 1e-3), + ('Gg per 10^3 m^3 oil transported by pipeline', 'kg/m3', 1e-3), + ('m3 CH4/tonne of coal produced', 'm3/tonne', 1), + ('m3/tonne of coal', 'm3/tonne', 1), + ('KG/TJ', 'kg/TJ', 1), + ] + + # Apply the conversions + for from_unit, to_unit, conversion_factor in conversions: + convert_units( + EF_df_fugitive, + "units", + "value", + from_unit, + to_unit, + conversion_factor, + ) + + # list of units to exclude + exclude_units = ['Gg per well drilled', 'Gg/yr per producing or capable well', 'million m^3/mine/year'] + + # Filter the DataFrame to exclude rows with these values in the specified column + EF_df_fugitive = EF_df_fugitive[~EF_df_fugitive['units'].isin(exclude_units)] + + # density values for each ghg gas + gas_densities = { + 'CO2': 1.98, + 'CH4': 0.717, + 'N2O': 1.98 + } + + # apply the gas densities to the density column + EF_df_fugitive.loc[EF_df_fugitive['units'] == 'm3/tonne', 'density_value'] = EF_df_fugitive['gas'].map(gas_densities) + + # apply the conversion and change the units + EF_df_fugitive.loc[EF_df_fugitive['units'] == 'm3/tonne', 'emissions_per_activity'] = EF_df_fugitive['value'] * EF_df_fugitive['density_value'] + + # assign the density units + EF_df_fugitive.loc[EF_df_fugitive['units'] == 'm3/tonne', 'density_units'] = 'kg/m3' + + # change the original units + EF_df_fugitive.loc[EF_df_fugitive['units'] == 'm3/tonne', 'units'] = 'kg/tonne' + + # apply extraction of activity and proccess from the 'description' column + EF_df_fugitive['extra'] = EF_df_fugitive['description'].map(extraction_fugitive_dic) + + mapping_parameters = { + 'The value presented is for a mining depth of up to 200 m': 'mining depth of up to 200 m', + 'The value presented is for a mining depth of between 200 and 400 m.': 'mining depth of between 200 and 400 m', + 'The value presented is for a mining depth of above 400 m.': 'mining depth of above 400 m', + } + EF_df_fugitive['parameters'] = EF_df_fugitive['parameters'].replace(mapping_parameters) + + # create a 'metadata' column based on density values, density units, NCV values and NCV units + EF_df_fugitive["metadata"] = EF_df_fugitive.apply( + lambda row: f"activity_description_1:{row['extra']}, activity_description_2:{row['parameters']}, density_value:{row['density_value']}, density_units:{row['density_units']}", + axis=1, + ) + + EF_df_fugitive.loc[EF_df_fugitive['gpc_reference_number'] == 'I.8.1', 'methodology_name'] = 'fugitive-emissions-oil-gas' + EF_df_fugitive.loc[EF_df_fugitive['gpc_reference_number'] == 'I.7.1', 'methodology_name'] = 'fugitive-emissions-coal' + + # year column + EF_df_fugitive["year"] = "" + + # drop extra columns + EF_df_fugitive = EF_df_fugitive.drop( + columns=[ + "EF ID", + "ipcc_2006_category", + "fuel", + "description", + "practices", + "parameters", + "properties", + "equation", + "value", + "value_min", + "value_max", + "density_value", + "density_units", + "extra" + ] + ) + + EF_final = pd.concat([EF_df, EF_df_fugitive], ignore_index=True) + + # methodology_name + EF_final['methodology_name'] = EF_final['methodology_name'].str.replace('_', '-') + + EF_final['methodology_id'] = EF_final['methodology_name'].apply(uuid_generate_v3) + + EF_final["id"] = EF_final.apply(lambda row: uuid_generate_v4(), axis=1) - EF_df.to_csv( - f"{output_dir}/EmissionsFactor_Stationary_Energy_Scope1.csv", index=False + EF_final.to_csv( + f"{output_dir}/EmissionsFactor.csv", index=False ) # ================================================================= @@ -729,7 +972,7 @@ def convert_units(df, unit_col, value_col, from_unit, to_unit, conversion_factor "datasource_id": datasource_data.get("datasource_id"), "emissions_factor_id": id, } - for id in EF_df["emissions_factor_id"] + for id in EF_final["id"] ] write_dic_to_csv( diff --git a/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/DataSource.csv b/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/DataSource.csv new file mode 100644 index 000000000..6a68d3d9d --- /dev/null +++ b/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/DataSource.csv @@ -0,0 +1,2 @@ +datasource_name,dataset_name,URL,publisher_id,datasource_id +IPCC,IPCC Emission Factor Database (EFDB) [2006 IPCC Guidelines],https://www.ipcc-nggip.iges.or.jp/EFDB/main.php,02359a57-1fd1-397f-9d75-692c569c8ed7,6a508faa-80a8-3246-9941-90d8cc8dec85 diff --git a/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/DataSourceFormulaInput.csv b/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/DataSourceFormulaInput.csv new file mode 100644 index 000000000..dcf7237aa --- /dev/null +++ b/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/DataSourceFormulaInput.csv @@ -0,0 +1,237 @@ +datasource_id,formulainput_id +6a508faa-80a8-3246-9941-90d8cc8dec85,f67b1cb5-24d0-4f89-a34b-009f88e22c08 +6a508faa-80a8-3246-9941-90d8cc8dec85,620dfc30-774a-4b59-b1fe-2a9034ee5683 +6a508faa-80a8-3246-9941-90d8cc8dec85,f9b50987-a3d4-49ea-9fe5-daf399c1c4d7 +6a508faa-80a8-3246-9941-90d8cc8dec85,f6abd2a4-848f-4c09-bc56-e9768baafa40 +6a508faa-80a8-3246-9941-90d8cc8dec85,dd149178-2112-4b79-8293-f44cdcc04c5c +6a508faa-80a8-3246-9941-90d8cc8dec85,072dd634-3d29-4b90-9c44-a942f5b2df6c +6a508faa-80a8-3246-9941-90d8cc8dec85,ee70fd30-d209-4bc5-b4db-1fd390f83f5a +6a508faa-80a8-3246-9941-90d8cc8dec85,7d347204-b7d3-4978-b2b4-fd0c55acff75 +6a508faa-80a8-3246-9941-90d8cc8dec85,7eb9f336-22f1-4146-997a-5b61118d4ced +6a508faa-80a8-3246-9941-90d8cc8dec85,24714720-5f28-4e5b-adcb-c8fea90a249a +6a508faa-80a8-3246-9941-90d8cc8dec85,bd337ae9-d9e6-4923-a5de-90968e4364a2 +6a508faa-80a8-3246-9941-90d8cc8dec85,a5908042-6591-47c7-a0c2-572f25a9432e +6a508faa-80a8-3246-9941-90d8cc8dec85,59bdace0-1a80-436c-8c70-61164b1366d8 +6a508faa-80a8-3246-9941-90d8cc8dec85,af3f572c-c767-40d6-b90e-497a490d5a16 +6a508faa-80a8-3246-9941-90d8cc8dec85,306e02d8-597f-40bc-b8fc-9fede8dd8a75 +6a508faa-80a8-3246-9941-90d8cc8dec85,0458f7c9-5de9-4b84-bd79-1f8b2e84fa5a +6a508faa-80a8-3246-9941-90d8cc8dec85,a4c8b457-df7c-449b-8a9d-219549899c33 +6a508faa-80a8-3246-9941-90d8cc8dec85,c2306453-c063-47ce-9b5a-3ef234e237ff +6a508faa-80a8-3246-9941-90d8cc8dec85,ce0d9aaa-b623-46d4-bd72-8b92ca68ffa5 +6a508faa-80a8-3246-9941-90d8cc8dec85,92a56cf2-616a-448d-96b1-39810916517e +6a508faa-80a8-3246-9941-90d8cc8dec85,87918349-705a-40ea-bfa2-e639a4e11a90 +6a508faa-80a8-3246-9941-90d8cc8dec85,c27422f9-fdea-4d2f-aef9-6c3781d43613 +6a508faa-80a8-3246-9941-90d8cc8dec85,79ec163d-f061-4720-a04b-7620e4159239 +6a508faa-80a8-3246-9941-90d8cc8dec85,c0a6c736-7e91-4625-8a8b-b68b54bfe268 +6a508faa-80a8-3246-9941-90d8cc8dec85,1f7093fb-e11d-4a0d-8ebd-b0db9a1ee72b +6a508faa-80a8-3246-9941-90d8cc8dec85,8e71ac9b-7750-4e69-a187-05e3834b09fd +6a508faa-80a8-3246-9941-90d8cc8dec85,fcf312c5-3492-40f1-b8b0-644d64cd6efa +6a508faa-80a8-3246-9941-90d8cc8dec85,b1614460-dee3-45f0-b87a-3a4066334dcd +6a508faa-80a8-3246-9941-90d8cc8dec85,3b71a9d5-d7cd-45bd-96b4-27f469e7e37f +6a508faa-80a8-3246-9941-90d8cc8dec85,b95a095b-89f0-42de-9967-612813a91c73 +6a508faa-80a8-3246-9941-90d8cc8dec85,fd797944-dc0c-4af1-bf44-f2ebe27633be +6a508faa-80a8-3246-9941-90d8cc8dec85,d3c11eeb-5277-472b-bd1c-8464447ef683 +6a508faa-80a8-3246-9941-90d8cc8dec85,7f745871-32ac-46e9-99e6-e2568a61d93d +6a508faa-80a8-3246-9941-90d8cc8dec85,18eed9be-069a-489e-ab3e-4b31487f6e85 +6a508faa-80a8-3246-9941-90d8cc8dec85,4bdc0fde-b2f0-4e77-b26c-d8d127cfbb99 +6a508faa-80a8-3246-9941-90d8cc8dec85,f3af7faa-47b6-484c-8efb-00868ce4d93e +6a508faa-80a8-3246-9941-90d8cc8dec85,2a7f6fff-3aa9-48fc-8ed0-937462918166 +6a508faa-80a8-3246-9941-90d8cc8dec85,d092d6e6-8be2-4883-a217-8183117d5bf8 +6a508faa-80a8-3246-9941-90d8cc8dec85,eb8d97eb-31a3-47bf-aa7e-13246440ef5e +6a508faa-80a8-3246-9941-90d8cc8dec85,e75fc5ff-d81d-45eb-a652-3befaf1e1346 +6a508faa-80a8-3246-9941-90d8cc8dec85,12fdf7b4-25e5-427e-8410-02e07d1c2471 +6a508faa-80a8-3246-9941-90d8cc8dec85,80608097-81bc-4ece-b8bc-4321fa536358 +6a508faa-80a8-3246-9941-90d8cc8dec85,019aabc8-1ef8-4b4a-97f7-611fdc67da0c +6a508faa-80a8-3246-9941-90d8cc8dec85,23868b77-028d-4833-99a7-eb63981e7f0d +6a508faa-80a8-3246-9941-90d8cc8dec85,5dce75e1-4a61-4e83-bc9c-dc6febe241c4 +6a508faa-80a8-3246-9941-90d8cc8dec85,0d9116d6-7be2-4cfc-9b5b-725ecab52aab +6a508faa-80a8-3246-9941-90d8cc8dec85,f1e81d51-ff80-4248-989a-7d04b52b503f +6a508faa-80a8-3246-9941-90d8cc8dec85,40b95c6b-5e6c-4686-82f9-7d8d86d2a451 +6a508faa-80a8-3246-9941-90d8cc8dec85,c4209a82-695c-43ef-bb9c-6f1e2b93f52f +6a508faa-80a8-3246-9941-90d8cc8dec85,86902f84-179e-4414-a212-8e9f20efdf43 +6a508faa-80a8-3246-9941-90d8cc8dec85,ae022443-11ca-4bda-9240-82459fc70e3f +6a508faa-80a8-3246-9941-90d8cc8dec85,b065ecea-2ecd-4c93-baea-dae81e605a2f +6a508faa-80a8-3246-9941-90d8cc8dec85,2256fad9-60ac-4b3b-a293-4eccde099e85 +6a508faa-80a8-3246-9941-90d8cc8dec85,54317197-4dd2-4576-81a4-fdda42bc8501 +6a508faa-80a8-3246-9941-90d8cc8dec85,aa77dfcb-47c7-464b-aa91-4ff84e8dc3fd +6a508faa-80a8-3246-9941-90d8cc8dec85,baa0a619-c3f7-48a4-b81e-cfa8849bcf59 +6a508faa-80a8-3246-9941-90d8cc8dec85,438e5372-92d3-4869-91ca-4b15448f7881 +6a508faa-80a8-3246-9941-90d8cc8dec85,cf19ab25-87c6-4fa5-a67b-470aa2844d5a +6a508faa-80a8-3246-9941-90d8cc8dec85,e17e8a0e-f7ee-4cb2-8cdd-8cc09f66c7f2 +6a508faa-80a8-3246-9941-90d8cc8dec85,9abe763f-4c45-4537-a55f-b2eacce9ded0 +6a508faa-80a8-3246-9941-90d8cc8dec85,eb6dbf1c-9723-49e8-9113-2f974cd05722 +6a508faa-80a8-3246-9941-90d8cc8dec85,266a9cd7-f525-4ca0-b993-14666bda61a6 +6a508faa-80a8-3246-9941-90d8cc8dec85,483f0a3e-4066-4421-96cf-fb940af843ae +6a508faa-80a8-3246-9941-90d8cc8dec85,7908063f-85be-4245-ae71-178343732283 +6a508faa-80a8-3246-9941-90d8cc8dec85,aa4dcb90-4e5c-4064-89b2-359a53c0c9bf +6a508faa-80a8-3246-9941-90d8cc8dec85,cdadf043-722f-4756-9cd2-3e84d407f3fd +6a508faa-80a8-3246-9941-90d8cc8dec85,e3558845-c4a9-4679-9e09-9d24c5b98ea5 +6a508faa-80a8-3246-9941-90d8cc8dec85,c123e024-2d12-4176-8f66-b0a4f1a82dc5 +6a508faa-80a8-3246-9941-90d8cc8dec85,98127477-39ae-4c07-abf5-c93bdd15943a +6a508faa-80a8-3246-9941-90d8cc8dec85,dbc12f0e-ec5b-41f7-b421-ada352337134 +6a508faa-80a8-3246-9941-90d8cc8dec85,534a11e5-cbe5-45c9-a6a2-b1b0cc3283ab +6a508faa-80a8-3246-9941-90d8cc8dec85,cc166df3-4f18-4a43-b9e7-1fde9993bba0 +6a508faa-80a8-3246-9941-90d8cc8dec85,34eb79e0-01b2-40b0-bf15-2a332a51c99a +6a508faa-80a8-3246-9941-90d8cc8dec85,9a4f2be2-b9ca-42e3-9b03-829922f1a086 +6a508faa-80a8-3246-9941-90d8cc8dec85,11d24311-0e7d-4910-aebd-400af160b1c9 +6a508faa-80a8-3246-9941-90d8cc8dec85,da0ad17a-ad75-47f6-be13-061739731a9a +6a508faa-80a8-3246-9941-90d8cc8dec85,b9a32262-958b-4e83-b381-898faa932b57 +6a508faa-80a8-3246-9941-90d8cc8dec85,6f24625c-efa9-4d48-93e4-199dcaac4a1a +6a508faa-80a8-3246-9941-90d8cc8dec85,5c299f0d-bccd-4708-bb03-9a548365b83b +6a508faa-80a8-3246-9941-90d8cc8dec85,92c71189-8b7a-4129-b2d3-dfa7f10cd002 +6a508faa-80a8-3246-9941-90d8cc8dec85,faa0eb39-d0d7-473a-99c8-57b9c8c115b5 +6a508faa-80a8-3246-9941-90d8cc8dec85,019898a2-ef23-4f17-8d1b-a4b322a9296e +6a508faa-80a8-3246-9941-90d8cc8dec85,3912c5a6-cf01-4445-b4d3-4afeca9f55c5 +6a508faa-80a8-3246-9941-90d8cc8dec85,37f4f561-1c7b-41a6-84e0-c3c270ed8176 +6a508faa-80a8-3246-9941-90d8cc8dec85,9c7187c6-7717-45c7-b070-fabbf71a3ab2 +6a508faa-80a8-3246-9941-90d8cc8dec85,ac0d6d98-0415-4fd7-bd5a-a9b3c4e672ba +6a508faa-80a8-3246-9941-90d8cc8dec85,c9f4fd7f-ed3a-4845-b3af-19213aa01263 +6a508faa-80a8-3246-9941-90d8cc8dec85,cf438f12-a8ba-46b2-bf54-a5abd1ca008d +6a508faa-80a8-3246-9941-90d8cc8dec85,59d8f92e-fc6d-4ea8-bc12-5923837ea034 +6a508faa-80a8-3246-9941-90d8cc8dec85,623aad2d-5ebf-4f36-8dc3-d6cd3b188d25 +6a508faa-80a8-3246-9941-90d8cc8dec85,d98ed68c-411d-4110-9030-45d83e960202 +6a508faa-80a8-3246-9941-90d8cc8dec85,075a5ac1-e3fe-421c-852c-1683567bff89 +6a508faa-80a8-3246-9941-90d8cc8dec85,ea007b78-f3ea-464e-89c5-7dbe51385292 +6a508faa-80a8-3246-9941-90d8cc8dec85,996b5148-4314-42d2-a141-fc619752044d +6a508faa-80a8-3246-9941-90d8cc8dec85,3a63065c-5f5c-4f37-ad36-3425a3d6ab7f +6a508faa-80a8-3246-9941-90d8cc8dec85,c99d13b8-2483-4c02-a1b5-5434448e0a73 +6a508faa-80a8-3246-9941-90d8cc8dec85,59a920b3-c693-436f-999c-2169b11fdfca +6a508faa-80a8-3246-9941-90d8cc8dec85,b13663e9-b329-4539-9bce-52a8448fbf3e +6a508faa-80a8-3246-9941-90d8cc8dec85,83b01c39-f121-44fa-ba13-0c51734f6734 +6a508faa-80a8-3246-9941-90d8cc8dec85,36c8a42b-dede-4cfa-8a03-54bcebf46903 +6a508faa-80a8-3246-9941-90d8cc8dec85,ecfada79-903c-43b7-9d79-139bd9507f94 +6a508faa-80a8-3246-9941-90d8cc8dec85,09363c85-46d8-4df5-b01f-18d8efe85696 +6a508faa-80a8-3246-9941-90d8cc8dec85,c331cb13-c1e1-4a38-a24b-5ebd399f4d24 +6a508faa-80a8-3246-9941-90d8cc8dec85,d12efdbf-9dcb-4438-8dcc-1d36addd1b78 +6a508faa-80a8-3246-9941-90d8cc8dec85,acc4f02a-bbef-4692-8242-bbbcfa3dabf5 +6a508faa-80a8-3246-9941-90d8cc8dec85,47a4a654-ce05-4530-bbb0-fc01adbf7e8d +6a508faa-80a8-3246-9941-90d8cc8dec85,f68373de-16ee-4005-8c56-d8f1b278a894 +6a508faa-80a8-3246-9941-90d8cc8dec85,541a75e1-2d1b-49ca-99e3-0fc18c4d7633 +6a508faa-80a8-3246-9941-90d8cc8dec85,d1c7695b-dfbf-4f46-ac9b-b33e7216979e +6a508faa-80a8-3246-9941-90d8cc8dec85,78137529-bf1e-4046-a0ff-a5e512ff33d7 +6a508faa-80a8-3246-9941-90d8cc8dec85,bb14db69-719c-4472-8f93-da19444522e4 +6a508faa-80a8-3246-9941-90d8cc8dec85,d8217be8-eeb5-4e45-8051-a0d7cca8bdfb +6a508faa-80a8-3246-9941-90d8cc8dec85,65d1de74-4398-4df5-b930-a97b0189fcba +6a508faa-80a8-3246-9941-90d8cc8dec85,371e8a21-5f20-421a-98bf-f6f605408763 +6a508faa-80a8-3246-9941-90d8cc8dec85,de39b20a-e953-4813-a22a-f734caecda47 +6a508faa-80a8-3246-9941-90d8cc8dec85,c5d92bb0-0c54-43e5-a3c5-cef1e3668a06 +6a508faa-80a8-3246-9941-90d8cc8dec85,cb3ad6a6-47c9-4403-9c25-76a1649e4710 +6a508faa-80a8-3246-9941-90d8cc8dec85,0a86c56c-89a8-46a7-bea3-f7dc4a5f7ee4 +6a508faa-80a8-3246-9941-90d8cc8dec85,340d5e7d-53b8-46a0-a1e7-6573a9ecea9b +6a508faa-80a8-3246-9941-90d8cc8dec85,8d6202d2-2fe3-4bc3-b19c-171f61b4a021 +6a508faa-80a8-3246-9941-90d8cc8dec85,d6ff2478-2f93-4eb5-ac06-a065a1fbb939 +6a508faa-80a8-3246-9941-90d8cc8dec85,9593cb7d-84b5-4c66-9f61-4e852ec93b1b +6a508faa-80a8-3246-9941-90d8cc8dec85,48026f19-75ed-4a00-b26c-d74df0141adb +6a508faa-80a8-3246-9941-90d8cc8dec85,afa03bc5-580d-47cb-9403-fce7c54feb5e +6a508faa-80a8-3246-9941-90d8cc8dec85,87d89803-4b9c-4640-8aba-3d4691cfad13 +6a508faa-80a8-3246-9941-90d8cc8dec85,f949ae57-cc6e-427e-99bc-faa0cbe31eef +6a508faa-80a8-3246-9941-90d8cc8dec85,8a8b7c82-3d68-48c4-a0d1-e920d864fa05 +6a508faa-80a8-3246-9941-90d8cc8dec85,b26e47e4-5c4c-493e-9756-0fb2282a93c1 +6a508faa-80a8-3246-9941-90d8cc8dec85,d08ff991-158a-4586-b9f8-23c64a9f60d6 +6a508faa-80a8-3246-9941-90d8cc8dec85,1e6f6ff0-cb25-4c63-89ed-7d0495f62c65 +6a508faa-80a8-3246-9941-90d8cc8dec85,24e630f8-106b-4e5b-8be2-412ea72300b4 +6a508faa-80a8-3246-9941-90d8cc8dec85,171ef467-a248-4ba3-bf0a-4ddf34797d19 +6a508faa-80a8-3246-9941-90d8cc8dec85,174730d9-8683-42ac-84df-34b685b1af82 +6a508faa-80a8-3246-9941-90d8cc8dec85,505239ae-076c-4f08-bfa3-2288e816adf3 +6a508faa-80a8-3246-9941-90d8cc8dec85,35387ad1-3f32-440b-9993-aa7743a91992 +6a508faa-80a8-3246-9941-90d8cc8dec85,99e74a17-2dd4-41ed-8f48-47200d69c74a +6a508faa-80a8-3246-9941-90d8cc8dec85,9b9500c7-97c5-4d6f-ab45-1c2b286408e7 +6a508faa-80a8-3246-9941-90d8cc8dec85,41cd34d7-7f05-4cb3-b31a-3662dfb2ff5d +6a508faa-80a8-3246-9941-90d8cc8dec85,4c802a47-a391-4f29-82cf-1b097bcfe7a7 +6a508faa-80a8-3246-9941-90d8cc8dec85,be96a15d-1fd4-4f1b-9cd7-b04cba2500e7 +6a508faa-80a8-3246-9941-90d8cc8dec85,3839b9b4-cce9-4fba-9dc7-6785b5827f7b +6a508faa-80a8-3246-9941-90d8cc8dec85,4a2de607-37eb-43ae-b5d3-22fe5ecc79f6 +6a508faa-80a8-3246-9941-90d8cc8dec85,6b9c8218-6fcd-46c9-a8b5-c298f0c3b82b +6a508faa-80a8-3246-9941-90d8cc8dec85,118023ae-4098-4dce-b6c4-6e2c7ee79c32 +6a508faa-80a8-3246-9941-90d8cc8dec85,a8dbff19-90ea-4a4e-a3bd-4961d66c7773 +6a508faa-80a8-3246-9941-90d8cc8dec85,7cc93fcf-466c-410d-89ed-4f012d037a05 +6a508faa-80a8-3246-9941-90d8cc8dec85,0d4b7882-95da-4283-a522-318ab89a5481 +6a508faa-80a8-3246-9941-90d8cc8dec85,da1534d0-4f99-4ca7-b754-5236c045e241 +6a508faa-80a8-3246-9941-90d8cc8dec85,fbf02bf0-070d-413a-8c8f-037b4b02a210 +6a508faa-80a8-3246-9941-90d8cc8dec85,81aec8c1-5831-4cfd-b27b-8b7f5ff6b6b9 +6a508faa-80a8-3246-9941-90d8cc8dec85,129f9605-ae16-4865-be3d-a303d815da41 +6a508faa-80a8-3246-9941-90d8cc8dec85,261ea653-1410-4feb-b3be-51dcde78b585 +6a508faa-80a8-3246-9941-90d8cc8dec85,aa35584f-5711-4d1b-b605-987729fc1756 +6a508faa-80a8-3246-9941-90d8cc8dec85,6692f797-7d0f-4621-8a7c-9037f7c12720 +6a508faa-80a8-3246-9941-90d8cc8dec85,dc2bb0b0-76bd-40d8-ad4e-d73a3b1e68d3 +6a508faa-80a8-3246-9941-90d8cc8dec85,ba037666-fdc4-45f6-bc72-20389ce73eba +6a508faa-80a8-3246-9941-90d8cc8dec85,cc1eee52-7425-4cc5-a734-39d7bbaa28f9 +6a508faa-80a8-3246-9941-90d8cc8dec85,83c66047-d2a0-4b76-9cc6-2e4573f8c7c5 +6a508faa-80a8-3246-9941-90d8cc8dec85,3e800836-7b0b-4636-b15f-455b3a97bc7f +6a508faa-80a8-3246-9941-90d8cc8dec85,67a64d50-3c08-4793-9cfb-6622dd8002be +6a508faa-80a8-3246-9941-90d8cc8dec85,585cf26d-0d0e-41a0-9a60-bc45bf92069c +6a508faa-80a8-3246-9941-90d8cc8dec85,1ec806e2-4307-4de5-8eb8-f8638681142c +6a508faa-80a8-3246-9941-90d8cc8dec85,bf460e1d-e395-450e-9c62-07cab7e3826e +6a508faa-80a8-3246-9941-90d8cc8dec85,07e8d11d-3913-46de-9aae-38535e1cd4f3 +6a508faa-80a8-3246-9941-90d8cc8dec85,3a2db6fc-6348-4a79-beb2-5014cf0e9c6c +6a508faa-80a8-3246-9941-90d8cc8dec85,4b951fdd-c7e8-46ce-a18a-0d0a23f73823 +6a508faa-80a8-3246-9941-90d8cc8dec85,371d5f59-8633-4933-a203-1c2c5c929e4e +6a508faa-80a8-3246-9941-90d8cc8dec85,f4b40cf2-b820-43fe-b691-ef69c9aa4491 +6a508faa-80a8-3246-9941-90d8cc8dec85,f90053f2-972b-41e4-b06b-2f5ddbae6ae4 +6a508faa-80a8-3246-9941-90d8cc8dec85,9ed1bc6f-0e2b-4772-84c2-8d6403a4054b +6a508faa-80a8-3246-9941-90d8cc8dec85,7bf2d23d-25cb-4935-98d0-8d1e4d95c7d5 +6a508faa-80a8-3246-9941-90d8cc8dec85,0a9c4310-75d7-4317-b747-e120ae2cb456 +6a508faa-80a8-3246-9941-90d8cc8dec85,790c4cd7-1619-4dfb-a85c-d70ce3cf2bea +6a508faa-80a8-3246-9941-90d8cc8dec85,379bbf83-275f-4210-9d1d-24ddce03573a +6a508faa-80a8-3246-9941-90d8cc8dec85,e13c68bb-84b2-4a35-9cb1-1e068fc3a063 +6a508faa-80a8-3246-9941-90d8cc8dec85,1af44f25-a211-4b17-ace2-72dda2acf2f7 +6a508faa-80a8-3246-9941-90d8cc8dec85,06cf570e-d5ab-4cf6-afc6-c5fdf74cc34a +6a508faa-80a8-3246-9941-90d8cc8dec85,4b736fa2-5453-41a8-9fcb-bec9dcd5a29c +6a508faa-80a8-3246-9941-90d8cc8dec85,d5354cb9-772e-4671-8c8b-b7f54a92f860 +6a508faa-80a8-3246-9941-90d8cc8dec85,965e2305-6a23-4c97-8710-5f762806eeca +6a508faa-80a8-3246-9941-90d8cc8dec85,962e84f5-3469-4ee4-ace3-3355d4707041 +6a508faa-80a8-3246-9941-90d8cc8dec85,f72a2f30-cb0c-483c-ab86-1791aa8bd30b +6a508faa-80a8-3246-9941-90d8cc8dec85,8b62a1ed-a796-435c-9337-a34bdae6e706 +6a508faa-80a8-3246-9941-90d8cc8dec85,322a2842-da2d-40b7-a51e-9ab411b62f9f +6a508faa-80a8-3246-9941-90d8cc8dec85,2bf225c8-d2e6-4c02-8564-839a868fe3e1 +6a508faa-80a8-3246-9941-90d8cc8dec85,2c88ba22-73b3-4398-8912-6271dcc7e571 +6a508faa-80a8-3246-9941-90d8cc8dec85,399931d4-5b18-4c69-8d4d-ff807531402e +6a508faa-80a8-3246-9941-90d8cc8dec85,4c52d781-29cf-4736-8abd-3cb59b166042 +6a508faa-80a8-3246-9941-90d8cc8dec85,40ffd155-de85-4cd7-85c3-eaa95b18370c +6a508faa-80a8-3246-9941-90d8cc8dec85,178686eb-eba3-4162-85e7-4fa0053aacf9 +6a508faa-80a8-3246-9941-90d8cc8dec85,71279cbb-b831-402b-b5f3-8743dc72a590 +6a508faa-80a8-3246-9941-90d8cc8dec85,877359ad-8df0-404a-94dc-e7295bfd9239 +6a508faa-80a8-3246-9941-90d8cc8dec85,56a9f147-d3df-4760-acdd-e704a4380d9c +6a508faa-80a8-3246-9941-90d8cc8dec85,54746242-c98b-40e8-ae65-c7b382324e3c +6a508faa-80a8-3246-9941-90d8cc8dec85,ca7d0282-a1b6-4f04-b094-e23507cb7b4b +6a508faa-80a8-3246-9941-90d8cc8dec85,d27b9fa2-b095-4356-8b11-20b6ac323d4b +6a508faa-80a8-3246-9941-90d8cc8dec85,0c9f5b93-5f80-405d-99fa-079af8711cde +6a508faa-80a8-3246-9941-90d8cc8dec85,64c731f7-0bdf-4183-b492-33fd4855e0af +6a508faa-80a8-3246-9941-90d8cc8dec85,b38911b5-3233-4457-8517-412203c88d89 +6a508faa-80a8-3246-9941-90d8cc8dec85,e181cb75-7315-4538-b895-5b57490391b9 +6a508faa-80a8-3246-9941-90d8cc8dec85,0fe219da-e68b-4ba5-8969-083610ba4e17 +6a508faa-80a8-3246-9941-90d8cc8dec85,c611833b-a6f0-4f83-8525-4276d5b8f6a4 +6a508faa-80a8-3246-9941-90d8cc8dec85,6fedafa7-7965-46f1-87b6-dfaf62e5ed9b +6a508faa-80a8-3246-9941-90d8cc8dec85,c9c19a4c-321c-4035-92e1-f683158702b3 +6a508faa-80a8-3246-9941-90d8cc8dec85,cd5ee172-8457-4605-aa9e-98736aae11f4 +6a508faa-80a8-3246-9941-90d8cc8dec85,4b7183b6-012d-4f1e-b92e-ca8ba4edbbe7 +6a508faa-80a8-3246-9941-90d8cc8dec85,2052874b-91da-4eb4-88f1-5a5007c11572 +6a508faa-80a8-3246-9941-90d8cc8dec85,9e0f10db-a96e-4109-a2f7-c5841b2b11a6 +6a508faa-80a8-3246-9941-90d8cc8dec85,0064eb2e-0b1b-407d-8f4a-44b5fd67c95e +6a508faa-80a8-3246-9941-90d8cc8dec85,cefad4c1-0b51-469b-839f-9ef0081e68a1 +6a508faa-80a8-3246-9941-90d8cc8dec85,ebb49606-ecc3-4f61-a220-8eb7a4215c0e +6a508faa-80a8-3246-9941-90d8cc8dec85,1642c042-aee2-4153-a057-78479198e118 +6a508faa-80a8-3246-9941-90d8cc8dec85,ce945b8b-be78-42f0-aa12-532dc9c3ae6e +6a508faa-80a8-3246-9941-90d8cc8dec85,32a38f46-8a47-4e3c-ab49-5134df3150d5 +6a508faa-80a8-3246-9941-90d8cc8dec85,163eec69-64cd-44ed-97cf-5ac99aefadf4 +6a508faa-80a8-3246-9941-90d8cc8dec85,0322c7d4-8ae4-4c2e-aee7-44970a77cb0f +6a508faa-80a8-3246-9941-90d8cc8dec85,ade96baa-47c6-4322-92bc-a7671103713c +6a508faa-80a8-3246-9941-90d8cc8dec85,dd7eb312-36d0-4228-8bbc-b0b873f4eee8 +6a508faa-80a8-3246-9941-90d8cc8dec85,438f139a-ba49-4f9a-810f-d6325ba3c6bf +6a508faa-80a8-3246-9941-90d8cc8dec85,23080198-0fd5-4347-9d92-939a61926630 +6a508faa-80a8-3246-9941-90d8cc8dec85,d317905d-bdae-4fcd-95f6-fd971a1d8b4d +6a508faa-80a8-3246-9941-90d8cc8dec85,0ff6694f-68cb-4bd1-914f-e31f61f2f255 +6a508faa-80a8-3246-9941-90d8cc8dec85,9327ecb4-f323-4db8-b777-e8c9f1d5edce +6a508faa-80a8-3246-9941-90d8cc8dec85,bdca20bf-0a3d-4127-a1c3-241f5b051693 +6a508faa-80a8-3246-9941-90d8cc8dec85,a5847efb-9ce6-4656-ae5e-565752226626 +6a508faa-80a8-3246-9941-90d8cc8dec85,3d7c5b6e-4400-4884-ba9c-bfb9d33be71c +6a508faa-80a8-3246-9941-90d8cc8dec85,facf55e1-85a9-45ea-ba72-f8b52daa3a7b +6a508faa-80a8-3246-9941-90d8cc8dec85,20eae2a9-d31e-4afd-9fc3-577c395da927 +6a508faa-80a8-3246-9941-90d8cc8dec85,2ad1c130-070d-4e99-8634-d7c86f27dd0a +6a508faa-80a8-3246-9941-90d8cc8dec85,11bd625d-342a-402f-9342-dea5d0feea01 +6a508faa-80a8-3246-9941-90d8cc8dec85,598b2e12-d5fb-4de9-b132-3b0c54ef3f7a +6a508faa-80a8-3246-9941-90d8cc8dec85,8b0124a5-d522-4f09-895a-97da6cc92f58 +6a508faa-80a8-3246-9941-90d8cc8dec85,a4bb32e6-fc78-454a-abc1-b19a86c40e6a +6a508faa-80a8-3246-9941-90d8cc8dec85,ebaa8efb-e7f5-4383-9688-baa6923fbd31 +6a508faa-80a8-3246-9941-90d8cc8dec85,e03e94ab-a614-4138-b1c4-fd59e840b928 +6a508faa-80a8-3246-9941-90d8cc8dec85,ded0d4b4-9c4d-4d32-aee1-6970bd0e36dd diff --git a/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/FormulaInputs.csv b/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/FormulaInputs.csv new file mode 100644 index 000000000..110090572 --- /dev/null +++ b/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/FormulaInputs.csv @@ -0,0 +1,237 @@ +gas,parameter_code,parameter_name,methodology,gpc_refno,year,formula_input_value,formula_input_units,formula_name,metadata,region,actor_id,datasource,formulainput_id +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.3,,0.03,year,,"{""climate"":null,""waste_type"":null}",world,world,IPCC,f67b1cb5-24d0-4f89-a34b-009f88e22c08 +CH4,BOD,degradable-organic-component,domestic-wastewater,III.4.1,,14600.0,kg/1000 persons/yr,,{},Latin America,,IPCC,620dfc30-774a-4b59-b1fe-2a9034ee5683 +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.3,,0.21,year,,"{""climate"":null,""waste_type"":""Bulk MSW or Industrial Waste""}",Brazil,BR,IPCC,f9b50987-a3d4-49ea-9fe5-daf399c1c4d7 +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.1,,0.5,fraction,,"{""waste_form"":""unclassified"",""waste_type"":null}",world,world,IPCC,f6abd2a4-848f-4c09-bc56-e9768baafa40 +CH4,OX,oxidation-factor,methane-commitment,III.1.3,,0.1,fraction,,"{""treatment_type"":""Managed""}",world,world,IPCC,dd149178-2112-4b79-8293-f44cdcc04c5c +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.1,,22.8,fraction,,"{""waste_form"":""unclassified"",""waste_type"":""Wood""}",United States of America,US,IPCC,072dd634-3d29-4b90-9c44-a942f5b2df6c +CH4,MCF,methane-correction-factor,first-order-decay,III.1.1,,1.0,fraction,,"{""treatment_type"":""Managed – Anaerobic""}",world,world,IPCC,ee70fd30-d209-4bc5-b4db-1fd390f83f5a +CH4,MCF,methane-correction-factor,first-order-decay,III.1.1,,0.5,fraction,,"{""treatment_type"":""Managed – Anaerobic""}",world,world,IPCC,7d347204-b7d3-4978-b2b4-fd0c55acff75 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.3,,0.8,fraction,,"{""treatment_type"":""Anaerobic Treatment""}",world,world,IPCC,7eb9f336-22f1-4146-997a-5b61118d4ced +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.1,,0.55,fraction,,"{""waste_form"":""unclassified"",""waste_type"":null}",world,world,IPCC,24714720-5f28-4e5b-adcb-c8fea90a249a +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.3,,0.18,year,,"{""climate"":null,""waste_type"":null}",Finland,FI,IPCC,bd337ae9-d9e6-4923-a5de-90968e4364a2 +CH4,F,fraction-of-methane-in-landfill-gas,methane-commitment,III.1.1,,0.5,fraction,,{},world,world,IPCC,a5908042-6591-47c7-a0c2-572f25a9432e +CH4,MCF,methane-correction-factor,first-order-decay,III.1.3,,0.6,fraction,,"{""treatment_type"":""Uncategorized Waste Sites""}",world,world,IPCC,59bdace0-1a80-436c-8c70-61164b1366d8 +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.1,,4.95,fraction,,"{""waste_form"":""unclassified"",""waste_type"":""Wood""}",United States of America,US,IPCC,af3f572c-c767-40d6-b90e-497a490d5a16 +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.1,,0.2,year,,"{""climate"":""Tropical - Moist"",""waste_type"":""Rapidly Degrading Waste""}",world,world,IPCC,306e02d8-597f-40bc-b8fc-9fede8dd8a75 +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.1,,0.03,year,,"{""climate"":null,""waste_type"":null}",world,world,IPCC,0458f7c9-5de9-4b84-bd79-1f8b2e84fa5a +CH4,BOD,degradable-organic-component,domestic-wastewater,III.4.3,,0.04,kg/cap/day,,{},Latin America,,IPCC,a4c8b457-df7c-449b-8a9d-219549899c33 +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.3,,0.55,fraction,,"{""waste_form"":""unclassified"",""waste_type"":null}",world,world,IPCC,c2306453-c063-47ce-9b5a-3ef234e237ff +CH4,MCF,methane-correction-factor,first-order-decay,III.1.3,,0.5,fraction,,"{""treatment_type"":""Managed – Anaerobic""}",world,world,IPCC,ce0d9aaa-b623-46d4-bd72-8b92ca68ffa5 +CH4,B0,maximum-methane-producing-capacity,industrial-wastewater,III.4.1,,0.25,Kg/Kg,,{},world,world,IPCC,92a56cf2-616a-448d-96b1-39810916517e +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.3,,0.77,fraction,,"{""waste_form"":""unclassified"",""waste_type"":null}",world,world,IPCC,87918349-705a-40ea-bfa2-e639a4e11a90 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.3,,0.1,fraction,,"{""treatment_type"":""Untreated System""}",world,world,IPCC,c27422f9-fdea-4d2f-aef9-6c3781d43613 +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.3,,0.05,year,,"{""climate"":""Dry"",""waste_type"":""Slowly Degrading Waste""}",world,world,IPCC,79ec163d-f061-4720-a04b-7620e4159239 +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.3,,0.5,fraction,,"{""waste_form"":""unclassified"",""waste_type"":null}",world,world,IPCC,c0a6c736-7e91-4625-8a8b-b68b54bfe268 +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.3,,22.8,fraction,,"{""waste_form"":""unclassified"",""waste_type"":""Wood""}",United States of America,US,IPCC,1f7093fb-e11d-4a0d-8ebd-b0db9a1ee72b +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.1,,0.21,year,,"{""climate"":null,""waste_type"":""Bulk MSW or Industrial Waste""}",Brazil,BR,IPCC,8e71ac9b-7750-4e69-a187-05e3834b09fd +CH4,DOC,degradable-organic-carbon-under-aerobic-conditions,first-order-decay,III.1.1,,0.135,fraction,,"{""waste_form"":""unclassified"",""waste_type"":null}",Thailand,TH,IPCC,fcf312c5-3492-40f1-b8b0-644d64cd6efa +CH4,DOC,degradable-organic-carbon-under-aerobic-conditions,first-order-decay,III.1.3,,0.135,fraction,,"{""waste_form"":""unclassified"",""waste_type"":null}",Thailand,TH,IPCC,b1614460-dee3-45f0-b87a-3a4066334dcd +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.1,,0.0,fraction,,"{""treatment_type"":""Aerobic Treatment Plant - Well Managed""}",world,world,IPCC,3b71a9d5-d7cd-45bd-96b4-27f469e7e37f +CH4,MCF,methane-correction-factor,first-order-decay,III.1.1,,0.6,fraction,,"{""treatment_type"":""Uncategorized Waste Sites""}",world,world,IPCC,b95a095b-89f0-42de-9967-612813a91c73 +CH4,MCF,methane-correction-factor,first-order-decay,III.1.3,,0.8,fraction,,"{""treatment_type"":""Unmanaged Waste Sites - Deep SWDS""}",world,world,IPCC,fd797944-dc0c-4af1-bf44-f2ebe27633be +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.1,,0.8,fraction,,"{""treatment_type"":""Anaerobic Reactor""}",world,world,IPCC,d3c11eeb-5277-472b-bd1c-8464447ef683 +CH4,B0,maximum-methane-producing-capacity,domestic-wastewater,III.4.1,,0.6,Kg/Kg,,{},world,world,IPCC,7f745871-32ac-46e9-99e6-e2568a61d93d +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.1,,0.18,year,,"{""climate"":null,""waste_type"":null}",Finland,FI,IPCC,18eed9be-069a-489e-ab3e-4b31487f6e85 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.1,,0.8,fraction,,"{""treatment_type"":""Anaerobic Treatment""}",world,world,IPCC,4bdc0fde-b2f0-4e77-b26c-d8d127cfbb99 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.1,,0.1,fraction,,"{""treatment_type"":""Untreated System""}",world,world,IPCC,f3af7faa-47b6-484c-8efb-00868ce4d93e +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.3,,4.95,fraction,,"{""waste_form"":""unclassified"",""waste_type"":""Wood""}",United States of America,US,IPCC,2a7f6fff-3aa9-48fc-8ed0-937462918166 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.1,,0.2,fraction,,"{""treatment_type"":""Anaerobic Shallow Lagoon""}",world,world,IPCC,d092d6e6-8be2-4883-a217-8183117d5bf8 +CH4,OX,oxidation-factor,methane-commitment,III.1.1,,0.1,fraction,,"{""treatment_type"":""Managed""}",world,world,IPCC,eb8d97eb-31a3-47bf-aa7e-13246440ef5e +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.3,,0.2,year,,"{""climate"":""Tropical - Moist"",""waste_type"":""Rapidly Degrading Waste""}",world,world,IPCC,e75fc5ff-d81d-45eb-a652-3befaf1e1346 +CH4,MCF,methane-correction-factor,first-order-decay,III.1.1,,0.8,fraction,,"{""treatment_type"":""Unmanaged Waste Sites - Deep SWDS""}",world,world,IPCC,12fdf7b4-25e5-427e-8410-02e07d1c2471 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.3,,0.8,fraction,,"{""treatment_type"":""Anaerobic Reactor""}",world,world,IPCC,80608097-81bc-4ece-b8bc-4321fa536358 +CH4,BOD,degradable-organic-component,domestic-wastewater,III.4.3,,14600.0,kg/1000 persons/yr,,{},Latin America,,IPCC,019aabc8-1ef8-4b4a-97f7-611fdc67da0c +CH4,MCF,methane-correction-factor,first-order-decay,III.1.3,,1.0,fraction,,"{""treatment_type"":""Managed – Anaerobic""}",world,world,IPCC,23868b77-028d-4833-99a7-eb63981e7f0d +CH4,OX,oxidation-factor,methane-commitment,III.1.1,,0.0,fraction,,"{""treatment_type"":""Unmanaged""}",world,world,IPCC,5dce75e1-4a61-4e83-bc9c-dc6febe241c4 +CH4,F,fraction-of-methane-in-landfill-gas,methane-commitment,III.1.3,,0.5,fraction,,{},world,world,IPCC,0d9116d6-7be2-4cfc-9b5b-725ecab52aab +CH4,k,rate-of-reaction-constant,first-order-decay,III.1.1,,0.05,year,,"{""climate"":""Dry"",""waste_type"":""Slowly Degrading Waste""}",world,world,IPCC,f1e81d51-ff80-4248-989a-7d04b52b503f +CH4,MCF,methane-correction-factor,first-order-decay,III.1.1,,0.4,fraction,,"{""treatment_type"":""Unmanaged Waste Sites - Shallow SWDS""}",world,world,IPCC,40b95c6b-5e6c-4686-82f9-7d8d86d2a451 +CH4,MCF,methane-correction-factor,first-order-decay,III.1.3,,0.4,fraction,,"{""treatment_type"":""Unmanaged Waste Sites - Shallow SWDS""}",world,world,IPCC,c4209a82-695c-43ef-bb9c-6f1e2b93f52f +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.1,,0.3,fraction,,"{""treatment_type"":""Aerobic Treatment Plant - Well Managed""}",world,world,IPCC,86902f84-179e-4414-a212-8e9f20efdf43 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.3,,0.3,fraction,,"{""treatment_type"":""Aerobic Treatment Plant - Well Managed""}",world,world,IPCC,ae022443-11ca-4bda-9240-82459fc70e3f +CH4,BOD,degradable-organic-component,domestic-wastewater,III.4.1,,0.04,kg/cap/day,,{},Latin America,,IPCC,b065ecea-2ecd-4c93-baea-dae81e605a2f +CH4,B0,maximum-methane-producing-capacity,domestic-wastewater,III.4.3,,0.6,Kg/Kg,,{},world,world,IPCC,2256fad9-60ac-4b3b-a293-4eccde099e85 +CH4,B0,maximum-methane-producing-capacity,industrial-wastewater,III.4.3,,0.25,Kg/Kg,,{},world,world,IPCC,54317197-4dd2-4576-81a4-fdda42bc8501 +CH4,OX,oxidation-factor,methane-commitment,III.1.3,,0.0,fraction,,"{""treatment_type"":""Unmanaged""}",world,world,IPCC,aa77dfcb-47c7-464b-aa91-4ff84e8dc3fd +CH4,DOCf,fraction-of-doc-decomposing-under-anaerobic-conditions,first-order-decay,III.1.1,,0.77,fraction,,"{""waste_form"":""unclassified"",""waste_type"":null}",world,world,IPCC,baa0a619-c3f7-48a4-b81e-cfa8849bcf59 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.3,,0.0,fraction,,"{""treatment_type"":""Aerobic Treatment Plant - Well Managed""}",world,world,IPCC,438e5372-92d3-4869-91ca-4b15448f7881 +CH4,MCF,methane-correction-factor,industrial-wastewater,III.4.3,,0.2,fraction,,"{""treatment_type"":""Anaerobic Shallow Lagoon""}",world,world,IPCC,cf19ab25-87c6-4fa5-a67b-470aa2844d5a +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Clinical""}",,world,IPCC,e17e8a0e-f7ee-4cb2-8cdd-8cc09f66c7f2 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Clinical""}",,world,IPCC,9abe763f-4c45-4537-a55f-b2eacce9ded0 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,25.0,%,,"{""waste_type"":""Clinical""}",,world,IPCC,eb6dbf1c-9723-49e8-9113-2f974cd05722 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,25.0,%,,"{""waste_type"":""Clinical""}",,world,IPCC,266a9cd7-f525-4ca0-b993-14666bda61a6 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,95.0,%,,"{""waste_type"":""Hazardous""}",,world,IPCC,483f0a3e-4066-4421-96cf-fb940af843ae +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,95.0,%,,"{""waste_type"":""Hazardous""}",,world,IPCC,7908063f-85be-4245-ae71-178343732283 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,9.6,%,,"{""waste_type"":""Muncipal Solid Waste""}",,JP,IPCC,aa4dcb90-4e5c-4064-89b2-359a53c0c9bf +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,9.6,%,,"{""waste_type"":""Muncipal Solid Waste""}",,JP,IPCC,cdadf043-722f-4756-9cd2-3e84d407f3fd +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Glass""}",,world,IPCC,e3558845-c4a9-4679-9e09-9d24c5b98ea5 +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Glass""}",,world,IPCC,c123e024-2d12-4176-8f66-b0a4f1a82dc5 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,84.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,98127477-39ae-4c07-abf5-c93bdd15943a +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,84.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,dbc12f0e-ec5b-41f7-b421-ada352337134 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,20.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,534a11e5-cbe5-45c9-a6a2-b1b0cc3283ab +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,20.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,cc166df3-4f18-4a43-b9e7-1fde9993bba0 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,31.5,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,34eb79e0-01b2-40b0-bf15-2a332a51c99a +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,31.5,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,9a4f2be2-b9ca-42e3-9b03-829922f1a086 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,29.5,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,11d24311-0e7d-4910-aebd-400af160b1c9 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,29.5,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,da0ad17a-ad75-47f6-be13-061739731a9a +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,95.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,b9a32262-958b-4e83-b381-898faa932b57 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,95.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,6f24625c-efa9-4d48-93e4-199dcaac4a1a +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,38.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,5c299f0d-bccd-4708-bb03-9a548365b83b +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,38.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,92c71189-8b7a-4129-b2d3-dfa7f10cd002 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,33.5,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,faa0eb39-d0d7-473a-99c8-57b9c8c115b5 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,33.5,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,019898a2-ef23-4f17-8d1b-a4b322a9296e +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,25.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,3912c5a6-cf01-4445-b4d3-4afeca9f55c5 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,25.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,37f4f561-1c7b-41a6-84e0-c3c270ed8176 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,9c7187c6-7717-45c7-b070-fabbf71a3ab2 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,ac0d6d98-0415-4fd7-bd5a-a9b3c4e672ba +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,90.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,c9f4fd7f-ed3a-4845-b3af-19213aa01263 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,90.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,cf438f12-a8ba-46b2-bf54-a5abd1ca008d +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,59d8f92e-fc6d-4ea8-bc12-5923837ea034 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,623aad2d-5ebf-4f36-8dc3-d6cd3b188d25 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,43.5,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,d98ed68c-411d-4110-9030-45d83e960202 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,43.5,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,075a5ac1-e3fe-421c-852c-1683567bff89 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,37.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,ea007b78-f3ea-464e-89c5-7dbe51385292 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,37.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,996b5148-4314-42d2-a141-fc619752044d +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,1.0,%,,"{""waste_type"":""Sludge""}",,world,IPCC,3a63065c-5f5c-4f37-ad36-3425a3d6ab7f +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,1.0,%,,"{""waste_type"":""Sludge""}",,world,IPCC,c99d13b8-2483-4c02-a1b5-5434448e0a73 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,90.0,%,,"{""waste_type"":""Paper/cardboard""}",,world,IPCC,59a920b3-c693-436f-999c-2169b11fdfca +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,90.0,%,,"{""waste_type"":""Paper/cardboard""}",,world,IPCC,b13663e9-b329-4539-9bce-52a8448fbf3e +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Nappies""}",,world,IPCC,83b01c39-f121-44fa-ba13-0c51734f6734 +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Nappies""}",,world,IPCC,36c8a42b-dede-4cfa-8a03-54bcebf46903 +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,ecfada79-903c-43b7-9d79-139bd9507f94 +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,09363c85-46d8-4df5-b01f-18d8efe85696 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Food waste""}",,world,IPCC,c331cb13-c1e1-4a38-a24b-5ebd399f4d24 +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Food waste""}",,world,IPCC,d12efdbf-9dcb-4438-8dcc-1d36addd1b78 +CO2,CFi,fraction-of-carbon,incineration-waste,III.3.1,,40.8,%,,"{""waste_type"":""Paper/cardboard""}",,JP,IPCC,acc4f02a-bbef-4692-8242-bbbcfa3dabf5 +CO2,CFi,fraction-of-carbon,incineration-waste,III.3.3,,40.8,%,,"{""waste_type"":""Paper/cardboard""}",,JP,IPCC,47a4a654-ce05-4530-bbb0-fc01adbf7e8d +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Nappies""}",,world,IPCC,f68373de-16ee-4005-8c56-d8f1b278a894 +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Nappies""}",,world,IPCC,541a75e1-2d1b-49ca-99e3-0fc18c4d7633 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,10.0,%,,"{""waste_type"":""Nappies""}",,world,IPCC,d1c7695b-dfbf-4f46-ac9b-b33e7216979e +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,10.0,%,,"{""waste_type"":""Nappies""}",,world,IPCC,78137529-bf1e-4046-a0ff-a5e512ff33d7 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,9.6,%,,"{""waste_type"":""Paper/cardboard""}",,JP,IPCC,bb14db69-719c-4472-8f93-da19444522e4 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,9.6,%,,"{""waste_type"":""Paper/cardboard""}",,JP,IPCC,d8217be8-eeb5-4e45-8051-a0d7cca8bdfb +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Garden and Park waste""}",,world,IPCC,65d1de74-4398-4df5-b930-a97b0189fcba +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Garden and Park waste""}",,world,IPCC,371e8a21-5f20-421a-98bf-f6f605408763 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,de39b20a-e953-4813-a22a-f734caecda47 +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,c5d92bb0-0c54-43e5-a3c5-cef1e3668a06 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":null}",,world,IPCC,cb3ad6a6-47c9-4403-9c25-76a1649e4710 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":null}",,world,IPCC,0a86c56c-89a8-46a7-bea3-f7dc4a5f7ee4 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,29.5,%,,"{""waste_type"":null}",,world,IPCC,340d5e7d-53b8-46a0-a1e7-6573a9ecea9b +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,29.5,%,,"{""waste_type"":null}",,world,IPCC,8d6202d2-2fe3-4bc3-b19c-171f61b4a021 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,20.0,%,,"{""waste_type"":null}",,world,IPCC,d6ff2478-2f93-4eb5-ac06-a065a1fbb939 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,20.0,%,,"{""waste_type"":null}",,world,IPCC,9593cb7d-84b5-4c66-9f61-4e852ec93b1b +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,31.5,%,,"{""waste_type"":null}",,world,IPCC,48026f19-75ed-4a00-b26c-d74df0141adb +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,31.5,%,,"{""waste_type"":null}",,world,IPCC,afa03bc5-580d-47cb-9403-fce7c54feb5e +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,43.5,%,,"{""waste_type"":null}",,world,IPCC,87d89803-4b9c-4640-8aba-3d4691cfad13 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,43.5,%,,"{""waste_type"":null}",,world,IPCC,f949ae57-cc6e-427e-99bc-faa0cbe31eef +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,38.0,%,,"{""waste_type"":null}",,world,IPCC,8a8b7c82-3d68-48c4-a0d1-e920d864fa05 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,38.0,%,,"{""waste_type"":null}",,world,IPCC,b26e47e4-5c4c-493e-9756-0fb2282a93c1 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,33.5,%,,"{""waste_type"":null}",,world,IPCC,d08ff991-158a-4586-b9f8-23c64a9f60d6 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,33.5,%,,"{""waste_type"":null}",,world,IPCC,1e6f6ff0-cb25-4c63-89ed-7d0495f62c65 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,1.0,%,,"{""waste_type"":null}",,world,IPCC,24e630f8-106b-4e5b-8be2-412ea72300b4 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,1.0,%,,"{""waste_type"":null}",,world,IPCC,171ef467-a248-4ba3-bf0a-4ddf34797d19 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,10.0,%,,"{""waste_type"":null}",,world,IPCC,174730d9-8683-42ac-84df-34b685b1af82 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,10.0,%,,"{""waste_type"":null}",,world,IPCC,505239ae-076c-4f08-bfa3-2288e816adf3 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,37.0,%,,"{""waste_type"":null}",,world,IPCC,35387ad1-3f32-440b-9993-aa7743a91992 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,37.0,%,,"{""waste_type"":null}",,world,IPCC,99e74a17-2dd4-41ed-8f48-47200d69c74a +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,90.0,%,,"{""waste_type"":""Paper/cardboard""}",,world,IPCC,9b9500c7-97c5-4d6f-ab45-1c2b286408e7 +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,90.0,%,,"{""waste_type"":""Paper/cardboard""}",,world,IPCC,41cd34d7-7f05-4cb3-b31a-3662dfb2ff5d +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,1.0,%,,"{""waste_type"":""Paper/cardboard""}",,world,IPCC,4c802a47-a391-4f29-82cf-1b097bcfe7a7 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,1.0,%,,"{""waste_type"":""Paper/cardboard""}",,world,IPCC,be96a15d-1fd4-4f1b-9cd7-b04cba2500e7 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Metal""}",,world,IPCC,3839b9b4-cce9-4fba-9dc7-6785b5827f7b +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Metal""}",,world,IPCC,4a2de607-37eb-43ae-b5d3-22fe5ecc79f6 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,90.0,%,,"{""waste_type"":""Other, inert waste""}",,world,IPCC,6b9c8218-6fcd-46c9-a8b5-c298f0c3b82b +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,90.0,%,,"{""waste_type"":""Other, inert waste""}",,world,IPCC,118023ae-4098-4dce-b6c4-6e2c7ee79c32 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,85.0,%,,"{""waste_type"":""Wood""}",,world,IPCC,a8dbff19-90ea-4a4e-a3bd-4961d66c7773 +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,85.0,%,,"{""waste_type"":""Wood""}",,world,IPCC,7cc93fcf-466c-410d-89ed-4f012d037a05 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Nappies""}",,world,IPCC,0d4b7882-95da-4283-a522-318ab89a5481 +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Nappies""}",,world,IPCC,da1534d0-4f99-4ca7-b754-5236c045e241 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Garden and Park waste""}",,world,IPCC,fbf02bf0-070d-413a-8c8f-037b4b02a210 +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Garden and Park waste""}",,world,IPCC,81aec8c1-5831-4cfd-b27b-8b7f5ff6b6b9 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,84.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,129f9605-ae16-4865-be3d-a303d815da41 +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,84.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,261ea653-1410-4feb-b3be-51dcde78b585 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,90.0,%,,"{""waste_type"":""Other, inert waste""}",,world,IPCC,aa35584f-5711-4d1b-b605-987729fc1756 +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,90.0,%,,"{""waste_type"":""Other, inert waste""}",,world,IPCC,6692f797-7d0f-4621-8a7c-9037f7c12720 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Food waste""}",,world,IPCC,dc2bb0b0-76bd-40d8-ad4e-d73a3b1e68d3 +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Food waste""}",,world,IPCC,ba037666-fdc4-45f6-bc72-20389ce73eba +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,80.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,cc1eee52-7425-4cc5-a734-39d7bbaa28f9 +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,80.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,83c66047-d2a0-4b76-9cc6-2e4573f8c7c5 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,85.0,%,,"{""waste_type"":""Wood""}",,world,IPCC,3e800836-7b0b-4636-b15f-455b3a97bc7f +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,85.0,%,,"{""waste_type"":""Wood""}",,world,IPCC,67a64d50-3c08-4793-9cfb-6622dd8002be +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,20.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,585cf26d-0d0e-41a0-9a60-bc45bf92069c +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,20.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,1ec806e2-4307-4de5-8eb8-f8638681142c +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,16.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,bf460e1d-e395-450e-9c62-07cab7e3826e +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,16.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,07e8d11d-3913-46de-9aae-38535e1cd4f3 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Glass""}",,world,IPCC,3a2db6fc-6348-4a79-beb2-5014cf0e9c6c +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Glass""}",,world,IPCC,4b951fdd-c7e8-46ce-a18a-0d0a23f73823 +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,80.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,371d5f59-8633-4933-a203-1c2c5c929e4e +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,80.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,f4b40cf2-b820-43fe-b691-ef69c9aa4491 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Metal""}",,world,IPCC,f90053f2-972b-41e4-b06b-2f5ddbae6ae4 +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Metal""}",,world,IPCC,9ed1bc6f-0e2b-4772-84c2-8d6403a4054b +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,20.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,7bf2d23d-25cb-4935-98d0-8d1e4d95c7d5 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,20.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,0a9c4310-75d7-4317-b747-e120ae2cb456 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,17.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,790c4cd7-1619-4dfb-a85c-d70ce3cf2bea +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,17.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,379bbf83-275f-4210-9d1d-24ddce03573a +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Garden and Park waste""}",,world,IPCC,e13c68bb-84b2-4a35-9cb1-1e068fc3a063 +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Garden and Park waste""}",,world,IPCC,1af44f25-a211-4b17-ace2-72dda2acf2f7 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,90.0,%,,"{""waste_type"":""Paper/cardboard""}",,world,IPCC,06cf570e-d5ab-4cf6-afc6-c5fdf74cc34a +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,90.0,%,,"{""waste_type"":""Paper/cardboard""}",,world,IPCC,4b736fa2-5453-41a8-9fcb-bec9dcd5a29c +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,16.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,d5354cb9-772e-4671-8c8b-b7f54a92f860 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,16.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,965e2305-6a23-4c97-8710-5f762806eeca +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,90.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,962e84f5-3469-4ee4-ace3-3355d4707041 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,90.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,f72a2f30-cb0c-483c-ab86-1791aa8bd30b +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,17.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,8b62a1ed-a796-435c-9337-a34bdae6e706 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,17.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,322a2842-da2d-40b7-a51e-9ab411b62f9f +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,20.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,2bf225c8-d2e6-4c02-8564-839a868fe3e1 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,20.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,2c88ba22-73b3-4398-8912-6271dcc7e571 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,3.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,399931d4-5b18-4c69-8d4d-ff807531402e +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,3.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,4c52d781-29cf-4736-8abd-3cb59b166042 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,80.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,40ffd155-de85-4cd7-85c3-eaa95b18370c +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,80.0,%,,"{""waste_type"":""Industrial""}",,world,IPCC,178686eb-eba3-4162-85e7-4fa0053aacf9 +N2O,OFi,oxidation-factor,incineration-waste,III.3.1,,38.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,71279cbb-b831-402b-b5f3-8743dc72a590 +N2O,OFi,oxidation-factor,incineration-waste,III.3.3,,38.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,877359ad-8df0-404a-94dc-e7295bfd9239 +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Food waste""}",,world,IPCC,56a9f147-d3df-4760-acdd-e704a4380d9c +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Food waste""}",,world,IPCC,54746242-c98b-40e8-ae65-c7b382324e3c +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,ca7d0282-a1b6-4f04-b094-e23507cb7b4b +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,d27b9fa2-b095-4356-8b11-20b6ac323d4b +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,40.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,0c9f5b93-5f80-405d-99fa-079af8711cde +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,40.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,64c731f7-0bdf-4183-b492-33fd4855e0af +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,1.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,b38911b5-3233-4457-8517-412203c88d89 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,1.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,e181cb75-7315-4538-b895-5b57490391b9 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,20.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,0fe219da-e68b-4ba5-8969-083610ba4e17 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,20.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,c611833b-a6f0-4f83-8525-4276d5b8f6a4 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,10.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,6fedafa7-7965-46f1-87b6-dfaf62e5ed9b +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,10.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,c9c19a4c-321c-4035-92e1-f683158702b3 +CO2,OFi,oxidation-factor,incineration-waste,III.3.1,,38.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,cd5ee172-8457-4605-aa9e-98736aae11f4 +CO2,OFi,oxidation-factor,incineration-waste,III.3.3,,38.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,4b7183b6-012d-4f1e-b92e-ca8ba4edbbe7 +N2O,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,38.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,2052874b-91da-4eb4-88f1-5a5007c11572 +N2O,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,38.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,9e0f10db-a96e-4109-a2f7-c5841b2b11a6 +CH4,OFi,oxidation-factor,incineration-waste,III.3.1,,38.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,0064eb2e-0b1b-407d-8f4a-44b5fd67c95e +CH4,OFi,oxidation-factor,incineration-waste,III.3.3,,38.0,%,,"{""waste_type"":""Muncipal Solid Waste""}",,world,IPCC,cefad4c1-0b51-469b-839f-9ef0081e68a1 +CO2,CFi,fraction-of-carbon,incineration-waste,III.3.1,,62.1,%,,"{""waste_type"":""PET bottles""}",,JP,IPCC,ebb49606-ecc3-4f61-a220-8eb7a4215c0e +CO2,CFi,fraction-of-carbon,incineration-waste,III.3.3,,62.1,%,,"{""waste_type"":""PET bottles""}",,JP,IPCC,1642c042-aee2-4153-a057-78479198e118 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,80.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,ce945b8b-be78-42f0-aa12-532dc9c3ae6e +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,80.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,32a38f46-8a47-4e3c-ab49-5134df3150d5 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,3.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,163eec69-64cd-44ed-97cf-5ac99aefadf4 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,3.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,0322c7d4-8ae4-4c2e-aee7-44970a77cb0f +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,ade96baa-47c6-4322-92bc-a7671103713c +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,dd7eb312-36d0-4228-8bbc-b0b873f4eee8 +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,85.0,%,,"{""waste_type"":""Wood""}",,world,IPCC,438f139a-ba49-4f9a-810f-d6325ba3c6bf +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,85.0,%,,"{""waste_type"":""Wood""}",,world,IPCC,23080198-0fd5-4347-9d92-939a61926630 +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,90.0,%,,"{""waste_type"":""Other, inert waste""}",,world,IPCC,d317905d-bdae-4fcd-95f6-fd971a1d8b4d +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,90.0,%,,"{""waste_type"":""Other, inert waste""}",,world,IPCC,0ff6694f-68cb-4bd1-914f-e31f61f2f255 +CH4,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,38.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,9327ecb4-f323-4db8-b777-e8c9f1d5edce +CH4,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,38.0,%,,"{""waste_type"":""Uncategorized""}",,world,IPCC,bdca20bf-0a3d-4127-a1c3-241f5b051693 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Other, inert waste""}",,world,IPCC,a5847efb-9ce6-4656-ae5e-565752226626 +CO2,FCFi,fraction-of-fossil-carbon,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Other, inert waste""}",,world,IPCC,3d7c5b6e-4400-4884-ba9c-bfb9d33be71c +CO2,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,facf55e1-85a9-45ea-ba72-f8b52daa3a7b +CO2,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Plastics""}",,world,IPCC,20eae2a9-d31e-4afd-9fc3-577c395da927 +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,84.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,2ad1c130-070d-4e99-8634-d7c86f27dd0a +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,84.0,%,,"{""waste_type"":""Rubber and Leather""}",,world,IPCC,11bd625d-342a-402f-9342-dea5d0feea01 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Glass""}",,world,IPCC,598b2e12-d5fb-4de9-b132-3b0c54ef3f7a +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Glass""}",,world,IPCC,8b0124a5-d522-4f09-895a-97da6cc92f58 +CH4,dmi,dry-matter-content,incineration-waste,III.3.1,,80.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,a4bb32e6-fc78-454a-abc1-b19a86c40e6a +CH4,dmi,dry-matter-content,incineration-waste,III.3.3,,80.0,%,,"{""waste_type"":""Textile""}",,world,IPCC,ebaa8efb-e7f5-4383-9688-baa6923fbd31 +N2O,dmi,dry-matter-content,incineration-waste,III.3.1,,100.0,%,,"{""waste_type"":""Metal""}",,world,IPCC,e03e94ab-a614-4138-b1c4-fd59e840b928 +N2O,dmi,dry-matter-content,incineration-waste,III.3.3,,100.0,%,,"{""waste_type"":""Metal""}",,world,IPCC,ded0d4b4-9c4d-4d32-aee1-6970bd0e36dd diff --git a/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/Publisher.csv b/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/Publisher.csv new file mode 100644 index 000000000..79476143b --- /dev/null +++ b/app/seed-data/formula_values/data_processed/EFDB_2006_IPCC_guidelines/Publisher.csv @@ -0,0 +1,2 @@ +name,URL,publisher_id +IPCC,https://www.ipcc.ch/,02359a57-1fd1-397f-9d75-692c569c8ed7 diff --git a/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/EFDB_2006_IPCC_guidelines.csv b/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/EFDB_2006_IPCC_guidelines.csv new file mode 100644 index 000000000..8465568ea --- /dev/null +++ b/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/EFDB_2006_IPCC_guidelines.csv @@ -0,0 +1,14686 @@ +EF ID,IPCC 1996 Source/Sink Category,IPCC 2006 Source/Sink Category,Gas,Fuel 1996,Fuel 2006,Type of parameter,Description,Technologies / Practices,Parameters / Conditions,Region / Regional Conditions,Abatement / Control Technologies,Other properties,Value,Unit,Equation,IPCC Worksheet,Technical Reference,Source of data,Data provider +62738 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,1996 & 2006 IPCC default ,MCF (methane correction factor) by SWDS classification ,Managed-anaerobic ,"Controlled placement of waste, will include at least one of the following: i. cover material, ii mechanical compacting, iii levelling of the waste ",,,,1 ,fraction ,"Equation 3.2 in Chapter 3 of Volume 5, 2006 IPCC Guidelines Equation 5.1 on Page 5.6 and Equation 5.3 on Page 5.7 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","IPCC 2006 Waste model, MCF tab Worksheet 6-1 and Worksheet 6-1C (SUPPLEMENTAL) in 1996 IPCC Guidelines ",,"Table 3.1, p.3.14 of 2006 IPCC Guidelines Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Table 6-2 on Page 6.8 of the Reference Manual); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ",IPCC  +,,,,,,,,,,,,,,,,,,, +62739 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,1996 & 2006 IPCC default ,MCF (methane correction factor) by SWDS classification ,Unmanaged-deep ,SWDS not meeting criteria for managed waste site and >5 meters of waste and/or high water table. ,,,"includes filling inland water, such as pond, river, or wetland by waste ",0.8 ,fraction ,"Equation 3.2 in Chapter 3 of Volume 5, 2006 IPCC Guidelines Equation 5.1 on Page 5.6 and Equation 5.3 on Page 5.7 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","IPCC 2006 Waste model, MCF tab Worksheet 6-1 and Worksheet 6-1C (SUPPLEMENTAL) in 1996 IPCC Guidelines ",,"Table 3.1, p.3.14 of 2006 IPCC Guidelines Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Table 6-2 on Page 6.8 of the Reference Manual); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ",IPCC  +,,,,,,,,,,,,,,,,,,, +62741 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,1996 & 2006 IPCC default ,MCF (methane correction factor) by SWDS classification ,Uncategorized SWDS ,Only if country cannot categorize their SWDS into managed or unmanaged categories should this MCF be used ,,,,0.6 ,fraction ,"Equation 3.2 in Chapter 3 of Volume 5, 2006 IPCC Guidelines Equation 5.1 on Page 5.6 and Equation 5.3 on Page 5.7 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","IPCC 2006 Waste model, MCF tab Worksheet 6-1 and Worksheet 6-1C (SUPPLEMENTAL) in 1996 IPCC Guidelines ",,"Table 3.1, p.3.14 of 2006 IPCC Guidelines Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Table 6-2 on Page 6.8 of the Reference Manual); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ",IPCC  +,,,,,,,,,,,,,,,,,,, +62948 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon content ,Incineration and open burning of waste ,"for sewage sludge Incineration in controlled facilities; open burning in open air, open dumps ",,,,0 ,% ,"Equation 5.1 of Chapter 5, Volume 5 of 2006 Guidelines `Equation 5.11 on Page 5.25 of the IPCC Good Practice Guidance and Uncertainty Mangement in National Greenhouse Gas Inventories ",4C1 and 4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment by authors of IPCC Good Practice Guidance and Uncertainty Management for National Greenhouse Gas Inventories ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +22974 ,2B4 - Carbide Production,2.B.5 - Carbide Production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission Factor for CO2 Emissions from Calcium Carbide Production (Reduction process) ,Step in the process: Reduction (Reducing lime with carbon such as petrol coke) ,Carbon source: Petroleum Coke ,,,,1.090 ,tonne CO2/tonne carbide produced ,Equation 3.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B5, Sheet 2 of 6, in Annex 1 (page A1.8) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-9, Sheet 4 of 4, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on measurements at Norwegian plants (See the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories, Page 2.21 of the Reference Manual) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.8); Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Table 2-9 on Page 2.22 of the Reference Manual) ",IPCC  +,,,,,,,,,,,,,,,,,,, +22975 ,2B4 - Carbide Production,2.B.5 - Carbide Production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission Factor for CO2 Emissions from Calcium Carbide Use in Acetylene Production ,Step in the process: Use of product (Acetylene production) ,,,,,1.100 ,tonne CO2/tonne carbide used ,Equation 3.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B5, Sheet 3 of 6, in Annex 1 (page A1.8) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-9, Sheet 4 of 4, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on measurements at Norwegian plants (See the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories, Page 2.21 of the Reference Manual) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.8); Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Table 2-9 on Page 2.22 of the Reference Manual) ",IPCC  +,,,,,,,,,,,,,,,,,,, +23028 ,2A2 - Lime Production,2.A.2 - Lime production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission factor for high calcium lime production ,,Stoichiometric ratio is 0.785 (tonne CO2/tonne CaO or CaOMgO); Range of CaO = 93-98%; Range of MgO = 0.3-2.5%; Default value for CaO or CaOMgO content = 0.95 ,,,,0.75 ,tonne CO2/tonne high calcium lime produced ,"Tier 1 method according to the 2006 IPCC Guidelines. In order to estimate CO2 emissions, apply this default emission factor to national level lime production data.; Equation 3.4 on Page 3.20 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","2A2, Sheet 1 of 1, in Annex 1 (page A1.4) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-2, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","ASTM International (1996). Standard Specification for Quicklime, Hydrated Lime, and Limestone for Chemical Uses, Designation: C911-96, Table. 1.; Schwarzkopf, F. (1985). Lime Burning Technology (2nd Edition), Table 2, June 1985).; Miller, Michael (1999) U.S. Geological Survey, Calculations based on ASTM, 1996 and Schwarzkopf, 1985. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Equation 2.8); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Table 3.4 on Page 3.22) ",IPCC  +,,,,,,,,,,,,,,,,,,, +23029 ,2A2 - Lime Production,2.A.2 - Lime production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission factor for dolomitic lime production ,This value depends on the technology used for lime production. This value is suggested for developed countries. ,Stoichiometric ratio is 0.913 (tonne CO2/tonne CaO or CaOMgO); Range of CaO = 55-57%; Range of MgO = 38-41%; Default value for CaO or CaOMgO content = 0.95 ,"Developed countries (See ""Technologies/Practices"" property.) ",,,0.86 ,tonnes CO2/tonnes dolomitic lime ,"Tier 1 method according to the 2006 IPCC Guidelines. In order to estimate CO2 emissions, apply this default emission factor to national level lime production data.; Equation 3.4 on Page 3.20 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","2A2, Sheet 1 of 1, in Annex 1 (page A1.4) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-2, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Boynton, R. S. (1980). Chemistry and Technology of Lime and Limestone, 2nd edition, John Wiley and Sons, Inc., New York, USA.; Miller, M. (1999). US Geological Survey, Calculations based on Boynton. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Equation 2.8); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Table 3.4 on Page 3.22) ",IPCC  +,,,,,,,,,,,,,,,,,,, +23030 ,2A2 - Lime Production,2.A.2 - Lime production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission factor for hydraulic lime production ,,Stoichiometric ratio is 0.785 (tonne CO2/tonne CaO or CaOMgO); Range of CaO = 65-92% (Total CaO content (including that in silicate phases)); Range of MgO = NA; Default value for CaO or CaOMgO content = 0.75 ,,,,0.59 ,tonne CO2/tonne lime produced ,"Tier 1 method according to the 2006 IPCC Guidelines. In order to estimate CO2 emissions, apply this default emission factor to national level lime production data.; Equation 3.4 on Page 3.20 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","2A2, Sheet 1 of 1, in Annex 1 (page A1.4) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-2, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Boynton, R. S. (1980). Chemistry and Technology of Lime and Limestone, 2nd edition, John Wiley and Sons, Inc., New York, USA.; Miller, M. (1999). US Geological Survey, Calculations based on Boynton. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Equation 2.8); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Table 3.4 on Page 3.22) ",IPCC  +,,,,,,,,,,,,,,,,,,, +23035 ,2A2 - Lime Production,2.A.2 - Lime production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Water Content in Hydrated Lime ,,Lime type: High-calcium lime ,,,,0.28 ,fraction ,"Equation 2.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Page 3.22 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories, See ""Correction for the proportion of hydrated lime"". ",Not applicable ,"Miller, M. (1999). US Geological Survey, Calculations based on ASTM, 1996, and Schwarzkopf, 1985. American Society for Testing and Materials (ASTM) (1996). Standard Specification for Quicklime, Hydrated Lime, and Limestone for Chemical Uses, Designation: C911-96, Table 1. Schwarzkopf, F. (1985). Lime Burning Technology (2nd Edition), Table 2, June 1985. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, page 2.24) See ""Correction for the proportion of hydrated lime"".; Table 3.5 in the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ",IPCC  +,,,,,,,,,,,,,,,,,,, +23036 ,2A2 - Lime Production,2.A.2 - Lime production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Water Content in Hydrated Lime ,,Lime type: Dolomitic lime ,,,,0.28 ,fraction ,"Equation 2.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Page 3.22 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories, See ""Correction for the proportion of hydrated lime"". ",Not applicable ,"Miller, M. (1999). US Geological Survey, Calculations based on ASTM, 1996, and Schwarzkopf, 1985. American Society for Testing and Materials (ASTM) (1996). Standard Specification for Quicklime, Hydrated Lime, and Limestone for Chemical Uses, Designation: C911-96, Table 1. Schwarzkopf, F. (1985). Lime Burning Technology (2nd Edition), Table 2, June 1985. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, page 2.24) See ""Correction for the proportion of hydrated lime"".; Table 3.5 in the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ",IPCC  +,,,,,,,,,,,,,,,,,,, +23037 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,1996 & 2006 IPCC default ,N2O Generation Factor for Adipic Acid Production ,,,,Unabated ,,300 ,kg/tonne adipic acid produced ,Equation 3.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 3.9 on Page 3.31 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,"2B3, Sheet 1 of 1, in Annex 1 (page A1.7) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-8, Sheet 1 of 1, Vol. 2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Thiemens, M.H. and Trogler, W.C. (1991), ""Nylon production; an unknown source of atmospheric nitrous oxide"". Science, 251, pp. 932-934. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Table 3.7 on Page 3.34); Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Page 2.19 of the Reference Manual) ",IPCC  +,,,,,,,,,,,,,,,,,,, +66028 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,1996 & 2006 IPCC default ,OX (oxidation factor for SWDS) ,"managed (but not covered with aerated material), unmanaged and uncategorized SWDS ",,,,,0 ,fraction ,"Equation 3.1 in Chapter 3 of Volume 5, 2006 IPCC Guidelines Equation 5.1 on Page 5.6 and Equation 5.3 on Page 5.7 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","IPCC 2006 Waste model, Parameters tab Worksheet 6-1, Sheet 1 of 1 in 1996 IPCC Guidelines ",,"table 3.2, p. 3.15 of 2006 IPCC Guidelines Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Page 6.5 of the Reference Manual); IPCC Good Practice Guid ",IPCC  +,,,,,,,,,,,,,,,,,,, +66029 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,1996 & 2006 IPCC default ,OX (oxidation factor for SWDS) ,"well-managed covered with CH4 oxidising material (e.g. soil, compost) ",,,,,0.1 ,fraction ,"Equation 3.1 in Chapter 3 of Volume 5, 2006 IPCC Guidelines Equation 5.1 on Page 5.6 and Equation 5.3 on Page 5.7 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","IPCC 2006 Waste model, Parameters tab `Worksheet 6-1, Sheet 1 of 1 in 1996 IPCC Guidelines ",,"table 3.2, p. 3.15 of 2006 IPCC Guidelines IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Page 5.10) ",IPCC  +,,,,,,,,,,,,,,,,,,, +66030 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,1996 & 2006 IPCC default ,F (fraction of methane in generated landfill gas) ,,,,,,0.5 ,fraction ,"Equation 3.3 and Equation 3.6 in Chapter 3 of Volume 5, 2006 IPCC Guidelines Equation 5.1 on Page 5.6 and Equation 5.3 on Page 5.7 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories Equation 1 in page 6.5 Volume 3 of 1996 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab `Worksheet 6-1, Sheet 1 of 1 in 1996 IPCC Guidelines ",,"p. 3.15, p.3.26 of 2006 IPCC Guidelines Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Page 6.5 of the Reference Manual); IPCC Good Practice Guidance and Uncertainties Management (p.5.10) ",IPCC  +,,,,,,,,,,,,,,,,,,, +27511 ,2A1 - Cement Production,2.A.1 - Cement production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Clinker fraction in cement ,"If cement production cannot be disaggregated by type and it is suspected that significant amounts of blended and/or masonry cements are being produced in addition to portland cement, it is acceptable within good practice to assume this overall clinker fraction. ",,,,,75 ,% (by weight) ,Equation 2.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Tier 1 method); Equation 3.2 (Tier 1) on Page 3.12 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,"2A1, Sheet 1 of 2, in Annex 1 (page A1.4) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Also, see Pages 3.13-3.14 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories. Relevant technical reference: van Oss, H. (1998). Personal communication with Andrew O`Hare (VP Environmental Affairs of the American Portland Cement Alliance). Personal communication with plant personnel of US Cement Industry, December, 1998. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, page 2.13); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Page 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +27512 ,2A1 - Cement Production,2.A.1 - Cement production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Clinker fraction in cement ,"If cement production cannot be disaggregated by type and it is known to be essentially all portland cement, then it is good practice to use this default value. ",,,,,95 ,% (by weight) ,Equation 2.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Tier 1 method); Equation 3.2 (Tier 1) on Page 3.12 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,"2A1, Sheet 1 of 2, in Annex 1 (page A1.4) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Also, see Pages 3.13-3.14 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories. Relevant technical reference: van Oss, H. (1998). Personal communication with Andrew O`Hare (VP Environmental Affairs of the American Portland Cement Alliance). Personal communication with plant personnel of US Cement Industry, December, 1998. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, page 2.13); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Page 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +27514 ,2A2 - Lime Production,2.A.2 - Lime production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission factor for dolomitic lime production ,This value depends on the technology used for lime production. This value is suggested for developing countries. ,Stoichiometric ratio is 0.913 (tonne CO2/tonne CaO or CaOMgO); Range of CaO = 55-57%; Range of MgO = 38-41%; Default value for CaO or CaOMgO content = 0.85 ,"Developing countries (See ""Technologies/Practices"" property.) ",,,0.77 ,tonnes CO2/tonnes dolomitic lime ,"Tier 1 method according to the 2006 IPCC Guidelines. In order to estimate CO2 emissions, apply this default emission factor to national level lime production data.; Equation 3.4 on Page 3.20 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","2A2, Sheet 1 of 1, in Annex 1 (page A1.4) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-2, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Boynton, R. S. (1980). Chemistry and Technology of Lime and Limestone, 2nd edition, John Wiley and Sons, Inc., New York, USA.; Miller, M. (1999). US Geological Survey, Calculations based on Boynton. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Equation 2.8); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Table 3.4 on Page 3.22) ",IPCC  +,,,,,,,,,,,,,,,,,,, +27519 ,2A4 - Soda Ash Production and Use,2.B.7 - Soda Ash Production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission Factor for CO2 Emissions from Natural Soda Ash Production ,Manufacturing process: Natural sodium carbonate-bearing deposits (Natural processes). ,,,,,0.097 ,tonnes CO2/tonne of trona ,Equation 3.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B7, Sheet 1 of 2, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-4, Sheet 1 of 2, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","See ""Comments from data provider"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Page 3.52, Equation 3.14); Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Page 2.12 of the Reference Manual) ",IPCC  +,,,,,,,,,,,,,,,,,,, +27544 ,2B4 - Carbide Production,2.B.5 - Carbide Production,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission Factor for CO2 Emissions from Silicon Carbide Production ,,Carbon source: Petroleum Coke ,,,,2.30 ,tonne CO2/tonne petrol coke consumed ,Equation 3.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B5, Sheet 1 of 6, in Annex 1 (page A1.7) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on measurements at Norwegian plants (See the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories, Page 2.21 of the Reference Manual) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.7); Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Page 2.21 of the Reference Manual) ",IPCC  +,,,,,,,,,,,,,,,,,,, +27545 ,2B4 - Carbide Production,2.B.5 - Carbide Production,METHANE,,,1996 & 2006 IPCC default ,Emission Factor for CH4 Emissions from Silicon Carbide Production ,,Carbon source: Petroleum Coke ,,,,10.2 ,kg CH4/tonne petrol coke consumed ,Equation 3.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B5, Sheet 5 of 6, in Annex 1 (page A1.9) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-9, Sheet 2 of 4, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on measurements at Norwegian plants (See the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories, Page 2.21 of the Reference Manual) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.7); Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Page 2.21 of the Reference Manual) ",IPCC  +,,,,,,,,,,,,,,,,,,, +27546 ,2B4 - Carbide Production,2.B.5 - Carbide Production,METHANE,,,1996 & 2006 IPCC default ,Emission Factor for CH4 Emissions from Silicon Carbide Production ,,Carbon source: Petroleum Coke ,,,,11.6 ,kg CH4/tonne silicon carbide produced ,Equation 3.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B5, Sheet 6 of 6, in Annex 1 (page A1.9) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-9, Sheet 3 of 4, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on measurements at Norwegian plants (See the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories, Page 2.21 of the Reference Manual) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.7); Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Page 2.21 of the Reference Manual) ",IPCC  +,,,,,,,,,,,,,,,,,,, +210202 ,2E2 - Fugitive Emissions,2.B.9.b - Fugitive Emissions,Sulphur Hexafluoride,,,1996 & 2006 IPCC default ,Emission Factor for SF6 Fugitive Emissions from Production of SF6 ,,,"Countries in which the predominant end use does not require highly purified SF6 gas (e.g. electrical equipment, insulated windows). ",No Abatement ,,0.2 ,% of total quantity of SF6 produced ,Equation 3.41 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Page 3.67 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,"2B9, Sheet 3 of 3, in Annex 1 (page A1.16) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Preisegger, E. (1999). Statement on experiences of Solvay Fluor und Derivate GmbH, Hannover, Germany regarding an emission factor at the Expert group meeting on Good practice in Inventory Preparation, Washington D.C., USA, Jan, 1999, IPCC/OECD/IEA National Greenhouse Gas Inventories Programme. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.104); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Page 3.67) ",IPCC  +,,,,,,,,,,,,,,,,,,, +210203 ,2E2 - Fugitive Emissions,2.B.9.b - Fugitive Emissions,Sulphur Hexafluoride,,,1996 & 2006 IPCC default ,Emission Factor for SF6 Fugitive Emissions from Production of SF6 ,,,Countries where the major uses require highly purified SF6 gas (e.g. semiconductor manufacturing) ,No Abatement ,,8 ,% of total quantity of SF6 produced ,Equation 3.41 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Page 3.67 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,"2B9, Sheet 3 of 3, in Annex 1 (page A1.16) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Suizu, T. (1999). ""Partnership activities for SF6 gas emission reduction from gas insulated electrical equipment in Japan"". Proc. Joint IPCC/TEAP Expert Meeting on Options for the Limitation of Emissions of HFCs and PFCs, ECN, Petten, Netherlands, 26-28 May 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.104); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Page 3.67) ",IPCC  +,,,,,,,,,,,,,,,,,,, +210279 ,2E1 - By-product Emissions,2.B.9.a - By-product emissions,HFC-23,,,1996 & 2006 IPCC default ,Emission Factor for HFC-23 emissions from HCFC-22 Manufacture ,"Old, unoptimised plants (e.g., 1940s to 1990/1995) ",,,No Recovery of HFC-23 (No Abatement methods) ,,0.04 ,kg HFC-23/kg HCFC-22 manufactured ,Equation 3.30 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Page 3.125 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Tier 1); Page 2.42 of Reference Manual of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B9, Sheet 1 of 3, in Annex 1 (page A1.15) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-14, Sheet 1 of 2, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","U.S. EPA (2001). Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-1999. United States Environmental Protection Agency, Report No. EPA 236-R-01-001, Washington, U.S.A., 2001; U.S. Environmental Protection Agency (1994), Inventory of U.S. Greenhouse Gas Emissions and Sinks: 1990-1993, p. 38, U.S. EPA, Washington DC, USA. EPA 230-R-94-014. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.28); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Page 3.125); Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Page 2.42) ",IPCC  +,,,,,,,,,,,,,,,,,,, +510725 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: broadleaf deciduous ,"Climate: Boreal, dry ",,,25 (10-58) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510726 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: broadleaf deciduous ,"Climate: Boreal, moist ",,,39 (11-117) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510727 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: broadleaf deciduous ,"Climate: Cold temperate, dry ",,,28 (23-33) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510728 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: broadleaf deciduous ,"Climate: Cold temperate, moist ",,,16 (5-31) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510729 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: broadleaf deciduous ,"Climate: Warm temperate, dry ",,,28.2 (23.4-33.0) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510730 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: broadleaf deciduous ,"Climate: Warm temperate, moist ",,,13 (2-31) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510731 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: broadleaf deciduous ,Climate: Subtropical ,,,2.8 (2-3) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510732 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: broadleaf deciduous ,Climate: Tropical ,,,2.1 (1-3) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510733 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: needleleaf evergreen ,"Climate: Boreal, dry ",,,31 (6-86) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510734 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: needleleaf evergreen ,"Climate: Boreal, moist ",,,55 (7-123) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510735 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: needleleaf evergreen ,"Climate: Cold temperate, dry ",,,27 (17-42) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510736 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: needleleaf evergreen ,"Climate: Cold temperate, moist ",,,26 (10-48) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510737 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: needleleaf evergreen ,"Climate: Warm temperate, dry ",,,20.3 (17.3-21.1) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510738 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: needleleaf evergreen ,"Climate: Warm temperate, moist ",,,22 (6-42) ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510739 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: needleleaf evergreen ,Climate: Subtropical ,,,4.1 ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510740 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Litter carbon stock of mature forests ,,Forest type: needleleaf evergreen ,Climate: Tropical ,,,5.2 ,tonnes C/ha ,"Equation 3.2.13: Annual change in carbon stocks in litter in forest land remaining forest land, IPCC Good Practice Guidance for LULUCF; Equation 2.23: Annual change in carbon stocks in dead wood and litter due to land conversion, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1b of GPG-LULUCF ,"Source: Siltanen et al., 1997; and Smith and Heath, 2002; Tremblay et al., 2002; and Vogt et al.,1996, converted from mass to carbon by multiplying by conversion factor of 0.37 (Smith and Heath, 2001). ","IPCC Good Practice Guidance for LULUCF, Table 3.2.1 (Updated defaults for litter carbon stocks and transition period), on page 3.36; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.2 (Tier 1 default values for litter and dead wood carbon stocks), on page 2.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510798 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default values for CO2 (expressed as carbon) Emission Factor for drained organic soils in managed forests ,,,Tropical Forest ,,,1.36 (0.82-3.82) ,tonnes C/ha/yr ,"Equation 3.2.15: CO2 emissions from drained organic forest soils, IPCC Good Practice Guidance for LULUCF; Equation 2.26 - Annual carbon loss from drained organic soils, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.2.3 (Default values for CO2-C emission factor for drained organic soils in managed forests), on page 3.42; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.6 Emission factors for drained organic soils in managed forests, on page 4.53 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510799 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default values for CO2 (expressed as carbon) Emission Factor for drained organic soils in managed forests ,,,Temperate Forest ,,,0.68 (0.41-1.91) ,tonnes C/ha/yr ,"Equation 3.2.15: CO2 emissions from drained organic forest soils, IPCC Good Practice Guidance for LULUCF; Equation 2.26 - Annual carbon loss from drained organic soils, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.2.3 (Default values for CO2-C emission factor for drained organic soils in managed forests), on page 3.42; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.6 Emission factors for drained organic soils in managed forests, on page 4.53 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510800 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default values for CO2 (expressed as carbon) Emission Factor for drained organic soils in managed forests ,,,Boreal Forest ,,,0.16 (0.08-1.09) ,tonnes C/ha/yr ,"Equation 3.2.15: CO2 emissions from drained organic forest soils, IPCC Good Practice Guidance for LULUCF; Equation 2.26 - Annual carbon loss from drained organic soils, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.2.3 (Default values for CO2-C emission factor for drained organic soils in managed forests), on page 3.42; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.6 Emission factors for drained organic soils in managed forests, on page 4.53 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510801 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,Boreal ,,,68 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510802 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,"Cold temperate, dry ",,,50 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510803 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,"Cold temperate, moist ",,,95 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510804 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,"Warm temperate, dry ",,,38 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510805 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,"Warm temperate, moist ",,,88 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510806 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,"Tropical, dry ",,,38 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510807 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,"Tropical, moist ",,,65 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510808 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,"Tropical, wet ",,,44 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510809 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,Boreal ,,,not applicable ,,,Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510810 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,"Cold temperate, dry ",,,33 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510811 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,"Cold temperate, moist ",,,85 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510812 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,"Warm temperate, dry ",,,24 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510813 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,"Warm temperate, moist ",,,63 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510814 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,"Tropical, dry ",,,35 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510815 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,"Tropical, moist ",,,47 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510816 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,"Tropical, wet ",,,60 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510817 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,Boreal ,,,10 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510818 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,"Cold temperate, dry ",,,34 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510819 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,"Cold temperate, moist ",,,71 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510820 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,"Warm temperate, dry ",,,19 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510821 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,"Warm temperate, moist ",,,34 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510822 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,"Tropical, dry ",,,31 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510823 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,"Tropical, moist ",,,39 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510824 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,"Tropical, wet ",,,66 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510825 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for spodic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of spodic soils ,,,Boreal ,,,117 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510826 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for spodic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of spodic soils ,,,"Cold temperate, dry ",,,not applicable ,,,Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510827 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for spodic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of spodic soils ,,,"Cold temperate, moist ",,,115 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510828 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for spodic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of spodic soils ,,,"Warm temperate, dry ",,,not applicable ,,,Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510829 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for spodic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of spodic soils ,,,"Warm temperate, moist ",,,not applicable ,,,Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510830 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for spodic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of spodic soils ,,,"Tropical, dry ",,,not applicable ,,,Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510831 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for spodic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of spodic soils ,,,"Tropical, moist ",,,not applicable ,,,Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510832 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for spodic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of spodic soils ,,,"Tropical, wet ",,,not applicable ,,,Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510833 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,Boreal ,,,20 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510834 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,"Cold temperate, dry ",,,20 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510835 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,"Cold temperate, moist ",,,130 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510836 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,"Warm temperate, dry ",,,70 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510837 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,"Warm temperate, moist ",,,80 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510838 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,"Tropical, dry ",,,50 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510839 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,"Tropical, moist ",,,70 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510840 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,"Tropical, wet ",,,130 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510841 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,Boreal ,,,146 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510842 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,"Cold temperate, dry ",,,87 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510843 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,"Cold temperate, moist ",,,87 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510844 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,"Warm temperate, dry ",,,88 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510845 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,"Warm temperate, moist ",,,88 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510846 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,"Tropical, dry ",,,86 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510847 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,"Tropical, moist ",,,86 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510848 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,"Tropical, wet ",,,86 ,tonnes C/ha ,"Equation 3.2.14 - Annual change in carbon stocks in mineral soils in forest land remaining forest land; Equation 3.2.31 - Annual change in carbon stocks in mineral soils in land converted to forest land; Equation 3.2.32 - Annual change in carbon stocks in mineral soils upon afforestation, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 - Annual change in organic carbon stocks in mineral soils, of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1c1 of GPG-LULUCF ,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"IPCC Good Practice Guidance for LULUCF, Table 3.2.4 (Default reference (under native vegetation) soil organic carbon stocks, SOCref), on page 3.43; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510849 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default coefficients for Biomass Accumulation Rate (G) for a given aboveground woody biomass and harvest cycles in cropping systems containing perennial species ,,Aboveground biomass carbon stock at harvest = 63 tonnes C/ha; Harvest/Maturity Cycle = 30 yr ,Temperate (all moisture regimes) ,,,2.1 ,tonnes C/ha/yr ,Equation 3.2.2 (in Forest Land Section but applicable to Cropland) of the IPCC Good Practice Guidance for LULUCF; Equation 2.7 - Annual change in carbon stocks in biomass in land remaining in a particular land-use category (Gain-Loss method) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ,Worksheet CL-1a of GPG-LULUCF ,The value is derived from the literature survey and synthesis published by Schroeder (1994) Carbon storage benefits of agroforestry systems. Agroforestry Systems 27: pp.89-97. ,"IPCC Good Practice Guidance for LULUCF, Table 3.3.2 (Default coefficient for aboveground woody biomass and harvest cycles in cropping systems containing perennial species), on page 3.71; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.1 (Default coefficients for above-ground woody biomass and harvest cycles in cropping systems containing perennial species), on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510850 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default coefficients for Biomass Accumulation Rate (G) for a given aboveground woody biomass and harvest cycles in cropping systems containing perennial species ,,Aboveground biomass carbon stock at harvest = 9 tonnes C/ha; Harvest/Maturity Cycle = 5 yr ,"Tropical, dry ",,,1.8 ,tonnes C/ha/yr ,Equation 3.2.2 (in Forest Land Section but applicable to Cropland) of the IPCC Good Practice Guidance for LULUCF; Equation 2.7 - Annual change in carbon stocks in biomass in land remaining in a particular land-use category (Gain-Loss method) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ,Worksheet CL-1a of GPG-LULUCF ,The value is derived from the literature survey and synthesis published by Schroeder (1994) Carbon storage benefits of agroforestry systems. Agroforestry Systems 27: pp.89-97. ,"IPCC Good Practice Guidance for LULUCF, Table 3.3.2 (Default coefficient for aboveground woody biomass and harvest cycles in cropping systems containing perennial species), on page 3.71; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.1 (Default coefficients for above-ground woody biomass and harvest cycles in cropping systems containing perennial species), on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510851 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default coefficients for Biomass Accumulation Rate (G) for a given aboveground woody biomass and harvest cycles in cropping systems containing perennial species ,,Aboveground biomass carbon stock at harvest = 21 tonnes C/ha; Harvest/Maturity Cycle = 8 yr ,"Tropical, moist ",,,2.6 ,tonnes C/ha/yr ,Equation 3.2.2 (in Forest Land Section but applicable to Cropland) of the IPCC Good Practice Guidance for LULUCF; Equation 2.7 - Annual change in carbon stocks in biomass in land remaining in a particular land-use category (Gain-Loss method) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ,Worksheet CL-1a of GPG-LULUCF ,The value is derived from the literature survey and synthesis published by Schroeder (1994) Carbon storage benefits of agroforestry systems. Agroforestry Systems 27: pp.89-97. ,"IPCC Good Practice Guidance for LULUCF, Table 3.3.2 (Default coefficient for aboveground woody biomass and harvest cycles in cropping systems containing perennial species), on page 3.71; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.1 (Default coefficients for above-ground woody biomass and harvest cycles in cropping systems containing perennial species), on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510852 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default coefficients for Biomass Accumulation Rate (G) for a given aboveground woody biomass and harvest cycles in cropping systems containing perennial species ,,Aboveground biomass carbon stock at harvest = 50 tonnes C/ha; Harvest/Maturity Cycle = 5 yr ,"Tropical, wet ",,,10.0 ,tonnes C/ha/yr ,Equation 3.2.2 (in Forest Land Section but applicable to Cropland) of the IPCC Good Practice Guidance for LULUCF; Equation 2.7 - Annual change in carbon stocks in biomass in land remaining in a particular land-use category (Gain-Loss method) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ,Worksheet CL-1a of GPG-LULUCF ,The value is derived from the literature survey and synthesis published by Schroeder (1994) Carbon storage benefits of agroforestry systems. Agroforestry Systems 27: pp.89-97. ,"IPCC Good Practice Guidance for LULUCF, Table 3.3.2 (Default coefficient for aboveground woody biomass and harvest cycles in cropping systems containing perennial species), on page 3.71; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.1 (Default coefficients for above-ground woody biomass and harvest cycles in cropping systems containing perennial species), on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510853 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default coefficients for Biomass Carbon Loss (L) for a given aboveground woody biomass and harvest cycles in cropping systems containing perennial species ,,Aboveground biomass carbon stock at harvest = 63 tonnes C/ha; Harvest/Maturity Cycle = 30 yr ,Temperate (all moisture regimes) ,,,63 ,tonnes C/ha ,Equation 3.2.2 (in Forest Land Section but applicable to Cropland) of the IPCC Good Practice Guidance for LULUCF; Equation 2.7 - Annual change in carbon stocks in biomass in land remaining in a particular land-use category (Gain-Loss method) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ,Worksheet CL-1a of GPG-LULUCF ,The value is derived from the literature survey and synthesis published by Schroeder (1994) Carbon storage benefits of agroforestry systems. Agroforestry Systems 27: pp.89-97. ,"IPCC Good Practice Guidance for LULUCF, Table 3.3.2 (Default coefficient for aboveground woody biomass and harvest cycles in cropping systems containing perennial species), on page 3.71; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.1 (Default coefficients for above-ground woody biomass and harvest cycles in cropping systems containing perennial species), on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510854 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default coefficients for Biomass Carbon Loss (L) for a given aboveground woody biomass and harvest cycles in cropping systems containing perennial species ,,Aboveground biomass carbon stock at harvest = 9 tonnes C/ha; Harvest/Maturity Cycle = 5 yr ,"Tropical, dry ",,,9 ,tonnes C/ha ,Equation 3.2.2 (in Forest Land Section but applicable to Cropland) of the IPCC Good Practice Guidance for LULUCF; Equation 2.7 - Annual change in carbon stocks in biomass in land remaining in a particular land-use category (Gain-Loss method) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ,Worksheet CL-1a of GPG-LULUCF ,The value is derived from the literature survey and synthesis published by Schroeder (1994) Carbon storage benefits of agroforestry systems. Agroforestry Systems 27: pp.89-97. ,"IPCC Good Practice Guidance for LULUCF, Table 3.3.2 (Default coefficient for aboveground woody biomass and harvest cycles in cropping systems containing perennial species), on page 3.71; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.1 (Default coefficients for above-ground woody biomass and harvest cycles in cropping systems containing perennial species), on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510855 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default coefficients for Biomass Carbon Loss (L) for a given aboveground woody biomass and harvest cycles in cropping systems containing perennial species ,,Aboveground biomass carbon stock at harvest = 21 tonnes C/ha; Harvest/Maturity Cycle = 8 yr ,"Tropical, moist ",,,21 ,tonnes C/ha ,Equation 3.2.2 (in Forest Land Section but applicable to Cropland) of the IPCC Good Practice Guidance for LULUCF; Equation 2.7 - Annual change in carbon stocks in biomass in land remaining in a particular land-use category (Gain-Loss method) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ,Worksheet CL-1a of GPG-LULUCF ,The value is derived from the literature survey and synthesis published by Schroeder (1994) Carbon storage benefits of agroforestry systems. Agroforestry Systems 27: pp.89-97. ,"IPCC Good Practice Guidance for LULUCF, Table 3.3.2 (Default coefficient for aboveground woody biomass and harvest cycles in cropping systems containing perennial species), on page 3.71; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.1 (Default coefficients for above-ground woody biomass and harvest cycles in cropping systems containing perennial species), on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510856 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Default coefficients for Biomass Carbon Loss (L) for a given aboveground woody biomass and harvest cycles in cropping systems containing perennial species ,,Aboveground biomass carbon stock at harvest = 50 tonnes C/ha; Harvest/Maturity Cycle = 5 yr ,"Tropical, wet ",,,50 ,tonnes C/ha ,Equation 3.2.2 (in Forest Land Section but applicable to Cropland) of the IPCC Good Practice Guidance for LULUCF; Equation 2.7 - Annual change in carbon stocks in biomass in land remaining in a particular land-use category (Gain-Loss method) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ,Worksheet CL-1a of GPG-LULUCF ,The value is derived from the literature survey and synthesis published by Schroeder (1994) Carbon storage benefits of agroforestry systems. Agroforestry Systems 27: pp.89-97. ,"IPCC Good Practice Guidance for LULUCF, Table 3.3.2 (Default coefficient for aboveground woody biomass and harvest cycles in cropping systems containing perennial species), on page 3.71; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.1 (Default coefficients for above-ground woody biomass and harvest cycles in cropping systems containing perennial species), on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510996 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Annual emission factor for cultivated organic soils ,,,Climatic Temperature regime: cold temperate ,,,1.0 ,tonnes C/ha/yr ,"Equation 3.3.5 CO2 emissions from cultivated organic soils in cropland remaining cropland, of the IPCC Good Practice Guidance for LULUCF.; Equation 2.26 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.5 Annual emission factor for cultivated organic soils, on page 3.79; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.6 Annual emission factors (EF) for cultivated organic soils, on page 5.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510997 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Annual emission factor for cultivated organic soils ,,,Climatic Temperature regime: warm temperate ,,,10.0 ,tonnes C/ha/yr ,"Equation 3.3.5 CO2 emissions from cultivated organic soils in cropland remaining cropland, of the IPCC Good Practice Guidance for LULUCF.; Equation 2.26 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.5 Annual emission factor for cultivated organic soils, on page 3.79; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.6 Annual emission factors (EF) for cultivated organic soils, on page 5.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510998 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Annual emission factor for cultivated organic soils ,,,Climatic Temperature regime: tropical/sub-tropical ,,,20.0 ,tonnes C/ha/yr ,"Equation 3.3.5 CO2 emissions from cultivated organic soils in cropland remaining cropland, of the IPCC Good Practice Guidance for LULUCF.; Equation 2.26 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.5 Annual emission factor for cultivated organic soils, on page 3.79; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.6 Annual emission factors (EF) for cultivated organic soils, on page 5.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +510999 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Carbon stock in biomass after one year (delta C growth) ,,,Crop type: annual cropland ,,,5 ,tonnes C/ha ,"Equation 3.3.8 Annual change in carbon stocks in living biomass in land converted to cropland, of the IPCC Good Practice Guidance for LULUCF; Equations 2.15 and 2.16 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.8 Default biomass carbon stocks present on land converted to cropland in the year following conversion, on page 3.88; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.9 - Default biomass carbon stocks present on Land Converted to Cropland in the year following conversion, on page 5.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511000 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Carbon stock in biomass after one year (delta C growth) ,,Crop type: perennial cropland ,Climate region: temperate (all moisture regimes) ,,,2.1 ,tonnes C/ha ,"Equation 3.3.8 Annual change in carbon stocks in living biomass in land converted to cropland, of the IPCC Good Practice Guidance for LULUCF; Equations 2.15 and 2.16 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.8 Default biomass carbon stocks present on land converted to cropland in the year following conversion, on page 3.88; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.9 - Default biomass carbon stocks present on Land Converted to Cropland in the year following conversion, on page 5.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511001 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Carbon stock in biomass after one year (delta C growth) ,,Crop type: perennial cropland ,"Climate region: tropical, dry ",,,1.8 ,tonnes C/ha ,"Equation 3.3.8 Annual change in carbon stocks in living biomass in land converted to cropland, of the IPCC Good Practice Guidance for LULUCF; Equations 2.15 and 2.16 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.8 Default biomass carbon stocks present on land converted to cropland in the year following conversion, on page 3.88; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.9 - Default biomass carbon stocks present on Land Converted to Cropland in the year following conversion, on page 5.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511002 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Carbon stock in biomass after one year (delta C growth) ,,Crop type: perennial cropland ,"Climate region: tropical, moist ",,,2.6 ,tonnes C/ha ,"Equation 3.3.8 Annual change in carbon stocks in living biomass in land converted to cropland, of the IPCC Good Practice Guidance for LULUCF; Equations 2.15 and 2.16 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.8 Default biomass carbon stocks present on land converted to cropland in the year following conversion, on page 3.88; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.9 - Default biomass carbon stocks present on Land Converted to Cropland in the year following conversion, on page 5.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511003 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Carbon stock in biomass after one year (delta C growth) ,,Crop type: perennial cropland ,"Climate region: tropical, wet ",,,10.0 ,tonnes C/ha ,"Equation 3.3.8 Annual change in carbon stocks in living biomass in land converted to cropland, of the IPCC Good Practice Guidance for LULUCF; Equations 2.15 and 2.16 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.8 Default biomass carbon stocks present on land converted to cropland in the year following conversion, on page 3.88; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.9 - Default biomass carbon stocks present on Land Converted to Cropland in the year following conversion, on page 5.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511004 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) for land-use conversion to cropland ,"Level: native forest or grassland (non-degraded); Definition: Represents native or long-term, non-degraded and sustainably managed forest and grasslands. ",,Climate regime: temperate ,,,1 ,No dimension ,"Equation 3.3.3 Annual change in carbon stocks in mineral soils for a single cropland system, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.9 Relative soil stock change factors (FLU) for land-use conversions to cropland, on page 3.92; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.10 - Soil stock change factors (FLU, FMG, FI) for land-use conversions to cropland, on page 5.37 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511005 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) for land-use conversion to cropland ,"Level: native forest or grassland (non-degraded); Definition: Represents native or long-term, non-degraded and sustainably managed forest and grasslands. ",,Climate regime: tropical ,,,1 ,No dimension ,"Equation 3.3.3 Annual change in carbon stocks in mineral soils for a single cropland system, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.9 Relative soil stock change factors (FLU) for land-use conversions to cropland, on page 3.92; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.10 - Soil stock change factors (FLU, FMG, FI) for land-use conversions to cropland, on page 5.37 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511006 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) for land-use conversion to cropland ,"Level: shifting cultivation, shortened fallow; Definition: Permanent shifting cultivation, where tropical forest or woodland is cleared for planting of annual crops for a short time (e.g. 3-5 yr) period and then abandoned. ",,Climate regime: tropical ,,,0.64 ,No dimension ,"Equation 3.3.3 Annual change in carbon stocks in mineral soils for a single cropland system, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.9 Relative soil stock change factors (FLU) for land-use conversions to cropland, on page 3.92; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.10 - Soil stock change factors (FLU, FMG, FI) for land-use conversions to cropland, on page 5.37 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511007 ,5-CL-2 - Land Converted to Cropland,3.B.2.b - Land Converted to Cropland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) for land-use conversion to cropland ,"Level: shifting cultivation, mature fallow; Definition: Permanent shifting cultivation, where tropical forest or woodland is cleared for planting of annual crops for a short time (e.g. 3-5 yr) period and then abandoned. ",,Climate regime: tropical ,,,0.8 ,No dimension ,"Equation 3.3.3 Annual change in carbon stocks in mineral soils for a single cropland system, of the IPCC Good Practice Guidance for LULUCF; Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4). ",Worksheet CL-2c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.3.9 Relative soil stock change factors (FLU) for land-use conversions to cropland, on page 3.92; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 5.10 - Soil stock change factors (FLU, FMG, FI) for land-use conversions to cropland, on page 5.37 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511022 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Below-ground biomass to above-ground biomass ratio ( R) ,,Vegetation type: steppe/tundra/prairie grassland ,"Approximate IPCC Climate Zone: boreal (dry and wet), cold temperate wet, warm temperate wet ",,,4.0 ,No dimension ,,not applicable ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511023 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Below-ground biomass to above-ground biomass ratio ( R) ,,Vegetation type: semi-arid grassland ,"Approximate IPCC Climate Zone: dry (cold temperate, warm temperate and tropical) ",,,2.8 ,No dimension ,,not applicable ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511024 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Below-ground biomass to above-ground biomass ratio ( R) ,,Vegetation type: sub-tropical/tropical grassland ,Approximate IPCC Climate Zone: tropical moist and wet ,,,1.6 ,No dimension ,,not applicable ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511025 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Below-ground biomass to above-ground biomass ratio ( R) ,,Vegetation type: woodland/savanna ,,,,0.5 ,No dimension ,,not applicable ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511026 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Below-ground biomass to above-ground biomass ratio ( R) ,,Vegetation type: shrubland ,,,,2.8 ,No dimension ,,not applicable ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511027 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,Level: all grassland; Definition: All permanent grassland is assigned a land use factor of 1. ,,Climate regime: all ,,,1.0 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511028 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for management regime or tillage (FMG) ,"Level: nominally managed (non-degraded); Definition: Represents, non-degraded and sustainably managed grassland, but without significant management improvements. ",,Climate regime: all ,,,1.0 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511029 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for management regime or tillage (FMG) ,"Level: moderately degraded grassland; Definition: Represents overgrazed or moderately degraded grassland, with somewhat reduced productivity (relative to the native or nominally managed grassland) and receiving no management inputs. ",,Climate regime: temperate/boreal ,,,0.95 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511030 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for management regime or tillage (FMG) ,"Level: moderately degraded grassland; Definition: Represents overgrazed or moderately degraded grassland, with somewhat reduced productivity (relative to the native or nominally managed grassland) and receiving no management inputs. ",,Climate regime: tropical ,,,0.97 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511031 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for management regime or tillage (FMG) ,"Level: severly grassland; Definition: Implies major long-term loss of productivity and vegetation cover, due to severe mechanical damage to the vegetation and/or severe soil erosion. ",,Climate regime: all ,,,0.7 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511032 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for management regime or tillage (FMG) ,"Level: improved grassland; Definition: Represents grassland which is sustainably managed with moderate grazing pressure and that receive at least one improvement (e.g. fertilization, species improvement, irrigation). ",,Climate regime: temperate/boreal ,,,1.14 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511033 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for management regime or tillage (FMG) ,"Level: improved grassland; Definition: Represents grassland which is sustainably managed with moderate grazing pressure and that receive at least one improvement (e.g. fertilization, species improvement, irrigation). ",,Climate regime: tropical ,,,1.17 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511034 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for input of organic matter (FI) ,Level: nominal input (applied only to improved grassland); Definition: Applies to improved grassland where no additional management inputs have been used. ,,Climate regime: all ,,,1.0 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511035 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for input of organic matter (FI) ,Level: high input (applied only to improved grassland); Definition: Applies to improved grassland where one or more additional management inputs/improvements have been used (beyond that required to be classified as improved grassland). ,,Climate regime: temperate/boreal ,,,1.11 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511036 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Stock change factor for input of organic matter (FI) ,Level: high input (applied only to improved grassland); Definition: Applies to improved grassland where one or more additional management inputs/improvements have been used (beyond that required to be classified as improved grassland). ,,Climate regime: tropical ,,,1.11 ,No dimension ,,Worksheet GL-1c1 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.3 Default expansion factors (root-to-shoot [R:S] ratios) for the major savannah/rangeland ecosystems of the world, on page 3.110; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.1 - Default expansion factors of the ratio of below-ground biomass to above-ground biomass (R) for the major grassland ecosystems of the world, on page 6.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511037 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Annual emission factor for managed grassland organic soils ,,,Climatic Temperature regime: cold temperate ,,,0.25 ,tonnes C/ha/yr ,,Worksheet GL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.6 Annual emission factors for managed grassland organic soils, on page 3.118; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.3 - Annual emission factors (EF) for drained grassland organic soils, on page 6.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511038 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Annual emission factor for managed grassland organic soils ,,,Climatic Temperature regime: warm temperate ,,,2.5 ,tonnes C/ha/yr ,,Worksheet GL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.6 Annual emission factors for managed grassland organic soils, on page 3.118; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.3 - Annual emission factors (EF) for drained grassland organic soils, on page 6.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511039 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Annual emission factor for managed grassland organic soils ,,,Climatic Temperature regime: tropical/sub-tropical ,,,5.0 ,tonnes C/ha/yr ,,Worksheet GL-1c2 of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.6 Annual emission factors for managed grassland organic soils, on page 3.118; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.3 - Annual emission factors (EF) for drained grassland organic soils, on page 6.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511040 ,5-GL-2 - Land Converted to Grassland,3.B.3.b - Land Converted to Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Total (aboveground and belowground) non-woody biomass ,,Peak above-ground biomass = 1.7 tonnes d.m./ha Data for standing biomass are compiled from multi-year averages reported at grassland sites registered in the ORNL DAAC NPP database [http://www.daacsti.ornl.gov/NPP/]. ,IPCC Climate Zone: boreal - dry and wet ,,,8.5 ,t dm/ha ,,Worksheet GL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.9 Default biomass carbon stocks present on land converted to grassland, on page 3.125; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.4 - Default biomass stocks present on grassland , after conversion from other land use, on page 6.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511041 ,5-GL-2 - Land Converted to Grassland,3.B.3.b - Land Converted to Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Total (aboveground and belowground) non-woody biomass ,,Peak above-ground biomass = 1.7 tonnes d.m./ha Data for standing biomass are compiled from multi-year averages reported at grassland sites registered in the ORNL DAAC NPP database [http://www.daacsti.ornl.gov/NPP/]. ,IPCC Climate Zone: cold temperate - dry ,,,6.5 ,t dm/ha ,,Worksheet GL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.9 Default biomass carbon stocks present on land converted to grassland, on page 3.125; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.4 - Default biomass stocks present on grassland , after conversion from other land use, on page 6.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511042 ,5-GL-2 - Land Converted to Grassland,3.B.3.b - Land Converted to Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Total (aboveground and belowground) non-woody biomass ,,Peak above-ground biomass = 2.4 tonnes d.m./ha Data for standing biomass are compiled from multi-year averages reported at grassland sites registered in the ORNL DAAC NPP database [http://www.daacsti.ornl.gov/NPP/]. ,IPCC Climate Zone: cold temperate - wet ,,,13.6 ,t dm/ha ,,Worksheet GL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.9 Default biomass carbon stocks present on land converted to grassland, on page 3.125; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.4 - Default biomass stocks present on grassland , after conversion from other land use, on page 6.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511043 ,5-GL-2 - Land Converted to Grassland,3.B.3.b - Land Converted to Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Total (aboveground and belowground) non-woody biomass ,,Peak above-ground biomass = 1.6 tonnes d.m./ha Data for standing biomass are compiled from multi-year averages reported at grassland sites registered in the ORNL DAAC NPP database [http://www.daacsti.ornl.gov/NPP/]. ,IPCC Climate Zone: warm temperate - dry ,,,6.1 ,t dm/ha ,,Worksheet GL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.9 Default biomass carbon stocks present on land converted to grassland, on page 3.125; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.4 - Default biomass stocks present on grassland , after conversion from other land use, on page 6.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511044 ,5-GL-2 - Land Converted to Grassland,3.B.3.b - Land Converted to Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Total (aboveground and belowground) non-woody biomass ,,Peak above-ground biomass = 2.7 tonnes d.m./ha Data for standing biomass are compiled from multi-year averages reported at grassland sites registered in the ORNL DAAC NPP database [http://www.daacsti.ornl.gov/NPP/]. ,IPCC Climate Zone: warm temperate - wet ,,,13.5 ,t dm/ha ,,Worksheet GL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.9 Default biomass carbon stocks present on land converted to grassland, on page 3.125; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.4 - Default biomass stocks present on grassland , after conversion from other land use, on page 6.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511045 ,5-GL-2 - Land Converted to Grassland,3.B.3.b - Land Converted to Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Total (aboveground and belowground) non-woody biomass ,,Peak above-ground biomass = 2.3 tonnes d.m./ha Data for standing biomass are compiled from multi-year averages reported at grassland sites registered in the ORNL DAAC NPP database [http://www.daacsti.ornl.gov/NPP/]. ,IPCC Climate Zone: tropical - dry ,,,8.7 ,t dm/ha ,,Worksheet GL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.9 Default biomass carbon stocks present on land converted to grassland, on page 3.125; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.4 - Default biomass stocks present on grassland , after conversion from other land use, on page 6.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511046 ,5-GL-2 - Land Converted to Grassland,3.B.3.b - Land Converted to Grassland,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Total (aboveground and belowground) non-woody biomass ,,Peak above-ground biomass = 6.2 tonnes d.m./ha Data for standing biomass are compiled from multi-year averages reported at grassland sites registered in the ORNL DAAC NPP database [http://www.daacsti.ornl.gov/NPP/]. ,IPCC Climate Zone: tropical - moist and wet ,,,16.1 ,t dm/ha ,,Worksheet GL-2a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3.4.9 Default biomass carbon stocks present on land converted to grassland, on page 3.125; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 6.4 - Default biomass stocks present on grassland , after conversion from other land use, on page 6.27 ",IPCC  +,,,,,,,,,,,,,,,,,,, +511047 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission factor for organic soils after drainage (EF Npoor) ,,Peat type: nutrient poor ,boreal and temperate ,,,0.2 (0 - 0.63) ,tonnes C/ha/yr ,,Worksheet WL-1c of GPG-LULUCF ,"Laine and Minkkinen, 1996; Alm et al., 1999; Laine et al., 1996; Minkkinen et al., 2002 ",,IPCC  +,,,,,,,,,,,,,,,,,,, +511048 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission factor for organic soils after drainage (EF Nrich) ,,Peat type: nutrient rich ,boreal and temperate ,,,1.1 (0.03 - 2.9) ,tonnes C/ha/yr ,,Worksheet WL-1c of GPG-LULUCF ,"Laine et al., 1996; LUSTRA, 2002; Minkkinen et al., 2002; Sundh et al., 2000 ",,IPCC  +,,,,,,,,,,,,,,,,,,, +511049 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Emission factor for organic soils after drainage ,,,tropical ,,,2.0 (0.06 - 7.0) ,tonnes C/ha/yr ,,Worksheet WL-1c of GPG-LULUCF ,,,IPCC  +,,,,,,,,,,,,,,,,,,, +512312 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Abies ,,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512313 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Acer ,,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512314 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Alnus ,,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512315 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Betula ,,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512316 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Carpinus betulus ,,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,EN 350-2 (1994): Durability of wood and wood products - Natural durability of solid wood - Part 2: Guide to the natural durability and treatability of selected wood species of importance in Europe ,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512317 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Castanea sativa ,,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,EN 350-2 (1994): Durability of wood and wood products - Natural durability of solid wood - Part 2: Guide to the natural durability and treatability of selected wood species of importance in Europe ,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512318 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Fagus sylvatica ,,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512319 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Fraxinus ,,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512320 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Juglans ,,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,EN 350-2 (1994): Durability of wood and wood products - Natural durability of solid wood - Part 2: Guide to the natural durability and treatability of selected wood species of importance in Europe ,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512321 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Larix decidua ,,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512322 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Larix kaempferi ,,,,0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,EN 350-2 (1994): Durability of wood and wood products - Natural durability of solid wood - Part 2: Guide to the natural durability and treatability of selected wood species of importance in Europe ,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512323 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Picea abies ,,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512324 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Picea sitchensis ,,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Knigge, W.; Schulz, H. 1966: Grundriss der Forstbenutzung. Verlag Paul Parey, Hamburg, Berlin ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512325 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Pinus pinaster ,,,,0.44 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Rijsdijk, J.F.; Laming, P.B. 1994: Physical and related properties of 145 timbers. Kluwer Academic Publishers, Dordrecht, Boston, London ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512326 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Pinus strobus ,,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512327 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Pinus sylvestris ,,,,0.42 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512328 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Populus ,,,,0.35 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512329 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Prunus ,,,,0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512330 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Pseudotsuga menziesii ,,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512331 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Quercus ,,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512332 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Salix ,,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512333 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Thuja plicata ,,,,0.31 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Forest Products Laboratory: Handbook of wood and wood-based materials. Hemisphere Publishing Corporation, New York, London ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512334 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Tilia ,,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Dietz, P. 1975: Dichte und Rindengehalt von Industrieholz. Holz Roh- Werkstoff 33: 135-141 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512335 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Tsuga ,,,,0.42 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Forest Products Laboratory: Handbook of wood and wood-based materials. Hemisphere Publishing Corporation, New York, London ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-1 on page 3.171; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512336 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Acacia Leucophloea ,Tropical Asia ,,,0.76 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512337 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Adina cordifolia ,Tropical Asia ,,,"0.58, 0.59 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512338 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Aegle marmelo ,Tropical Asia ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512339 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Agathis spp ,Tropical Asia ,,,0.44 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512340 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Aglaia llanosiana ,Tropical Asia ,,,0.89 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512341 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alangium longiflorum ,Tropical Asia ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512342 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Albizzia amara ,Tropical Asia ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512343 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Albizzia falcataria ,Tropical Asia ,,,0.25 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512344 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Aleurites trisperma ,Tropical Asia ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512345 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alnus japonica ,Tropical Asia ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512346 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alphitonia zizyphoides ,Tropical Asia ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512347 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alphonsea arborea ,Tropical Asia ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512348 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alseodaphne longipes ,Tropical Asia ,,,0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512349 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species:Alstonia spp. ,Tropical Asia ,,,0.37 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512350 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Amoora spp. ,Tropical Asia ,,,0.6 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512351 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anisophyllea zeylanica ,Tropical Asia ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512352 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,"Tropical Tree Species: Anisoptera spp, ",Tropical Asia ,,,0.54 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512353 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anogeissus latifolia . ,Tropical Asia ,,,"0.78, 0.79 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512354 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anthocephalus chinensis ,Tropical Asia ,,,"0.36, 0.33 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512355 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Antidesma pleuricum ,Tropical Asia ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512356 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Aphanamiris perrottetiana ,Tropical Asia ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512357 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Araucaria bidwillii ,Tropical Asia ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512358 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Artocarpus spp. . ,Tropical Asia ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512359 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Azadirachta spp. ,Tropical Asia ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512360 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical tree species: Balanocarpus spp. ,Tropical Asia ,,,0.76 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512361 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Barringtonia edulis * ,Tropical Asia ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512362 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species:Bauhinia spp. ,Tropical Asia ,,,0.67 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512363 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species:Beilschmiedia tawa ,Tropical Asia ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512364 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Berrya cordifolia ,Tropical Asia ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512365 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species:Bischofia javanica ,Tropical Asia ,,,"0.54, 0.58, 0.62 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512366 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bleasdalea vitiensis ,Tropical Asia ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512367 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bombax ceiba ,Tropical Asia ,,,0.33 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512368 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bombycidendron vidalianum ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512369 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Boswellia serrata ,Tropical Asia ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512370 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bridelia squamosa ,Tropical Asia ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512371 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Buchanania latifolia ,Tropical Asia ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512372 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bursera serrata ,Tropical Asia ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512373 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Butea monosperma ,Tropical Asia ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512374 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Calophyllum spp. ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512375 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Calycarpa arborea ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512376 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cananga odorata ,Tropical Asia ,,,0.29 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512377 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Canarium spp. ,Tropical Asia ,,,0.44 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512378 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Canthium monstrosum ,Tropical Asia ,,,0.42 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512379 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Carallia calycina ,Tropical Asia ,,,0.66 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512380 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cassia javanica ,Tropical Asia ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512381 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Castanopsis philippensis ,Tropical Asia ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512382 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Casuarina equisetifolia ,Tropical Asia ,,,0.83 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512383 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Casuarina nodiflora ,Tropical Asia ,,,0.85 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512384 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cedrela odorata ,Tropical Asia ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512385 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cedrela spp. ,Tropical Asia ,,,0.42 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512386 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cedrela toona ,Tropical Asia ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512387 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ceiba pentandra ,Tropical Asia ,,,0.23 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512388 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Celtis luzonica ,Tropical Asia ,,,0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512389 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Chisocheton pentandrus ,Tropical Asia ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512390 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Chloroxylon swietenia ,Tropical Asia ,,,"0.76, 0.79, 0.80 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512391 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Chukrassia tabularis ,Tropical Asia ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512392 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Citrus grandis ,Tropical Asia ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512393 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cleidion speciflorum ,Tropical Asia ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512394 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cleistanthus eollinus ,Tropical Asia ,,,0.88 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512395 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cleistocalyx spp. ,Tropical Asia ,,,0.76 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512396 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cochlospermum gossypium+religiosum ,Tropical Asia ,,,0.27 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512397 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cocos nucifera ,Tropical Asia ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512398 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Colona serratifolia ,Tropical Asia ,,,0.33 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512399 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Combretodendron quadrialatum ,Tropical Asia ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512400 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cordia spp. ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512401 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cotylelobium spp. ,Tropical Asia ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512402 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Crataeva religiosa ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512403 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cratoxylon arborescens ,Tropical Asia ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512404 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cryptocarya spp. ,Tropical Asia ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512405 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cubilia cubili ,Tropical Asia ,,,0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512406 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cullenia excelsa ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512407 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cynometra spp. ,Tropical Asia ,,,0.8 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512408 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dacrycarpus imbricatus ,Tropical Asia ,,,"0.45, 0.47 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512409 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dacrydium spp ,Tropical Asia ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512410 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dacryodes spp. ,Tropical Asia ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512411 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dalbergia paniculata ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512412 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Decussocarpus vitiensis ,Tropical Asia ,,,0.37 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512413 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Degeneria vitiensis ,Tropical Asia ,,,0.35 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512414 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dehaasia triandra ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512415 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dialium spp. ,Tropical Asia ,,,0.8 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512416 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dillenia spp. ,Tropical Asia ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512417 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Diospyros spp. ,Tropical Asia ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512418 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Diplodiscus paniculatus ,Tropical Asia ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512419 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterocarpus caudatus ,Tropical Asia ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512420 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterocarpus eurynchus ,Tropical Asia ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512421 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterocarpus gracilis ,Tropical Asia ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512422 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterocarpus grandiflorus ,Tropical Asia ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512423 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterocarpus kerrii ,Tropical Asia ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512424 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterocarpus kunstlerii ,Tropical Asia ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512425 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterocarpus spp. ,Tropical Asia ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512426 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterocarpus warburgii ,Tropical Asia ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512427 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dracontomelon spp. ,Tropical Asia ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512428 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dryobalanops spp. ,Tropical Asia ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512429 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dtypetes bordenii ,Tropical Asia ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512430 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Durio spp. ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512431 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dyera costulata ,Tropical Asia ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512432 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species:Dysoxylum quercifolium ,Tropical Asia ,,,0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512433 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Elaeocarpus serratus ,Tropical Asia ,,,0.40 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512434 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Emblica officinalis ,Tropical Asia ,,,0.8 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512435 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Endiandra laxiflora ,Tropical Asia ,,,0.54 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512436 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Endospermum spp. ,Tropical Asia ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512437 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Enterolobium cyclocarpum ,Tropical Asia ,,,0.35 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512438 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Epicharis cumingiana ,Tropical Asia ,,,0.73 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512439 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Erythrina subumbrans ,Tropical Asia ,,,0.24 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512440 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Erythrophloeum densiflorum ,Tropical Asia ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512441 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eucalyptus citriodora ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512442 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eucalyptus deglupta ,Tropical Asia ,,,0.34 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512443 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eugenia spp. ,Tropical Asia ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512444 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Fagraea spp. ,Tropical Asia ,,,0.73 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512445 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ficus benjamina ,Tropical Asia ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512446 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ficus spp. ,Tropical Asia ,,,0.39 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512447 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ganua obovatifolia ,Tropical Asia ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512448 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Garcinia myrtifolia ,Tropical Asia ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512449 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Garcinia spp. ,Tropical Asia ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512450 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gardenia turgida ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512451 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Garuga pinnata ,Tropical Asia ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512452 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gluta spp. ,Tropical Asia ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512453 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gmelina arborea ,Tropical Asia ,,,"0.41,0.45 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512454 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gmelina vitiensis ,Tropical Asia ,,,0.54 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512455 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gonocaryum calleryanum ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512456 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gonystylus punctatus ,Tropical Asia ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512457 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Grewia tiliaefolia ,Tropical Asia ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512458 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hardwickia binata ,Tropical Asia ,,,0.73 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512459 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Harpullia arborea ,Tropical Asia ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512460 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Heritiera spp. ,Tropical Asia ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512461 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hevea brasiliensis ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512462 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hibiscus tiliaceus ,Tropical Asia ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512463 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Homalanthus populneus ,Tropical Asia ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512464 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Homalium spp. ,Tropical Asia ,,,0.76 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512465 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hopea acuminata ,Tropical Asia ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512466 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hopea spp. ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512467 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Intsia palembanica ,Tropical Asia ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512468 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Kayea garciae ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512469 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Kingiodendron alternifolium ,Tropical Asia ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512470 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Kleinhovia hospita ,Tropical Asia ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512471 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Knema spp. ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512472 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Koompassia excelsa ,Tropical Asia ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512473 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Koordersiodendron pinnatum ,Tropical Asia ,,,"0.65, 0.69 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512474 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Kydia calycina ,Tropical Asia ,,,0.72 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512475 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lagerstroemia spp. ,Tropical Asia ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512476 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lannea grandis ,Tropical Asia ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512477 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Leucaena leucocephala ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512478 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Litchi chinensis ssp. philippinensis ,Tropical Asia ,,,0.88 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512480 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lithocarpus soleriana ,Tropical Asia ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512481 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Litsea spp. ,Tropical Asia ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512482 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lophopetalum spp. ,Tropical Asia ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512483 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Macaranga denticulata ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512484 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Madhuca oblongifolia ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512485 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mallotus philippensis ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512486 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mangifera spp. ,Tropical Asia ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512487 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Maniltoa minor ,Tropical Asia ,,,0.76 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512488 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mastixia philippinensis ,Tropical Asia ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512489 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Melanorrhea spp. ,Tropical Asia ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512490 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Melia dubia ,Tropical Asia ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512491 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Melicope triphylla ,Tropical Asia ,,,0.37 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512492 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Meliosma macrophylla ,Tropical Asia ,,,0.27 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512493 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Melochia umbellata ,Tropical Asia ,,,0.25 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512494 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Me&a ferrea ,Tropical Asia ,,,"0.83, 0.85 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512495 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Metrosideros collina ,Tropical Asia ,,,"0.70, 0.76 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512496 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Michelia spp. ,Tropical Asia ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512497 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Microcos stylocarpa ,Tropical Asia ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512498 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Micromelum compressum ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512499 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Milliusa velutina ,Tropical Asia ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512500 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mimusops elengi ,Tropical Asia ,,,0.72 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512501 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mitragyna parviflora ,Tropical Asia ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512502 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Myristica spp. ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512503 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Neesia spp. ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512504 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Neonauclea bernardoi ,Tropical Asia ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512505 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Neotrewia cumingii ,Tropical Asia ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512506 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ochna foxworthyi ,Tropical Asia ,,,0.86 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512507 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ochroma pyramidale ,Tropical Asia ,,,0.3 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512508 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Octomeles sumatrana ,Tropical Asia ,,,"0.27, 0.32 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512509 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Oroxylon indicum ,Tropical Asia ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512510 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ougenia dalbergiodes ,Tropical Asia ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512511 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Palaquium spp. ,Tropical Asia ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512512 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pangium edule ,Tropical Asia ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512513 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Parashorea malaanonan ,Tropical Asia ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512514 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Parashorea stellata ,Tropical Asia ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512515 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Paratrophis glabra ,Tropical Asia ,,,0.77 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512516 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Parinari spp. ,Tropical Asia ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512517 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Parkia roxburghii ,Tropical Asia ,,,0.34 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512518 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Payena spp. ,Tropical Asia ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512519 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Peltophorum pterocarpum ,Tropical Asia ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512520 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pentace spp. ,Tropical Asia ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512521 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Phaeanthus ebracteolatus ,Tropical Asia ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512522 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Phyllocladus hypophyllus ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512523 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pinus caribaea ,Tropical Asia ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512524 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pinus insularis ,Tropical Asia ,,,"0.47,0.48 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512525 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pinus merkusii ,Tropical Asia ,,,0.54 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512526 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pisonia umbellifera ,Tropical Asia ,,,0.21 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512527 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pittosporum pentandrum ,Tropical Asia ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512528 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Planchonia spp. ,Tropical Asia ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512529 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Podocarpus spp ,Tropical Asia ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512530 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Polyalthia flava ,Tropical Asia ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512531 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Polyscias nodosa ,Tropical Asia ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512532 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pometia spp. ,Tropical Asia ,,,0.54 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512533 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pouteria villamilii ,Tropical Asia ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512534 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Premna tomentosa ,Tropical Asia ,,,0.96 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512535 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pterocarpus marsupium ,Tropical Asia ,,,0.67 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512536 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pterocymbium tinctorium ,Tropical Asia ,,,0.28 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512537 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pyge`um vulgare ,Tropical Asia ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512538 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Quercus spp. ,Tropical Asia ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512539 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Radermachera pinnata ,Tropical Asia ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512540 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Salmalia malabarica ,Tropical Asia ,,,"0.32,0.33 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512541 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Samanea saman ,Tropical Asia ,,,"0.45, 0.46 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512542 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sandoricum vidalii ,Tropical Asia ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512543 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sapindus saponaria ,Tropical Asia ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512544 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sapium luzontcum ,Tropical Asia ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512545 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Schleichera oleosa ,Tropical Asia ,,,0.96 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512546 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Schrebera swietenoides ,Tropical Asia ,,,0.82 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512547 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Semicarpus anacardium ,Tropical Asia ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512548 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Serialbizia acle ,Tropical Asia ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512549 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Serianthes melanesica ,Tropical Asia ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512550 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species:Sesbania grandiflora ,Tropical Asia ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512551 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea assamica forma philippinensis ,Tropical Asia ,,,0.41 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512552 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea astylosa ,Tropical Asia ,,,0.73 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512553 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea ciliata ,Tropical Asia ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512554 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea contorta ,Tropical Asia ,,,0.44 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512555 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea gisok ,Tropical Asia ,,,0.76 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512556 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea guiso ,Tropical Asia ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512557 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea hopeifolia ,Tropical Asia ,,,0.44 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512558 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea malibato ,Tropical Asia ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512559 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea negrosensis ,Tropical Asia ,,,0.44 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512560 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea palosapis ,Tropical Asia ,,,0.39 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512561 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea plagata ,Tropical Asia ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512562 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea polita ,Tropical Asia ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512563 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea polysperma ,Tropical Asia ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512564 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea robusta ,Tropical Asia ,,,0.72 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512565 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea spp. balau group ,Tropical Asia ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512566 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea spp. dark red meranti ,Tropical Asia ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512567 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea spp. light red meranti ,Tropical Asia ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512568 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea spp. white meranti ,Tropical Asia ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512569 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea spp. yellow meranti ,Tropical Asia ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512570 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Shorea virescens ,Tropical Asia ,,,0.42 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512571 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sloanea javanica ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512572 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Soymida febrifuga ,Tropical Asia ,,,0.97 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512573 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Spathodea campanulata ,Tropical Asia ,,,0.25 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512574 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Stemonurus luzoniensis ,Tropical Asia ,,,0.37 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512575 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sterculia vitiensis ,Tropical Asia ,,,0.31 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512576 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Stereospermum suaveolens ,Tropical Asia ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512577 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Strombosia philippinensis ,Tropical Asia ,,,0.71 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512578 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Strychnos potatorum ,Tropical Asia ,,,0.88 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512579 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Swietenia macrophylla ,Tropical Asia ,,,"0.49,0.53 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512580 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Swintonia foxworthyi ,Tropical Asia ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512581 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Swintonia spp. ,Tropical Asia ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512582 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sycopsis dunni ,Tropical Asia ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512583 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Syzygium spp. ,Tropical Asia ,,,"0.69, 0.76 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512584 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tamarindus indica ,Tropical Asia ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512585 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tectona grandis ,Tropical Asia ,,,"0.50,0.55 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512586 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Teijsmanniodendron ahernianum ,Tropical Asia ,,,0.9 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512587 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia citrina ,Tropical Asia ,,,0.71 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512588 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia copelandii ,Tropical Asia ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512589 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia foetidissima ,Tropical Asia ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512590 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia microcarpa ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512591 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia nitens ,Tropical Asia ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512592 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia pterocarpa ,Tropical Asia ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512593 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia tomentosa ,Tropical Asia ,,,"0.73,0.76, 0.77 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512594 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ternstroemia megacarpa ,Tropical Asia ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512595 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tetrameles nudiflora ,Tropical Asia ,,,0.3 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512596 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tetramerista glabra ,Tropical Asia ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512597 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Thespesia populnea ,Tropical Asia ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512598 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Toona calantas ,Tropical Asia ,,,0.29 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512599 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trema orientalis ,Tropical Asia ,,,0.31 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512600 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trichospermum richii ,Tropical Asia ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512601 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tristania spp. ,Tropical Asia ,,,0.8 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512602 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Turpinia ovalifolia ,Tropical Asia ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512603 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vateria indica ,Tropical Asia ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512604 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vatica spp. ,Tropical Asia ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512605 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vitex spp. ,Tropical Asia ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512606 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Wallaceodendron celebicum ,Tropical Asia ,,,"0.55, 0.57 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512607 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Weinmannia luzoniensis ,Tropical Asia ,,,0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512608 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Wrightia tinctorea ,Tropical Asia ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512609 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Xanthophyllum excelsum ,Tropical Asia ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512610 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Xanthostemon verdugonianus ,Tropical Asia ,,,1.04 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512611 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Xylia xylocarpa ,Tropical Asia ,,,"0.73,0.81 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512612 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Zanthoxylum rhetsa ,Tropical Asia ,,,0.33 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512613 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Zizyphus spp. ,Tropical Asia ,,,0.76 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, Gisel; Brown,Sandra; Chapman, Jonathan; Ariel E. 1992. Wood densities of tropical tree species. Gen. Tech. Rep. SO-88 New Orleans, L.A: U.S. Department of Agriculture, Forest Service, Southern Forest Experiment Station. 15pp ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512614 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Albizia spp. ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512615 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alcornea spp. ,Tropical America ,,,0.34 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512616 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alexa grandiflora ,Tropical America ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512617 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alnus ferruginea ,Tropical America ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512618 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anacardium excelsum ,Tropical America ,,,0.41 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512619 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anadenanthera macrocarpa ,Tropical America ,,,0.86 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512620 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Andira retusa ,Tropical America ,,,0.67 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512621 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Aniba riparia lduckei ,Tropical America ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512622 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Antiaris africana ,Tropical America ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512623 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Apeiba echinata ,Tropical America ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512624 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Artocarpus comunis ,Tropical America ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512625 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Aspidosperma spp. (araracanga group) ,Tropical America ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512626 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Astronium lecointei ,Tropical America ,,,0.73 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512627 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bagassa guianensis ,Tropical America ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512628 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Banara guianensis ,Tropical America ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512629 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Basiloxylon exelsum ,Tropical America ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512630 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Beilschmiedia sp. ,Tropical America ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512631 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Berthollettia excelsa ,Tropical America ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512632 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bixa arborea ,Tropical America ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512633 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bombacopsis sepium ,Tropical America ,,,0.39 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512634 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Borojoa patinoi ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512635 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bowdichia spp. ,Tropical America ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Barbosa, R.I. and Fearnside, P.M. (2004). Wood density of trees in open savannas of the Brazilian Amazon. Forest Ecology and Management 199: 115-123. Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512636 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Brosimum spp. (alicastrum group) ,Tropical America ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512637 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Brosimum utile ,Tropical America ,,,0.40-0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512638 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Brysenia adenophylla ,Tropical America ,,,0.54 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512639 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Buchenauia capitata ,Tropical America ,,,"0.61, 0.63 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512640 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bucida buceras ,Tropical America ,,,0.93 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512641 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bulnesia arborea ,Tropical America ,,,1 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512642 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bursera simaruba ,Tropical America ,,,0.29-0.34 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512643 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Byrsonima coriacea ,Tropical America ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512644 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cabralea canjerana ,Tropical America ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512645 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Caesalpinia spp. ,Tropical America ,,,1.05 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512646 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Calophyllum sp. ,Tropical America ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512647 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Campnosperma panamensis ,Tropical America ,,,0.37 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512648 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Carapa sp. ,Tropical America ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512649 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Caryocar spp. ,Tropical America ,,,"0.69, 0.72 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512650 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Casearia sp. ,Tropical America ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512651 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Casia moschata ,Tropical America ,,,0.71 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512652 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Casuarina equisetifolia ,Tropical America ,,,0.81 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512653 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Catostemma spp. ,Tropical America ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512654 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cecropia spp. ,Tropical America ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512655 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cedrela spp. ,Tropical America ,,,0.40-0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512656 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cedrelinga catenaeformis ,Tropical America ,,,"0.41, 0.53 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512657 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ceiba pentandra ,Tropical America ,,,"0.23,0.24,0.25, 0.29 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512658 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Centrolobium spp. ,Tropical America ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512659 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cespedesia macrophylla ,Tropical America ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512660 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Chaetocarpus schomburgkianus ,Tropical America ,,,0.8 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512661 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Chlorophora tinctoria ,Tropical America ,,,"0.71,0.75 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512662 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Clarisia racemosa ,Tropical America ,,,"0.53,0.57 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512663 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Clusia rosea ,Tropical America ,,,0.67 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512664 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cochlospermum orinocensis ,Tropical America ,,,0.26 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512665 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Copaifera spp. ,Tropical America ,,,"0.46, 0.55 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512666 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cordia spp. (gerascanthus group) ,Tropical America ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512667 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cordia spp. (alliodora group) ,Tropical America ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512668 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Couepia sp. ,Tropical America ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512669 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Couma macrocarpa ,Tropical America ,,,"0.50,0.53 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512670 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Couratari spp. ,Tropical America ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512671 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Croton xanthochloros ,Tropical America ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512672 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cupressus lusitanica ,Tropical America ,,,"0.43, 0.44 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512673 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cyrilla racemiflora ,Tropical America ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512674 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dactyodes colombiana ,Tropical America ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512675 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dacryodes excelsa ,Tropical America ,,,0.52-0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512676 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dalbergia retusa. ,Tropical America ,,,0.89 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512677 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dalbergia stevensonii ,Tropical America ,,,0.82 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512678 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Declinanona calycina ,Tropical America ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512679 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dialium guianensis ,Tropical America ,,,0.87 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512680 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dialyanthera spp. ,Tropical America ,,,"0.36, 0.48 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512681 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dicorynia paraensis ,Tropical America ,,,0.6 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512682 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Didymopanax sp. ,Tropical America ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512683 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dimorphandra mora ,Tropical America ,,,0.99 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512684 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Diplotropis purpurea ,Tropical America ,,,"0.76, 0.77, 0.78 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512685 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dipterix odorata ,Tropical America ,,,"0.81,0.86,0.89 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512686 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Drypetes variabilis ,Tropical America ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512687 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dussia lehmannii ,Tropical America ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512688 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ecclinusa guianensis ,Tropical America ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512689 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Endlicheria cocvirey ,Tropical America ,,,0.39 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512690 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Enterolobium schomburgkii ,Tropical America ,,,0.82 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512691 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eperua spp. ,Tropical America ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512692 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eriotheca sp. ,Tropical America ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512693 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Erisma uncinatum ,Tropical America ,,,"0.42, 0.48 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512694 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Erythrina sp. ,Tropical America ,,,0.23 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512695 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eschweilera spp. ,Tropical America ,,,"0.71,0.79,0.95 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512696 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eucalyptus robusta ,Tropical America ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512697 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eugenia stahlii ,Tropical America ,,,0.73 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512698 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Euxylophora paraensis ,Tropical America ,,,"0.68,0.70 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512699 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Fagara spp. ,Tropical America ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512700 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ficus sp. ,Tropical America ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512701 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Genipa spp. ,Tropical America ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512702 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Goupia glabra ,Tropical America ,,,"0.67, 0.72 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512703 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Guarea chalde ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512704 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Guarea spp. ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512705 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Guatteria spp. ,Tropical America ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512706 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Guazuma ulmifolia ,Tropical America ,,,"0.52, 0.50 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512707 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Guettarda scabra ,Tropical America ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512708 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Guillielma gasipae ,Tropical America ,,,"0.95, 1.25 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512709 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gustavia sp. ,Tropical America ,,,0.34 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512710 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Helicostylis tomentosa ,Tropical America ,,,"0.68, 0.72 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512711 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hernandia Sonora ,Tropical America ,,,0.29 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512712 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hevea brasiliense ,Tropical America ,,,0.49 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512713 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Himatanthus articulatus ,Tropical America ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Barbosa, R.I. and Fearnside, P.M. (2004). Wood density of trees in open savannas of the Brazilian Amazon. Forest Ecology and Management 199: 115-123. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512714 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hirtella davisii ,Tropical America ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512715 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Humiria balsamifera ,Tropical America ,,,"0.66,0.67 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512716 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Humiriastrum procera ,Tropical America ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512717 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hura crepitans ,Tropical America ,,,"0.36, 0.37, 0.38 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512718 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hyeronima alchorneoides ,Tropical America ,,,"0.60,0.64 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512719 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hyeronima laxiflora ,Tropical America ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512720 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hymenaea davisii ,Tropical America ,,,0.67 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512721 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hymenolobium sp. ,Tropical America ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512722 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Inga sp. ,Tropical America ,,,"0.49,0.52,0.58, 0.64 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512723 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Iryanthera spp. ,Tropical America ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512724 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Jacaranda sp. ,Tropical America ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512725 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Joannesia heveoides ,Tropical America ,,,0.39 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512726 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lachmellea speciosa ,Tropical America ,,,0.73 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512727 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Laetia procera ,Tropical America ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512728 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lecythis spp. ,Tropical America ,,,0.77 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512729 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Licania spp. ,Tropical America ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512730 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Licaria spp. ,Tropical America ,,,0.82 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512731 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lindackeria sp. ,Tropical America ,,,0.41 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512732 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Linociera domingensis ,Tropical America ,,,0.81 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512733 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lonchocarpus spp. ,Tropical America ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512734 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Loxopterygium sagotii ,Tropical America ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512735 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lucuma spp. ,Tropical America ,,,0.79 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512736 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Luehea spp. ,Tropical America ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512737 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lueheopsis duckeana ,Tropical America ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512738 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mabea piriri ,Tropical America ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512739 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Machaerium spp. ,Tropical America ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512740 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Macoubea guianensis ,Tropical America ,,,0.40 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512741 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Magnolia spp. ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512742 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Maguira sclerophylla ,Tropical America ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512743 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mammea americana ,Tropical America ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512744 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mangifera indica ,Tropical America ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512745 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Manilkara sp. ,Tropical America ,,,0.89 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512746 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Marila sp. ,Tropical America ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512747 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Marmaroxylon racemosum ,Tropical America ,,,0.78* ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512748 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Matayba domingensis ,Tropical America ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512749 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Matisia hirta ,Tropical America ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512750 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Maytenus spp. ,Tropical America ,,,0.71 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512751 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mezilaurus lindaviana ,Tropical America ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512752 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Michropholis spp. ,Tropical America ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512753 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Minquartia guianensis ,Tropical America ,,,"0.76,0.79 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512754 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mora sp. ,Tropical America ,,,0.71 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512755 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mouriria sideroxylon ,Tropical America ,,,0.88 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512756 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Myrciaria floribunda ,Tropical America ,,,0.73 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512757 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Myristica spp. ,Tropical America ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512758 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Myroxylon balsamum ,Tropical America ,,,"0.74, 0.76, 0.78 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512759 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Nectandra spp. ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512760 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ocotea spp. ,Tropical America ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512761 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Onychopetalum amazonicum ,Tropical America ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512762 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ormosia spp. ,Tropical America ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512763 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ouratea sp. ,Tropical America ,,,0.66 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512764 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pachira acuatica ,Tropical America ,,,0.43 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512765 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Paratecoma peroba ,Tropical America ,,,0.6 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512766 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Parinari spp. . ,Tropical America ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512767 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Parkia spp. ,Tropical America ,,,0.39 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512768 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Peltogyne spp. ,Tropical America ,,,0.79 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512769 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pentaclethra macroloba ,Tropical America ,,,"0.65,0.68 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512770 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Peru glabrata ,Tropical America ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512771 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Peru schomburgkiana ,Tropical America ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512772 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Persea spp. ,Tropical America ,,,0.40-0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512773 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Petitia domingensis ,Tropical America ,,,0.66 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512774 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pinus caribaea ,Tropical America ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512775 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pinus oocarpa ,Tropical America ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512776 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pinus patula ,Tropical America ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512777 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Piptadenia sp. ,Tropical America ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512778 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Piranhea longepedunculata ,Tropical America ,,,0.9 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512779 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Piratinera guianensis ,Tropical America ,,,0.96 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512780 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pithecellobium guachapele (syn. Pseudosamea) ,Tropical America ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512781 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Platonia insignis ,Tropical America ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512782 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Platymiscium spp. ,Tropical America ,,,"0.71, 0.84 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512783 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Podocarpus spp. ,Tropical America ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512784 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pourouma aff. melinonii ,Tropical America ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512785 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pouteria spp. ,Tropical America ,,,"0.64, 0.67 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512786 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Prioria copaifera ,Tropical America ,,,"0.40,0.41 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512787 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Protium spp. ,Tropical America ,,,"0.53,0.64 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512788 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pseudolmedia laevigata ,Tropical America ,,,0.62-0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512789 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pterocarpus spp. ,Tropical America ,,,0.44 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512790 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pterogyne nitens ,Tropical America ,,,0.66 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512791 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Qualea albiflora ,Tropical America ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512792 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Qualea cf. lancifolia ,Tropical America ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512793 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Qualea dinizii ,Tropical America ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512794 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Qualea spp. ,Tropical America ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA.; Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512795 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Quararibaea guianensis ,Tropical America ,,,0.54 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512796 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Quercus alata ,Tropical America ,,,0.71 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512797 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Quercus costaricensis ,Tropical America ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512798 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Quercus eugeniaefolia ,Tropical America ,,,0.67 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512799 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Quercus spp. ,Tropical America ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512800 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Raputia sp. ,Tropical America ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512801 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Rheedia spp. ,Tropical America ,,,0.72 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512802 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Rollinia spp. ,Tropical America ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512803 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Saccoglottis cydonioides ,Tropical America ,,,0.72 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512804 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sapium ssp. ,Tropical America ,,,"0.47,0.72 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512805 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Schinopsis spp. ,Tropical America ,,,1 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512806 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sclerobium spp. ,Tropical America ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512807 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sickingia spp. ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512808 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Simaba multiflora ,Tropical America ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512809 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Simarouba amara ,Tropical America ,,,"0.32, 0.34,0.38 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512810 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sloanea guianensis . ,Tropical America ,,,0.79 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512811 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Spondias mombin ,Tropical America ,,,0.31-0.35 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512812 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sterculia spp. ,Tropical America ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512813 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Stylogyne spp. ,Tropical America ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512814 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Swartzia spp. ,Tropical America ,,,0.95 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512815 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Swietenia macrophylla ,Tropical America ,,,"0.42,0.45,0.46, 0.54 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512816 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Symphonia globulifera ,Tropical America ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512817 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tabebuia spp. (lapacho group) ,Tropical America ,,,0.91 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512818 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tabebuia spp. (roble) ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512819 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tabebuia spp. (white cedar) ,Tropical America ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512820 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tabebuia stenocalyx ,Tropical America ,,,"0.55,0.57 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512821 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tachigalia myrmecophylla ,Tropical America ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512822 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Talisia sp. ,Tropical America ,,,0.84 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512823 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tapirira guianensis ,Tropical America ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512824 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia sp. ,Tropical America ,,,"0.50, 0.51, ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512825 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tetragastris altisima ,Tropical America ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512826 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Toluifera balsamum ,Tropical America ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512827 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Torrubia sp. ,Tropical America ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512828 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Toulicia pulvinata ,Tropical America ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512830 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tovomita guianensis ,Tropical America ,,,0.6 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512831 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trattinickia sp. ,Tropical America ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512832 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trichilia propingua ,Tropical America ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512833 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trichosperma mexicanum ,Tropical America ,,,0.41 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512834 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Triplaris spp. ,Tropical America ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512835 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trophis sp. ,Tropical America ,,,0.54 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512837 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vatairea spp. ,Tropical America ,,,0.6 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512838 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Virola spp. ,Tropical America ,,,"0.40, 0.44, 0.48 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512839 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vismia spp. ,Tropical America ,,,0.41 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512840 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vitex spp. . ,Tropical America ,,,"0.52,0.56, 0.57 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512841 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vitex stahelii ,Tropical America ,,,0.6 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512842 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vochysia spp. ,Tropical America ,,,"0.40,0.47, 0.79 ",tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512843 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vouacapoua americana ,Tropical America ,,,0.79 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Fearnside, P.M. (1997). Wood density for estimating forest biomass in Brazilian Amazonia. Forest Ecology and Management 90: 59-87. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512844 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Warszewicsia coccinea ,Tropical America ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512845 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Xanthoxylum martinicensis ,Tropical America ,,,0.46 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512846 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Xanthoxylum spp. ,Tropical America ,,,0.44 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512847 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Xylopia frutescens ,Tropical America ,,,0 64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512848 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Afzelia spp. . ,Tropical Africa ,,,0.67 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512849 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Aidia ochroleuca ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512850 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Albizia spp. ,Tropical Africa ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512851 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Allanblackia floribunda ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512852 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Allophyllus africanus f. acuminatus ,Tropical Africa ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512853 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Alstonia congensis ,Tropical Africa ,,,0.33 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512854 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Amphimas pterocarpoides ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512855 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anisophyllea obtusifolia ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512856 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Annonidium mannii ,Tropical Africa ,,,0.29 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512857 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anopyxis klaineana ,Tropical Africa ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512858 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anthocleista keniensis ,Tropical Africa ,,,0.50 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512859 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anthonotha macrophylla ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512860 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Anthostemma aubryanum ,Tropical Africa ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512861 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Antiaris spp. ,Tropical Africa ,,,0.38 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512862 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Antrocaryon klaineanum ,Tropical Africa ,,,0.50 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512863 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Aucoumea klaineana ,Tropical Africa ,,,0.31-0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512864 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Autranella congolensis ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512865 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Baillonella toxisperma ,Tropical Africa ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512866 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Balanites aegyptiaca ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512867 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Baphia kirkii ,Tropical Africa ,,,0.93 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512868 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Beilschmiedia louisii ,Tropical Africa ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512869 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Beilschmiedia nitida ,Tropical Africa ,,,0.50 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512870 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Berlinia spp. ,Tropical Africa ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512871 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Blighia welwitschii ,Tropical Africa ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512872 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bombax spp. ,Tropical Africa ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512873 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Brachystegia spp. ,Tropical Africa ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512874 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Bridelia micrantha ,Tropical Africa ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512875 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Calpocalyx klainei ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512876 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Canarium schweinfurthii ,Tropical Africa ,,,0.40 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512877 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Canthium rubrocostratum ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512878 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Carapa procera ,Tropical Africa ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512879 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Casearia battiscombei ,Tropical Africa ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512880 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cassipourea euryoides ,Tropical Africa ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512881 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cassipourea malosana ,Tropical Africa ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512882 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ceiba pentandra ,Tropical Africa ,,,0.18-0.39 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512883 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Celtis spp. ,Tropical Africa ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512884 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Chlorophora ercelsa ,Tropical Africa ,,,0.48-0.66 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512885 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Chrysophyllum albidum ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512886 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cleistanthus mildbraedii ,Tropical Africa ,,,0.87 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512887 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cleistopholis patens ,Tropical Africa ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512888 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Coelocaryon preussii ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512889 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cola sp. ,Tropical Africa ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512890 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Combretodendron macrocarpum ,Tropical Africa ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512891 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Conopharyngia holstii ,Tropical Africa ,,,0.50 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512892 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Copaifera religiosa . ,Tropical Africa ,,,0.50 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512893 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cordia millenii ,Tropical Africa ,,,0.34 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512894 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cordia platythyrsa ,Tropical Africa ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512895 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Corynanthe pachyceras ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512896 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Coda edulis ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512897 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Croton megalocarpus ,Tropical Africa ,,,0.57 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512898 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cryptosepalum staudtii ,Tropical Africa ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512899 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ctenolophon englerianus ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512900 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cylicodiscus gabonensis ,Tropical Africa ,,,0.8 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512901 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Cynometra alexandri ,Tropical Africa ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512902 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dacryodes spp. ,Tropical Africa ,,,0.61 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512903 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Daniellia ogea ,Tropical Africa ,,,0.40 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512904 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Desbordesia pierreana ,Tropical Africa ,,,0.87 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512905 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Detarium senegalensis ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512906 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Dialium excelsum ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512907 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Didelotia africana ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512908 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Didelotia letouzeyi ,Tropical Africa ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512909 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Diospyros spp. ,Tropical Africa ,,,0.82 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512910 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Discoglypremna caloneura ,Tropical Africa ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512911 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Distemonanthus benthamianus ,Tropical Africa ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512912 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Drypetes sp. ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512913 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ehretia acuminata ,Tropical Africa ,,,0.51 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512914 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Enantia chlorantha ,Tropical Africa ,,,0.42 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512915 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Endodesmia calophylloides ,Tropical Africa ,,,0.66 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512916 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Entandrophragma utile ,Tropical Africa ,,,0.53-0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512917 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eribroma oblongum ,Tropical Africa ,,,0.60 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512918 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Eriocoelum microspermum ,Tropical Africa ,,,0.50 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512919 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Erismadelphus ensul ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512920 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Erythrina vogelii ,Tropical Africa ,,,0.25 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512921 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Erythrophleum ivorense ,Tropical Africa ,,,0.70-0.88 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512922 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Erythroxylum mannii ,Tropical Africa ,,,0.5 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512923 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Fagara macrophylla ,Tropical Africa ,,,0.69 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512924 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ficus iteophylla ,Tropical Africa ,,,0.40 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512925 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Fumtumia latifolia ,Tropical Africa ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512926 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gambeya spp. ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512927 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Garcinia punctata ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512928 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gilletiodendron mildbraedii ,Tropical Africa ,,,0.87 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512929 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Gossweilerodendron balsamiferum ,Tropical Africa ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512930 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Guarea thompsonii ,Tropical Africa ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512931 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Guibourtia spp. ,Tropical Africa ,,,0.70-0.84 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512932 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hannoa klaineana ,Tropical Africa ,,,0.28 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512933 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Harungana madagascariensis ,Tropical Africa ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512934 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hexalobus crispiflorus ,Tropical Africa ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512935 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Holoptelea grandis ,Tropical Africa ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512936 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Homalium spp. ,Tropical Africa ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512937 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hylodendron gabonense. ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512938 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Hymenostegia pellegrini ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512939 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Irvingia grandifolia ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512940 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Julbernardia globiflora ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512941 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Khaya ivorensis ,Tropical Africa ,,,0.40-0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512942 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Klainedoxa gabonensis ,Tropical Africa ,,,0.87 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512943 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lannea welwitschii ,Tropical Africa ,,,,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512944 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lecomtedoxa klainenna ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512945 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Letestua durissima ,Tropical Africa ,,,0.87 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512946 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lophira alata ,Tropical Africa ,,,0.84-0.97 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512947 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Lovoa trichilioides ,Tropical Africa ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512948 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Macaranga kilimandscharica ,Tropical Africa ,,,0.40 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512949 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Maesopsis eminii ,Tropical Africa ,,,0.41 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512950 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Malacantha sp. aff. alnifolia ,Tropical Africa ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512951 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mammea africana ,Tropical Africa ,,,0.62 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512952 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Manilkara lacera ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512953 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Markhamia platycalyx ,Tropical Africa ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512954 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Memecylon capitellatum ,Tropical Africa ,,,0.77 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512955 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Microberlinia brazzavillensis ,Tropical Africa ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512956 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Microcos coriaceus ,Tropical Africa ,,,0.42 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512957 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Milletia spp. ,Tropical Africa ,,,0.72 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512958 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Mitragyna stipulosa ,Tropical Africa ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512959 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Monopetalanthus pellegrinii ,Tropical Africa ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512960 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Musanga cecropioides ,Tropical Africa ,,,0.23 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512961 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Nauclea diderrichii ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512962 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Neopoutonia macrocalyx ,Tropical Africa ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512963 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Nesogordonia papaverifera ,Tropical Africa ,,,0.65 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512964 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ochtocosmus africanus ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512965 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Odyendea spp. ,Tropical Africa ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512966 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Oldfieldia africana ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512967 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ongokea gore ,Tropical Africa ,,,0.72 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512968 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Oxystigma oxyphyllum ,Tropical Africa ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512969 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pachyelasma tessmannii ,Tropical Africa ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512970 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pachypodanthium staudtii ,Tropical Africa ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512971 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Paraberlinia bifoliolata ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512972 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Parinari glabra ,Tropical Africa ,,,0.87 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512973 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Parkia bicolor ,Tropical Africa ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512974 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pausinystalia brachythyrsa ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512975 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pausinystalia cf. talbotii ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512976 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pentaclethra macrophylla ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512977 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pentadesma butyracea ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512978 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Phyllanthus discoideus ,Tropical Africa ,,,0.76 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512979 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pierreodendron africanum ,Tropical Africa ,,,0.7 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512980 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Piptadeniastrum africanum ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512981 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Plagiostyles africana ,Tropical Africa ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512982 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Poga oleosa ,Tropical Africa ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512983 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Polyalthia suaveolens ,Tropical Africa ,,,0.66 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512984 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Premna angolensis ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512985 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pteleopsis hylodendron ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512986 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pterocarpus soyauxii ,Tropical Africa ,,,0.62-0.79 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512987 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pterygota spp. ,Tropical Africa ,,,0.52 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512988 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Pycnanthus angolensis ,Tropical Africa ,,,0.4-0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512989 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Randia cladantha ,Tropical Africa ,,,0.78 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512990 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Rauwolfia macrophylla ,Tropical Africa ,,,0.47 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512991 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Ricinodendron heudelotii ,Tropical Africa ,,,0.2 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512992 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Saccoglottis gabonensis ,Tropical Africa ,,,0.74 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512993 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Santiria trimera ,Tropical Africa ,,,0.53 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512994 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sapium ellipticum ,Tropical Africa ,,,0.50 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512995 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Schrebera arborea ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512996 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sclorodophloeus zenkeri ,Tropical Africa ,,,0.68 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512997 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Scottellia coriacea ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512998 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Scyphocephalium ochocoa ,Tropical Africa ,,,0.48 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +512999 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Scytopetalum tieghemii ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513000 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sindoropsis letestui ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513001 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Staudtia stipitata ,Tropical Africa ,,,0.75 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513002 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Stemonocoleus micranthus ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513003 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Sterculia rhinopetala ,Tropical Africa ,,,0.64 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513004 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Strephonema pseudocola ,Tropical Africa ,,,0.56 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513005 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Strombosiopsis tetrandra ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513006 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Swartzia fistuloides ,Tropical Africa ,,,0.82 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513007 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Symphonia globulifera ,Tropical Africa ,,,0.58 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513008 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Syzygium cordatum ,Tropical Africa ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513009 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Terminalia superba ,Tropical Africa ,,,0.45 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513010 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tessmania africana ,Tropical Africa ,,,0.85 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513011 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Testulea gabonensis ,Tropical Africa ,,,0.6 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513012 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tetraberlinia tubmaniana ,Tropical Africa ,,,0.60 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513013 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tetrapleura tetraptera ,Tropical Africa ,,,0.50 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513014 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Tieghemella heckelii ,Tropical Africa ,,,0.55 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513015 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trema sp. ,Tropical Africa ,,,0.40 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513016 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trichilia prieureana ,Tropical Africa ,,,0.63 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513017 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Trichoscypha arborea ,Tropical Africa ,,,0.59 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513018 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Triplochiton scleroxylon. ,Tropical Africa ,,,0.32 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513019 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Uapaca spp. ,Tropical Africa ,,,0.6 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513020 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vepris undulata ,Tropical Africa ,,,0.70 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513021 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Vitex doniana ,Tropical Africa ,,,0.4 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513022 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Basic Wood density of stemwood (D) ,,Tropical Tree Species: Xylopia staudtii ,Tropical Africa ,,,0.36 ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF; Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"Reyes, G., Brown, S., Chapman, J. and Lugo, A.E. (1992). Wood densities of tropical tree species. U.S. Department of Agriculture, Forest Service, New Orleans, LA. ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.9-2 (Basic wood densities (D) of stemwood for tropical tree species), pages 3.172 to 3.176; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 4.13 Basic wood density (D) of tropical tree species, on pages 4.64 - 4.70 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513042 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Primary Tropical Forest (slash and burn): Primary Tropical Forest ,Tropical ,,SD: 0.12; Number of observations: 14; R2: 12 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 7,8, 15, 56. 66, 3, 16, 53, 17 and 45 in the IPCC Good Practice Guidance for LULUCF from pages pages 3.181and 3.184.; See references 7,8, 15, 56. 66, 3, 16, 53, 17 and 45 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513043 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Primary Tropical Forest (slash and burn): Primary open tropical forest ,Tropical ,,SD: 0.09; Number of observations: 3; R2: 3 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 21 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 21 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513044 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Primary Tropical Forest (slash and burn): Primary tropical moist forest ,Tropical ,,SD: 0.03; Number of observations: 2; R2: 2 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 37 and 73 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 37 and 73 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513045 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Primary Tropical Forest (slash and burn): Primary tropical dry forest ,Tropical ,,Number of observations: 0; R2: 1 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 66 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513046 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All primary tropical forests ,Tropical ,,SD: 0.13; Number of observations: 19; R2: 23 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513047 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Secondary Tropical Forest (slash and burn): Young secondary tropical forest (3-5yrs) ,Tropical ,,Number of observations: 1; R2: 1 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 61 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 61 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513048 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Secondary Tropical Forest (slash and burn): Intermediate secondary tropical forest (6-10 yrs) ,Tropical ,,SD: 0.21; Number of observations: 2; R2: 2 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 61 and 35 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 61 and 35 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513049 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Secondary Tropical Forest (slash and burn): Advanced secondary tropical forest (14-17 yrs) ,Tropical ,,SD: 0.1; Number of observations: 2; R2: 2 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 61 and 73 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 61 and 73 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513050 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All secondary tropical forests ,Tropical ,,SD: 0.06; Number of observations: 8; R2: 9 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 34, 30, 56 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 34, 30, 56 and 66 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513051 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All tertiary tropical forests ,Tropical ,,Number of observations: 1; R2: 9 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 30 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 30 and 66 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513052 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Boreal Forest: Wildfire (general ) ,Boreal ,,SD: 0.06; Number of observations: 2; R2: 2 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 33 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 33 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513053 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Boreal Forest: Crown fire (general ) ,Boreal ,,SD: 0.21; Number of observations: 3; R2: 6 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 41, 63, 64 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 41, 63, 64 and 66 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513054 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Boreal Forest: surface fire ,Boreal ,,SD: 0.08; Number of observations: 3; R2: 3 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 63 and 64 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 63 and 64 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513055 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Boreal Forest: Post logging slash burn ,Boreal ,,SD: 0.13; Number of observations: 4 R2: 4 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 18, 40 and 49 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 18, 40 and 49 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513056 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Boreal Forest: Land clearing fire ,Boreal ,,Number of observations: 1 R2: 1 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 67 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 67 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513057 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All Boreal Forest ,Boreal ,,SD: 0.17; Number of observations:15; R2: 16 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 45 and 47 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 45 and 47 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513058 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,,,,SD: 0.11; Number of observations: 6 R2: 6 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 9, 54, 60 and 72 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 9, 54, 60 and 72 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513059 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Eucalyptus forests:Post logging slash burn ,,,SD: 0.14; Number of observations: 5 R2: 5 ,0.68(0.49 - 0.82) ,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 25, 46 and 58 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 25, 46 and 58 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513060 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Eucalyptus forests:Felled and burned (land-clearing fire) ,,,Number of observations: 1 R2: 1 ,0.49 ,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 62 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 62 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513061 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All Eucalyptus Forests ,,,SD: 0.13; Number of observations:12; R2: 12 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513062 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Other temperate forests: Post logging slash burn ,Temperate ,,SD: 0.12; Number of observations: 7; R2: 7 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 14, 19, 27 and 55 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 14, 19, 27 and 55 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513063 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Other temperate forests: Felled and burned (land-clearing fire) ,Temperate ,,Number of observations: 1; R2: 3 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 24, 53 and 71 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 24, 53 and 71 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513064 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,,Temperate ,,SD: 0.16; Number of observations: 19; R2: 17 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 53 and 56 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 53 and 56 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513065 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Shrublands: Shrubland (general) ,,,Number of observations:1; R2: 1 ,0.95 ,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 44 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 44 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513066 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Shrublands: Calluna heath ,,,SD: 0.30; Number of observations: 4; R2: 4 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 26, 39 and 56 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 26, 39 and 56 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513067 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Shrublands: Fynbos ,,,SD: 0.16; Number of observations:2; R2: 2 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 44 and 70 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 44 and 70 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513068 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All Shrublands ,,,SD: 0.25; Number of observations:7; R2: 7 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513069 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Woodlands (early dry season burns)*: Savanna woodland@ ,,,Number of observations:1; R2: 1 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 28 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 28 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513070 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Woodlands (early dry season burns)*: Savanna parkland ,,,Number of observations:1; R2: 1 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 57 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 57 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513071 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Woodlands (early dry season burns)*: Other savanna woodlands ,,,SD: 0.19; Number of observations:4; R2: 4 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 22 and 39 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 22 and 39 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513072 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All savanna woodlands (early dry season burns) ,,,SD: 0.22; Number of observations: 6; R2: 6 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 6 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 6 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513073 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Woodlands (mid/late dry season burns)*: Savanna woodland @ ,,,Number of observations:1; R2: 2 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 57 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 57 and 66 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513074 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Woodlands (mid/late dry season burns)*: Savanna parkland ,,,SD: 0.07; Number of observations: 6; R2: 6 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 6, 51 and 57 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 6, 51 and 57 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513075 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Woodlands (mid/late dry season burns)*:Tropical savanna# ,Tropical ,,SD: 0.04; Number of observations:3; R2:5 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 12, 52, 66 and 73 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 12, 52, 66 and 73 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513076 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Woodlands (mid/late dry season burns)*:Other savanna woodlands ,,,SD: 0.19; Number of observations: 7; R2:7 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 22, 29, 31, 44 and 57 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 22, 29, 31, 44 and 57 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513077 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All savanna woodlands (mid/late dry season burns)* ,,,SD: 0.14; Number of observations: 17; R2:20 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513078 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Grasslands / Pastures (early dry season burns)*:Tropical/sub-tropical grassland$ ,Tropical ,,Number of observations: 1; R2:1 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 28 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 28 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513079 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Grasslands / Pastures (early dry season burns)*: Grassland ,,,Number of observations: 0; R2:1 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 48 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 48 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513080 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All savanna grasslands (early dry season burns)* ,,,Number of observations: 1; R2: 2 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513081 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Grasslands / Pastures (mid/late dry season burns)*: Tropical/sub-tropical grassland$ ,Tropical ,,SD: 0.11; Number of observations: 7; R2:8 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 12, 44, 57, 66 and 73 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 12, 44, 57, 66 and 73 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513082 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Grasslands / Pastures (mid/late dry season burns)*: Tropical pasture~ ,Tropical ,,SD: 0.21; Number of observations: 6; R2:7 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 4, 23, 38 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 4, 23, 38 and 66 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513083 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Savanna Grasslands / Pastures (mid/late dry season burns)*: Savanna ,,,SD: 0.12; Number of observations: 16; R2:23 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 5, 6, 13, 42, 44, 45, 50, 56 and 65 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 5, 6, 13, 42, 44, 45, 50, 56 and 65 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513084 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,All savanna grasslands (mid/late dry season burns)* ,,,SD: 0.26; Number of observations: 29; R2:38 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513085 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Other Vegetation Types: Peatland ,,,Number of observations: 1; R2:2 ,,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 20 and 44 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 20 and 44 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513086 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Other Vegetation Types: Tropical Wetlands ,Tropical ,,Number of observations: 1; R2: 1 ,0.70 ,fraction ,"Equations 3.2.9, IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 44 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 44 in the list of References to Table 2.6 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.12 Combustion factor values (Proportion of prefire biomass consumed) for fires in a range of vegetation types pages 3.179 - 3.180; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513087 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Primary Tropical Forest (slash and burn): Primary tropical forest ,Tropical ,,SE: 25.8; Number of observations: 6; R2:9 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 3, 7, 15, 16, 17, 45 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 3, 7, 15, 16, 17, 45 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513088 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Primary Tropical Forest (slash and burn): Primary open tropical forest ,Tropical ,,SE: 52.1; Number of observations: 3; R2: 3 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 21 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 21 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513089 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Primary Tropical Forest (slash and burn): Primary tropical moist forest ,Tropical ,,SE: 11.8; Number of observations: 2; R2: 2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 37 and 73 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 37 and 73 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513090 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Primary Tropical Forest (slash and burn): Primary tropical dry forest ,Tropical ,,Number of observations: 0; R2: 1 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,See reference 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184. ,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513091 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All primary tropical forests ,Tropical ,,SE: 50.7; Number of observations: 11; R2: 15 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513092 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Secondary tropical forest (slash and burn): Young secondary tropical forest (3-5 yrs) ,Tropical ,,Number of observations: 1; R2: 1 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 61 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 61in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513093 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Secondary tropical forest (slash and burn): Intermediate secondary tropical forest (6-10 yrs) ,Tropical ,,SE: 27.4; Number of observations: 2; R2: 2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 35 and 61 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 35 and 61 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513094 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Secondary tropical forest (slash and burn): Advanced secondary tropical forest (14-17 yrs) ,Tropical ,,SE: 8.0; Number of observations: 2; R2: 2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 61 and 73 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 61 and 73 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513095 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All secondary tropical forests ,Tropical ,,SE: 23.6; Number of observations: 5; R2: 5 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 30 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 30 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513096 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All Tertiary tropical forest ,Tropical ,,Number of observations: 1 R2: 2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 30 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 30 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513097 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Boreal Forest:Wildfire (general) ,Boreal ,,SE: 48.4; Number of observations: 6; R2: 6 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 2, 33 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 2, 33 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513098 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Boreal Forest:Crown fire ,Boreal ,,SE: 7.9; Number of observations: 10; R2: 10 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 11, 41, 43, 63, 64 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 11, 41, 43, 63, 64 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513099 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Boreal Forest:Surface fire ,Boreal ,,SE: 25.1; Number of observations: 12; R2: 13 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 1, 43, 63, 64, 66 and 69 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 1, 43, 63, 64, 66 and 69 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513100 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Boreal Forest:Post logging slash burn ,Boreal ,,SE: 44.8; Number of observations: 7; R2: 9 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 18, 40, 49 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 18, 40, 49 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513101 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Boreal Forest: Land clearing fire ,Boreal ,,SE: 35.0; Number of observations:3; R2: 3 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 10 and 67 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 10 and 67 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513102 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All Boreal Forest ,Boreal ,,SE: 36.5; Number of observations:44; R2: 49 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 43, 45, 47 and 69 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 43, 45, 47 and 69 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513103 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Eucalypt forests: Wildfire ,,,SE: 53.6; Number of observations: 8; R2: 8 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 9, 32 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 9, 32 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513104 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,,,,SE: 13.7; Number of observations: 8; R2: 8 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 9, 54, 60, 66 and 72 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 9, 54, 60, 66 and 72 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513105 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Eucalypt forests: Post logging slash burn ,,,SE: 168.8; Number of observations: 5; R2: 5 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 25, 46 and 58 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 25, 46 and 58 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513106 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Eucalypt forests: Felled and burned (land-clearing fire) ,,,Number of observations:1; R2: 2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 9 and 62 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 9 and 62 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513107 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All Eucalypt Forests ,,,SE: 100.8; Number of observations: 22; R2: 23 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513108 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Other temperate forests: Wildfire ,Temperate ,,SE: 6.3; Number of observations: 4; R2:4 ,19.8(11 - 25) ,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 32 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 32 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513109 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Other temperate forests: Post logging slash burn ,Temperate ,,SE: 65.0; Number of observations: 7; R2: 8 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 14, 19, 27, 55 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 14, 19, 27, 55 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513110 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Other temperate forests: Felled and burned (land-clearing fire) ,Temperate ,,"SE: 62.7, .0; Number of observations: 2; R2: 3 ",,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 24, 53 and 71 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 24, 53 and 71 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513111 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,,Temperate ,,SE:53.7; Number of observations: 15; R2: 18 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 43 and 56 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 43 and 56 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513112 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Shrublands: Shrubland (general) ,,,SE:4.2; Number of observations: 3; R2: 3 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 43 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 43 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513113 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Shrublands: Calluna heath ,,,SE:4.3; Number of observations: 3; R2: 3 ,11.5(6.5 - 21) ,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 26 and 39 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 26 and 39 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513114 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Shrublands: Sagebrush ,,,SE:3.8; Number of observations: 3; R2: 4 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513115 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Shrublands: Fynbos ,,,SE:0.1; Number of observations: 2; R2: 2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 66 and 70 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 66 and 70 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513116 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All Shrublands ,,,SE:9.0; Number of observations: 11; R2: 12 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513117 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Woodlands (early dry season burns)*: Savanna woodland@ ,,,Number of observations: 1; R2: 1 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 28 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 28 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513118 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Woodlands (early dry season burns)*: Savanna parkland ,,,Number of observations: 1; R2: 1 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 57 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 57 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513119 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All savanna woodlands (early dry season burns) ,,,SE:0.1; Number of observations: 2; R2: 2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513120 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Woodlands (mid/late dry season burns)*: Savanna woodland @ ,,,Number of observations: 1; R2: 1 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 57 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 57 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513121 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Woodlands (mid/late dry season burns)*: Savanna parkland ,,,SE:1.1; Number of observations: 6; R2: 6 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 6, 51 and 57 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 6, 51 and 57 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513122 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Woodlands (mid/late dry season burns)*: Tropical savanna# ,Tropical ,,SE:1.8; Number of observations:2; R2:2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 52 and 73 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 52 and 73 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513123 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Woodlands (mid/late dry season burns)*: Other savanna woodlands ,,,SE:1.7; Number of observations: 3; R2: 3 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 31, 57 and 59 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 31, 57 and 59 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513124 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All savanna woodlands (mid/late dry season burns)* ,,,SE:1.5; Number of observations: 12; R2: 12 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513125 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Grasslands / Pastures (early dry season burns)*: Tropical/sub-tropical grassland$ ,Tropical ,,Number of observations: 1; R2: 1 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 28 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 28 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513126 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Grasslands / Pastures (early dry season burns)*: Grassland ,,,,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 48 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 48 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513127 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All savanna grasslands (early dry season burns)* ,,,Number of observations: 1; R2: 2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513128 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Grasslands / Pastures (mid/late dry season burns)*: Tropical/sub-tropical grassland$ ,Tropical ,,SE:1.7; Number of observations:6; R2:6 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 9, 12, 57 and 73 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 9, 12, 57 and 73 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513129 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Grasslands / Pastures (mid/late dry season burns)*: Grassland ,,,SE:3.1; Number of observations: 6; R2: 6 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 9 and 43 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 9 and 43 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513130 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Grasslands / Pastures (mid/late dry season burns)*: Tropical pasture~ ,Tropical ,,SE:11.8; Number of observations: 6; R2: 7 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 4, 23, 38 and 66 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 4, 23, 38 and 66 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513131 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Savanna Grasslands / Pastures (mid/late dry season burns)*: Savanna ,,,SE:2.7; Number of observations: 6; R2:10 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 6, 13, 42, 45, 50 and 65 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 6, 13, 42, 45, 50 and 65 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513132 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,All savanna grasslands (mid/late dry season burns)* ,,,SE:10.1; Number of observations: 24; R2: 29 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,,"IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513133 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Other Vegetation Types: Peatland ,,,SE:1.4; Number of observations: 2; R2:2 ,,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See references 33 and 68 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See references 33 and 68 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +513134 ,5-FL - Forest Land,3.B.1 - Forest land,CARBON DIOXIDE,,,1996 & 2006 IPCC default ,Biomass consumption (t/ha) values for fires in a range of vegetation types ,,Other Vegetation Types: Tundra ,,,Number of observations: 1 ,10 ,t dm/ha ,"Equation 3.2.9 , IPCC Good Practice Guidance for LULUCF; Equation 2.27, 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4) ",Worksheet FL-1a of GPG-LULUCF ,"See reference 33 in the IPCC Good Practice Guidance for LULUCF from pages 3.181 to 3.184.; See reference 33 in the list of References to Table 2.4 in 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), pages 2.56 to 2.59 ","IPCC Good Practice Guidance for LULUCF, Table 3A.1.13 Biomass consumption (t/ha) values for fires in a range of vegetation types pages, 3.180 - 3.181; 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 4), Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +213919 ,2A - Mineral Products,2.A - Mineral Industry,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for CO2 emissions from use of carbonate ,,CaCO3 (Calcite or aragonite); formula weight = 100.0869 ,,,,0.43971 ,tonne CO2/tonne carbonate ,"Equations 2.3, 2.5, 2.7, 2.12, 2.14, 2.15, 2.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2A4, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","CRC Handbook of Chemistry and Physics (2004). (David R. Lide, Ed in Chief); CRC Press, Boca Raton, FL; Sec. 1, p.12-14 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.1) ",IPCC  +,2A1 - Cement Production,2.A.1 - Cement production,,,,,,,,,,,,,,,,, +,2A2 - Lime Production,2.A.2 - Lime production,,,,,,,,,,,,,,,,, +,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,,,,,,,,,,,,,,,,, +,2A4 - Soda Ash Production and Use,2.A.4 - Other Process Uses of Carbonates,,,,,,,,,,,,,,,,, +,2A7 - Other (please specify),2.A.4.a - Ceramics,,,,,,,,,,,,,,,,, +,,2.A.4.b - Other Uses of Soda Ash,,,,,,,,,,,,,,,,, +,,2.A.4.c - Non Metallurgical Magnesia Production,,,,,,,,,,,,,,,,, +,,2.A.4.d - Other (please specify),,,,,,,,,,,,,,,,, +,,2.A.5 - Other (please specify),,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213920 ,2A - Mineral Products,2.A - Mineral Industry,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for CO2 emissions from use of carbonate ,,MgCO3 (Magnesite); formula weight = 84.3139 ,,,,0.52197 ,tonne CO2/tonne carbonate ,"Equations 2.3, 2.5, 2.7, 2.12, 2.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2A4, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","CRC Handbook of Chemistry and Physics (2004). (David R. Lide, Ed in Chief); CRC Press, Boca Raton, FL; Sec. 1, p.12-14 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.1) ",IPCC  +,2A1 - Cement Production,2.A.1 - Cement production,,,,,,,,,,,,,,,,, +,2A2 - Lime Production,2.A.2 - Lime production,,,,,,,,,,,,,,,,, +,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,,,,,,,,,,,,,,,,, +,2A4 - Soda Ash Production and Use,2.A.4 - Other Process Uses of Carbonates,,,,,,,,,,,,,,,,, +,2A7 - Other (please specify),2.A.4.a - Ceramics,,,,,,,,,,,,,,,,, +,,2.A.4.b - Other Uses of Soda Ash,,,,,,,,,,,,,,,,, +,,2.A.4.c - Non Metallurgical Magnesia Production,,,,,,,,,,,,,,,,, +,,2.A.4.d - Other (please specify),,,,,,,,,,,,,,,,, +,,2.A.5 - Other (please specify),,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213921 ,2A - Mineral Products,2.A - Mineral Industry,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for CO2 emissions from use of carbonate ,,CaMg(CO3)2 (Dolomite); formula weight = 184.4008 ,,,,0.47732 ,tonne CO2/tonne carbonate ,"Equations 2.3, 2.5, 2.7, 2.12, 2.14, 2.15, 2.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2A4, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","CRC Handbook of Chemistry and Physics (2004). (David R. Lide, Ed in Chief); CRC Press, Boca Raton, FL; Sec. 1, p.12-14 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.1) ",IPCC  +,2A1 - Cement Production,2.A.1 - Cement production,,,,,,,,,,,,,,,,, +,2A2 - Lime Production,2.A.2 - Lime production,,,,,,,,,,,,,,,,, +,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,,,,,,,,,,,,,,,,, +,2A4 - Soda Ash Production and Use,2.A.4 - Other Process Uses of Carbonates,,,,,,,,,,,,,,,,, +,2A7 - Other (please specify),2.A.4.a - Ceramics,,,,,,,,,,,,,,,,, +,,2.A.4.b - Other Uses of Soda Ash,,,,,,,,,,,,,,,,, +,,2.A.4.c - Non Metallurgical Magnesia Production,,,,,,,,,,,,,,,,, +,,2.A.4.d - Other (please specify),,,,,,,,,,,,,,,,, +,,2.A.5 - Other (please specify),,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213922 ,2A - Mineral Products,2.A - Mineral Industry,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for CO2 emissions from use of carbonate ,,FeCO3 (Siderite); formula weight = 115.8539 ,,,,0.37987 ,tonne CO2/tonne carbonate ,"Equations 2.3, 2.5, 2.7, 2.12, 2.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2A4, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","CRC Handbook of Chemistry and Physics (2004). (David R. Lide, Ed in Chief); CRC Press, Boca Raton, FL; Sec. 1, p.12-14 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.1) ",IPCC  +,2A1 - Cement Production,2.A.1 - Cement production,,,,,,,,,,,,,,,,, +,2A2 - Lime Production,2.A.2 - Lime production,,,,,,,,,,,,,,,,, +,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,,,,,,,,,,,,,,,,, +,2A4 - Soda Ash Production and Use,2.A.4 - Other Process Uses of Carbonates,,,,,,,,,,,,,,,,, +,2A7 - Other (please specify),2.A.4.a - Ceramics,,,,,,,,,,,,,,,,, +,,2.A.4.b - Other Uses of Soda Ash,,,,,,,,,,,,,,,,, +,,2.A.4.c - Non Metallurgical Magnesia Production,,,,,,,,,,,,,,,,, +,,2.A.4.d - Other (please specify),,,,,,,,,,,,,,,,, +,,2.A.5 - Other (please specify),,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213923 ,2A - Mineral Products,2.A - Mineral Industry,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for CO2 emissions from use of carbonate ,,"Ca(Fe,Mg,Mn)(CO3)2 (Ankerite); formula weight = 185.0225-215.6160 ",,,,0.40822-0.47572 ,tonne CO2/tonne carbonate ,"Equations 2.3, 2.5, 2.7, 2.12, 2.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2A4, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","CRC Handbook of Chemistry and Physics (2004). (David R. Lide, Ed in Chief); CRC Press, Boca Raton, FL; Sec. 1, p.12-14 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.1) ",IPCC  +,2A1 - Cement Production,2.A.1 - Cement production,,,,,,,,,,,,,,,,, +,2A2 - Lime Production,2.A.2 - Lime production,,,,,,,,,,,,,,,,, +,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,,,,,,,,,,,,,,,,, +,2A4 - Soda Ash Production and Use,2.A.4 - Other Process Uses of Carbonates,,,,,,,,,,,,,,,,, +,2A7 - Other (please specify),2.A.4.a - Ceramics,,,,,,,,,,,,,,,,, +,,2.A.4.b - Other Uses of Soda Ash,,,,,,,,,,,,,,,,, +,,2.A.4.c - Non Metallurgical Magnesia Production,,,,,,,,,,,,,,,,, +,,2.A.4.d - Other (please specify),,,,,,,,,,,,,,,,, +,,2.A.5 - Other (please specify),,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213924 ,2A - Mineral Products,2.A - Mineral Industry,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for CO2 emissions from use of carbonate ,,MnCO3 (Rhodochrosite); formula weight = 114.9470 ,,,,0.38286 ,tonne CO2/tonne carbonate ,"Equations 2.3, 2.5, 2.7, 2.12, 2.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2A4, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","CRC Handbook of Chemistry and Physics (2004). (David R. Lide, Ed in Chief); CRC Press, Boca Raton, FL; Sec. 1, p.12-14 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.1) ",IPCC  +,2A1 - Cement Production,2.A.1 - Cement production,,,,,,,,,,,,,,,,, +,2A2 - Lime Production,2.A.2 - Lime production,,,,,,,,,,,,,,,,, +,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,,,,,,,,,,,,,,,,, +,2A4 - Soda Ash Production and Use,2.A.4 - Other Process Uses of Carbonates,,,,,,,,,,,,,,,,, +,2A7 - Other (please specify),2.A.4.a - Ceramics,,,,,,,,,,,,,,,,, +,,2.A.4.b - Other Uses of Soda Ash,,,,,,,,,,,,,,,,, +,,2.A.4.c - Non Metallurgical Magnesia Production,,,,,,,,,,,,,,,,, +,,2.A.4.d - Other (please specify),,,,,,,,,,,,,,,,, +,,2.A.5 - Other (please specify),,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213925 ,2A - Mineral Products,2.A - Mineral Industry,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for CO2 emissions from use of carbonate ,,Na2CO3 (Sodium carbonate or Soda ash); formula weight = 106.0685 ,,,,0.41492 ,tonne CO2/tonne carbonate ,"Equations 2.3, 2.5, 2.7, 2.12, 2.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2A4, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","CRC Handbook of Chemistry and Physics (2004). (David R. Lide, Ed in Chief); CRC Press, Boca Raton, FL; Sec. 1, p.12-14 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.1) ",IPCC  +,2A1 - Cement Production,2.A.1 - Cement production,,,,,,,,,,,,,,,,, +,2A2 - Lime Production,2.A.2 - Lime production,,,,,,,,,,,,,,,,, +,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,,,,,,,,,,,,,,,,, +,2A4 - Soda Ash Production and Use,2.A.4 - Other Process Uses of Carbonates,,,,,,,,,,,,,,,,, +,2A7 - Other (please specify),2.A.4.a - Ceramics,,,,,,,,,,,,,,,,, +,,2.A.4.b - Other Uses of Soda Ash,,,,,,,,,,,,,,,,, +,,2.A.4.c - Non Metallurgical Magnesia Production,,,,,,,,,,,,,,,,, +,,2.A.4.d - Other (please specify),,,,,,,,,,,,,,,,, +,,2.A.5 - Other (please specify),,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213926 ,2A1 - Cement Production,2.A.1 - Cement production,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for clinker production ,,CaO content for clinker of 65%; 100% of the CaO is from calcium carbonate material; 2% correction factor for Cement Kiln Dust (CKD) is incorporated. ,,,,0.52 ,tonne CO2/tonne clinker produced ,Equation 2.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Tier 1 method) ,"2A1, Sheet 2 of 2, in Annex 1 (page A1.4) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Equation 2.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213927 ,2A1 - Cement Production,2.A.1 - Cement production,CARBON DIOXIDE,,,2006 IPCC default ,CKD (Cement Kiln Dust) correction factor ,,,,,,1.02 ,fraction ,This factor is used to calculate default emission factor for clinker in Equation 2.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, page 2.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213928 ,2A2 - Lime Production,2.A.2 - Lime production,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for lime production ,,Based on the assumption of 85% production of high calcium lime and 15% production of dolomitic lime. ,,,,0.75 ,tonne CO2/tonne lime produced ,"Tier 1 method according to the 2006 IPCC Guidelines. In order to estimate CO2 emissions, apply this default emission factor to national level lime production data.; Equation 3.4 on Page 3.20 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","2A2, Sheet 1 of 1, in Annex 1 (page A1.4) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-2, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Boynton, R. S. (1980). Chemistry and Technology of Lime and Limestone, 2nd edition, John Wiley and Sons, Inc., New York, USA.; Miller, M. (1999). US Geological Survey, Calculations based on Boynton. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Equation 2.8); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Page 3.22) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213929 ,2A2 - Lime Production,2.A.2 - Lime production,CARBON DIOXIDE,,,2006 IPCC default ,LKD (Lime Kiln Dust) correction factor ,,,,,,1.02 ,fraction ,"See the explanation of ""Tier 2 Method"" on pages 2.23-2.24 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, page 2.24) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213930 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,"""Typical"" raw material mixture is assumed. Namely, ""typical"" soda-lime batch consisting of sand (56.2 weight percent), feldspar (5.3 percent), dolomite (9.8 percent), limestone (8.6 percent) and soda ash (20.0 percent). ",,,,0.20 ,tonne CO2/tonne glass ,Equation 2.10 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Tier 1 method) ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Equation 2.13) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213931 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,,,,,0.50 ,fraction ,Equation 2.10 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (Tier 1 method) ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, page 2.30) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213932 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Float ,,,,0.21 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213933 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Float ,,,,0.10-0.20 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213934 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Container (Flint) ,,,,0.21 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213935 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Container (Flint) ,,,,0.30-0.60 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213936 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Container (Amber/Green) ,,,,0.21 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213937 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Container (Amber/Green) ,,,,0.30-0.80 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213938 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Fiberglass (E-glass) ,,,,0.19 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213939 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Fiberglass (E-glass) ,,,,0.00-0.15 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213940 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Fiberglass (Insulation) ,,,,0.25 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213941 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Fiberglass (Insulation) ,,,,0.10-0.50 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213942 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Specialty (TV Panel) ,,,,0.18 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213943 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Specialty (TV Panel) ,,,,0.20-0.75 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213944 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Specialty (TV Funnel) ,,,,0.13 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213945 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Specialty (TV Funnel) ,,,,0.20-0.70 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213946 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Specialty (Tableware) ,,,,0.10 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213947 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Specialty (Tableware) ,,,,0.20-0.60 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213948 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Specialty (Lab/Pharma) ,,,,0.03 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213949 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Specialty (Lab/Pharma) ,,,,0.30-0.75 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213950 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Glass Production ,,Glass type: Specialty (Lighting) ,,,,0.20 ,tonne CO2/tonne glass ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213951 ,2A3 - Limestone and Dolomite Use,2.A.3 - Glass Production,CARBON DIOXIDE,,,2006 IPCC default ,Curret Ratio in Glass Production ,,Glass type: Specialty (Lighting) ,,,,0.40-0.70 ,fraction ,Equation 2.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2A3, Sheet 1 of 1, in Annex 1 (page A1.5) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories based on communication with Victor Aume (2004) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 2, Table 2.6) ",IPCC  +,2A4 - Soda Ash Production and Use,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +213974 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Total Fuel Requirements for Ammonia Production ,Modern plants; Conventional reforming; natural gas as feedstock ,,,,,30.2 ,GJ[NCV]/tonne NH3 ,"Equations 3.1, 3.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B1, Sheet 1 of 2, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213975 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Total Fuel Requirements for Ammonia Production ,Modern plants; Excess air reforming; natural gas as feedstock ,,,,,29.7 ,GJ[NCV]/tonne NH3 ,"Equations 3.1, 3.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B1, Sheet 1 of 2, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213976 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Total Fuel Requirements for Ammonia Production ,Modern plants; Autothermal reforming; natural gas as feedstock ,,,,,30.2 ,GJ[NCV]/tonne NH3 ,"Equations 3.1, 3.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B1, Sheet 1 of 2, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213977 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Total Fuel Requirements for Ammonia Production ,Modern plants; Partial oxidation ,,,,,36.0 ,GJ[NCV]/tonne NH3 ,"Equations 3.1, 3.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B1, Sheet 1 of 2, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213978 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Total Fuel Requirements for Ammonia Production ,Mix of modern and older plants (Derived from European average values for specific energy consumption); natural gas as feedstock ,,,,,37.5 ,GJ[NCV]/tonne NH3 ,"Equations 3.1, 3.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B1, Sheet 1 of 2, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213979 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Total Fuel Requirements for Ammonia Production ,Mix of modern and older plants (Derived from European average values for specific energy consumption); Partial oxidation ,,,,,42.5 ,GJ[NCV]/tonne NH3 ,"Equations 3.1, 3.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B1, Sheet 1 of 2, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213980 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Ammonia Production ,Modern plants; Conventional reforming; natural gas as feedstock ,,,,,1.694 ,Tonne CO2/tonne NH3 produced ,"Equation 3.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (The emission factor is the product of FR (fuel requirement), CCF (carbon content of the fuel) and COF (carbon oxidation factor of the fuel).) ",Not applicable ,"Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213981 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Ammonia Production ,Modern plants; Excess air reforming; natural gas as feedstock ,,,,,29.7 ,Tonne CO2/tonne NH3 produced ,"Equation 3.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (The emission factor is the product of FR (fuel requirement), CCF (carbon content of the fuel) and COF (carbon oxidation factor of the fuel).) ",Not applicable ,"Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213982 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Ammonia Production ,Modern plants; Autothermal reforming; natural gas as feedstock ,,,,,30.2 ,Tonne CO2/tonne NH3 produced ,"Equation 3.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (The emission factor is the product of FR (fuel requirement), CCF (carbon content of the fuel) and COF (carbon oxidation factor of the fuel).) ",Not applicable ,"Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213983 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Ammonia Production ,Modern plants; Partial oxidation ,,,,,36.0 ,Tonne CO2/tonne NH3 produced ,"Equation 3.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (The emission factor is the product of FR (fuel requirement), CCF (carbon content of the fuel) and COF (carbon oxidation factor of the fuel).) ",Not applicable ,"Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213984 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Ammonia Production ,Mix of modern and older plants (Derived from European average values for specific energy consumption); natural gas as feedstock ,,,,,37.5 ,Tonne CO2/tonne NH3 produced ,"Equation 3.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (The emission factor is the product of FR (fuel requirement), CCF (carbon content of the fuel) and COF (carbon oxidation factor of the fuel).) ",Not applicable ,"Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213985 ,2B1 - Ammonia Production,2.B.1 - Ammonia Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for Ammonia Production ,Mix of modern and older plants (Derived from European average values for specific energy consumption); Partial oxidation ,,,,,42.5 ,Tonne CO2/tonne NH3 produced ,"Equation 3.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (The emission factor is the product of FR (fuel requirement), CCF (carbon content of the fuel) and COF (carbon oxidation factor of the fuel).) ",Not applicable ,"Adapted from EFMA (2000b). European Fertilizer Manufacturers` Association, Best Available Techniques for Pollution Prevention and Control in the European Fertilizer Industry: Production of Nitric Acid, Booklet No. 2 of 8, European Fertilizer Manufacturers` Association, Brussels.; and de Beer, J., Phylipsen, D. and Bates, J. (2001). Economic Evaluation of Sectoral Emission Reduction Objectives for Climate Change: Economic Evaluation of Carbon Dioxide and Nitrous Oxide Emission Reductions in Industry in the EU - Bottom-up Analysis, Contribution to a Study for DG Environment, European Commission by Ecofys Energy and Environment, AEA Technology Environment and National Technical University of Athens. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213986 ,2B2 - Nitric Acid Production,2.B.2 - Nitric Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Emission Factor for Nitric Acid Production (relating to 100 percent pure acid) ,Plants with Non-Selective Catalytic Reduction (NSCR) (all processes) ,,,Non-Selective Catalytic Reduction (NSCR) ,,2 ,kg N2O/tonne nitric acid produced ,"Equations 3.5, 3.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B2, Sheet 1 of 1, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","van Balken, J.A.M. (2005). Personal communication from J.A.M. van Balken (European Fertilizer Manufacturers Association). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213987 ,2B2 - Nitric Acid Production,2.B.2 - Nitric Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Emission Factor for Nitric Acid Production (relating to 100 percent pure acid) ,Plants with process-integrated or tailgas N2O destruction ,,,Process-integrated or tailgas N2O destruction ,,2.5 ,kg N2O/tonne nitric acid produced ,"Equations 3.5, 3.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B2, Sheet 1 of 1, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","van Balken, J.A.M. (2005). Personal communication from J.A.M. van Balken (European Fertilizer Manufacturers Association). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213988 ,2B2 - Nitric Acid Production,2.B.2 - Nitric Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Emission Factor for Nitric Acid Production (relating to 100 percent pure acid) ,Atmospheric pressure plants (low pressure) ,,,,,5 ,kg N2O/tonne nitric acid produced ,"Equations 3.5, 3.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B2, Sheet 1 of 1, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","van Balken, J.A.M. (2005). Personal communication from J.A.M. van Balken (European Fertilizer Manufacturers Association). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213989 ,2B2 - Nitric Acid Production,2.B.2 - Nitric Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Emission Factor for Nitric Acid Production (relating to 100 percent pure acid) ,Medium pressure combustion plants ,,,,,7 ,kg N2O/tonne nitric acid produced ,"Equations 3.5, 3.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B2, Sheet 1 of 1, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","van Balken, J.A.M. (2005). Personal communication from J.A.M. van Balken (European Fertilizer Manufacturers Association). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213990 ,2B2 - Nitric Acid Production,2.B.2 - Nitric Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Emission Factor for Nitric Acid Production (relating to 100 percent pure acid) ,High pressure plants ,,,,,9 ,kg N2O/tonne nitric acid produced ,"Equations 3.5, 3.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2B2, Sheet 1 of 1, in Annex 1 (page A1.6) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","van Balken, J.A.M. (2005). Personal communication from J.A.M. van Balken (European Fertilizer Manufacturers Association). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213991 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,2006 IPCC default ,N2O Destruction Factor for Adipic Acid Production ,,,,Abatement technology: Catalytic Destruction ,,92.5 ,% ,Equation 3.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Scott, Alex (1998). `The winners and losers of N2O emission control`. Chemical Week, February 18, 1998.; Reimer, R., (1999). Personal communication between Ron Reimer of DuPont, USA and Heike Mainhardt of ICF, Inc., USA. May 19, 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213992 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,2006 IPCC default ,N2O Destruction Factor for Adipic Acid Production ,,,,Abatement technology: Thermal Destruction ,,98.5 ,% ,Equation 3.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Scott, Alex (1998). `The winners and losers of N2O emission control`. Chemical Week, February 18, 1998. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213993 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,2006 IPCC default ,N2O Destruction Factor for Adipic Acid Production ,,,,Abatement technology: Recycle to feedstock for Phenol ,,98.5 ,% ,Equation 3.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Scott, Alex (1998). `The winners and losers of N2O emission control`. Chemical Week, February 18, 1998. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213994 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,2006 IPCC default ,N2O Destruction Factor for Adipic Acid Production ,,,,Abatement technology: Recycle to feedstock for Adipic Acid ,,94 ,% ,Equation 3.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Scott, Alex (1998). `The winners and losers of N2O emission control`. Chemical Week, February 18, 1998. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213995 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Abatement System Utilisation Factor for Adipic Acid Production (Factor to account for any down time of the emission abatement equipment) ,,,,Abatement system: Catalytic Destruction ,,89 ,% ,Equation 3.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Reimer, R. (1999), Personal communication between Ron Reimer of DuPont, USA and Heike Mainhardt of ICF, Inc., USA. May 19, 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213996 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Abatement System Utilisation Factor for Adipic Acid Production (Factor to account for any down time of the emission abatement equipment) ,,,,Abatement system: Thermal Destruction ,,97 ,% ,Equation 3.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Reimer, R. (1999), Personal communication between Ron Reimer of DuPont, USA and Heike Mainhardt of ICF, Inc., USA. May 19, 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213997 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Abatement System Utilisation Factor for Adipic Acid Production (Factor to account for any down time of the emission abatement equipment) ,,,,Abatement system: Recycle to Nitric Acid ,,94 ,% ,Equation 3.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Reimer, R. (1999), Personal communication between Ron Reimer of DuPont, USA and Heike Mainhardt of ICF, Inc., USA. May 19, 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213998 ,2B3 - Adipic Acid Production,2.B.3 - Adipic Acid Production,NITROUS OXIDE,,,2006 IPCC default ,Abatement System Utilisation Factor for Adipic Acid Production (Factor to account for any down time of the emission abatement equipment) ,,,,Abatement system: Recycle to Adipic Acid ,,89 ,% ,Equation 3.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Reimer, R. (1999), Personal communication between Ron Reimer of DuPont, USA and Heike Mainhardt of ICF, Inc., USA. May 19, 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +213999 ,2B5 - Other (please specify),"2.B.4 - Caprolactam, Glyoxal and Glyoxylic Acid Production",NITROUS OXIDE,,,2006 IPCC default ,N2O Emission Factor for Caprolactam Production (default) ,,,,No abatement ,,9.0 ,kg N2O/tonne caprolactam produced ,Equation 3.10 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B4, Sheet 1 of 1, in Annex 1 (page A1.7) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 3.4, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, based on: van Balken, J.A.M. (2005). Personal communication from J.A.M. van Balken (European Fertilizer Manufacturers Association). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214000 ,2B4 - Carbide Production,2.B.5 - Carbide Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for CO2 Emissions from Silicon Carbide Production ,,Carbon source: Petroleum Coke ,,,,2.62 ,tonne CO2/tonne carbide produced ,Equation 3.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B5, Sheet 2 of 6, in Annex 1 (page A1.8) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on measurements at Norwegian plants (See the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories, Page 2.21 of the Reference Manual) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.7) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214001 ,2B4 - Carbide Production,2.B.5 - Carbide Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for CO2 Emissions from Calcium Carbide Production ,,Carbon source: Petroleum Coke ,,,,1.70 ,tonne CO2/tonne petrol coke consumed ,Equation 3.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B5, Sheet 1 of 6, in Annex 1 (page A1.7) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on measurements at Norwegian plants (See the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories, Page 2.21 of the Reference Manual) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214002 ,2B5 - Other (please specify),2.B.6 - Titanium Dioxide Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for CO2 Emissions from Titanium Dioxide Production ,,Product: Synthetic rutile ,,,,1.43 ,tonne CO2/tonne titanium dioxide produced ,Equation 3.12 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B6, Sheet 1 of 1, in Annex 1 (page A1.9) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Derived from data provided by Iluka Resources ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.9) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214003 ,2B5 - Other (please specify),2.B.6 - Titanium Dioxide Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for CO2 Emissions from Titanium Dioxide Production ,,Product: Rutile titanium dioxide (chloride route) ,,,,1.34 ,tonne CO2/tonne titanium dioxide produced ,Equation 3.12 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B6, Sheet 1 of 1, in Annex 1 (page A1.9) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from EIPPCB (2004). European Integrated Pollution Prevention and Control Bureau, Draft Reference Document on Best Available Techniques in the Large Volume Inorganic Chemicals, Ammonia, Acids and Fertilisers Industries, Draft March 2004, European Commission Directorate General JRC, Joint Research Centre, Institute for Prospective Technological Studies, Spain. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.9) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214004 ,2A4 - Soda Ash Production and Use,2.B.7 - Soda Ash Production,CARBON DIOXIDE,,,2006 IPCC default ,Emission Factor for CO2 Emissions from Natural Soda Ash Production ,Manufacturing process: Natural sodium carbonate-bearing deposits (Natural processes). ,,,,,0.138 ,tonne CO2/tonne of soda ash produced ,Equation 3.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B7, Sheet 2 of 2, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","See ""Comments from data provider"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Page 3.52, Equation 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214005 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,"Process Technology: Conventional Steam Reforming, without primary reformer; Process Feedstock: Natural Gas (Defaul process technology and default feedstock) ",,,,,0.67 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Methanex, 2003. Global Environmental Excellence Report 2002, Methanex Corporation, 2003; and Struker, A. Blok, K.: Sectorstudie organische chemie, National Energy Efficiency Data Informatie Systeem (NEEDIS), Patten, December 1995. Cited in Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands. Report Number NW&S-E-2003-10, Copernicus Institute, Department of Science, Technology, and Society, Utrecht, The Netherlands, April 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214006 ,2B5 - Other (please specify),2.B.8.a - Methanol,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Methanol Production ,"Process Technology: Conventional Steam Reforming, without primary reformer; Process Feedstock: Natural Gas (Defaul process technology and default feedstock) ",,,,,2.3 ,kg CH4/tonne of methanol produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 2 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Methanex, 1996. Methanex Corporation Climate Change Voluntary Challenge and Registry Program Action Plan, September 1996. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Page 3.74) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214007 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: Conventional Steam Reforming Process with Primary Reformer; Process Feedstock: Natural Gas ,,,,,0.497 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Hinderink, et. al., 1996. Exergy Analysis with Flowsheeting Simulator - II Application Synthesis Gas Production from Natural Gas, Chemical Engineering Science, Volume 51, No. 20, Page 4701-4715, 1996, Cited in Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands. Report Number NW&S-E-2003-10, Copernicus Institute, Department of Science, Technology, and Society, Utrecht, The Netherlands, April 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214008 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: Conventional Steam Reforming Process with Integrated Ammonia Production; Process Feedstock: Natural Gas ,,,,,1.02 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Methanex, 2003. Global Environmental Excellence Report 2002, Methanex Corporation, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214009 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: LURGI Conventional Steam Reforming Process; Process Feedstock: Natural Gas ,,,,,0.385 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Lurgi, 2004, Integrated Low Pressure Methanol Process: Synthesis Gas Production by Conventional Steam Reforming of Natural Gas or Oil Associated Gas. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214010 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: LURGI Conventional Steam Reforming Process; Process Feedstock: Natural Gas plus Feedstock CO2 ,,,,,0.267 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Lurgi, 2004, Integrated Low Pressure Methanol Process: Synthesis Gas Production by Conventional Steam Reforming of Natural Gas or Oil Associated Gas. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214011 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: LURGI Low Pressure Steam Reforming Process; Process Feedstock: Natural Gas ,,,,,0.267 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Calculated from:feedstock consumption data provided in: Lurgi, 2004, Integrated Low Pressure Methanol Process: Synthesis Gas Production by Conventional Steam Reforming of Natural Gas or Oil Associated Gas. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214012 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: LURGI Combined Steam Reforming Process; Process Feedstock: Natural Gas ,,,,,0.396 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Calculated from:feedstock consumption data provided in: Lurgi, 2004, Integrated Low Pressure Methanol Process: Synthesis Gas Production by Combined Steam Reforming of Natural Gas or Oil Associated Gas. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214013 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: LURGI Mega Methanol Steam Reforming Process; Process Feedstock: Natural Gas ,,,,,0.310 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Calculated from:feedstock consumption data provided in: Lurgi, 2004. Lurgi Mega Methanol. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214014 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: Partial Oxidation; Process Feedstock: Oil ,,,,,1.376 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214015 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: Partial Oxidation; Process Feedstock: Coal ,,,,,5.285 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214016 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Methanol Production ,Process Technology: Partial Oxidation; Process Feedstock: Lignite ,,,,,5.020 ,tonne CO2/tonne of methanol produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 1 of 12, in Annex 1 (page A1.10) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214017 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,"Process Technology: Conventional Steam Reforming, without primary reformer; Process Feedstock: Natural Gas (Defaul process technology and default feedstock) ",,,,,36.5 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,"Methanex, 2003. Global Environmental Excellence Report 2002, Methanex Corporation, 2003; and Struker, A. Blok, K.: Sectorstudie organische chemie, National Energy Efficiency Data Informatie Systeem (NEEDIS), Patten, December 1995. Cited in Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands. Report Number NW&S-E-2003-10, Copernicus Institute, Department of Science, Technology, and Society, Utrecht, The Netherlands, April 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214018 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: Conventional Steam Reforming Process with Primary Reformer; Process Feedstock: Natural Gas ,,,,,33.4 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,"Hinderink, et. al., 1996. Exergy Analysis with Flowsheeting Simulator - II Application Synthesis Gas Production from Natural Gas, Chemical Engineering Science, Volume 51, No. 20, Page 4701-4715, 1996, Cited in Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands. Report Number NW&S-E-2003-10, Copernicus Institute, Department of Science, Technology, and Society, Utrecht, The Netherlands, April 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214019 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: LURGI Conventional Steam Reforming Process; Process Feedstock: Natural Gas ,,,,,3.14 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,"Lurgi, 2004, Integrated Low Pressure Methanol Process: Synthesis Gas Production by Conventional Steam Reforming of Natural Gas or Oil Associated Gas. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214020 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: LURGI Conventional Steam Reforming Process; Process Feedstock: Natural Gas plus Feedstock CO2 ,,,,,29.3 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,"Lurgi, 2004, Integrated Low Pressure Methanol Process: Synthesis Gas Production by Conventional Steam Reforming of Natural Gas or Oil Associated Gas. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214021 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: LURGI Low Pressure Steam Reforming Process; Process Feedstock: Natural Gas ,,,,,29.3 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,"Lurgi, 2004, Integrated Low Pressure Methanol Process: Synthesis Gas Production by Conventional Steam Reforming of Natural Gas or Oil Associated Gas. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214022 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: LURGI Combined Steam Reforming Process; Process Feedstock: Natural Gas ,,,,,31.6 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,"Lurgi, 2004, Integrated Low Pressure Methanol Process: Synthesis Gas Production by Combined Steam Reforming of Natural Gas or Oil Associated Gas. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214023 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: LURGI Mega Methanol Steam Reforming Process; Process Feedstock: Natural Gas ,,,,,30.1 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,"Lurgi, 2004. Lurgi Mega Methanol. Lurgi Oel-Gas-Chemie ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214024 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: Partial Oxidation; Process Feedstock: Oil ,,,,,37.15 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214025 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: Partial Oxidation; Process Feedstock: Coal ,,,,,71.6 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214026 ,2B5 - Other (please specify),2.B.8.a - Methanol,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Methanol Production (= Amount of feedstock required to produce 1 tonne of methanol) ,Process Technology: Partial Oxidation; Process Feedstock: Lignite ,,,,,57.6 ,GJ feedstock input/tonne of methanol produced ,"Equation 3.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories (This factor cannot be directly used in this equation, but ""SPP"" in this equation is relevant to this factor. ",Not applicable ,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.13) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214027 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Production ,Process Technology: Steam Cracker; Default Process Feedstock: Naphtha ,,"All countries other than those in North America, South America and Australia ",,,1.73 ,tonne CO2/tonne of ethylene produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands, Report Number NW&S-E-2003-10, Department of Science, Technology, and Society, Utrecht, The Netherlands, Copernicus Institute, April 2003, Table 2-3, Page 26. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214028 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Production ,Process Technology: Steam Cracker; Default Process Feedstock: Ethane ,,"North America, South America and Australia ",,,0.95 ,tonne CO2/tonne of ethylene produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands, Report Number NW&S-E-2003-10, Department of Science, Technology, and Society, Utrecht, The Netherlands, Copernicus Institute, April 2003, Table 2-3, Page 26. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214029 ,2B5 - Other (please specify),2.B.8.b - Ethylene,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ethylene Production ,Process Technology: Steam Cracker; Default Process Feedstock: Naphtha ,,"All countries other than those in North America, South America and Australia ",,,3 ,kg CH4/tonne of ethylene produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 4 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EEA, 2005. EMEP/CORINAIR Emissions Inventory Guidebook - 2004. Processes in Organic Chemical Industries (Bulk Production) -- Ethylene -- Activity 040501. February 15, 1996, Page B451-6. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214030 ,2B5 - Other (please specify),2.B.8.b - Ethylene,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ethylene Production ,Process Technology: Steam Cracker; Default Process Feedstock: Ethane ,,"North America, South America and Australia ",,,6 ,kg CH4/tonne of ethylene produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 4 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EEA, 2005. EMEP/CORINAIR Emissions Inventory Guidebook - 2004. Processes in Organic Chemical Industries (Bulk Production) -- Ethylene -- Activity 040501. February 15, 1996, Page B451-6. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214031 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Production ,Process Technology: Steam Cracker; Default Process Feedstock: Gas Oil ,,,,,2.29 ,tonne CO2/tonne of ethylene produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands, Report Number NW&S-E-2003-10, Department of Science, Technology, and Society, Utrecht, The Netherlands, Copernicus Institute, April 2003, Table 2-3, Page 26. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214032 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Production ,Process Technology: Steam Cracker; Default Process Feedstock: Propane ,,,,,1.04 ,tonne CO2/tonne of ethylene produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands, Report Number NW&S-E-2003-10, Department of Science, Technology, and Society, Utrecht, The Netherlands, Copernicus Institute, April 2003, Table 2-3, Page 26. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214033 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Production ,Process Technology: Steam Cracker; Default Process Feedstock: Butane ,,,,,1.07 ,tonne CO2/tonne of ethylene produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands, Report Number NW&S-E-2003-10, Department of Science, Technology, and Society, Utrecht, The Netherlands, Copernicus Institute, April 2003, Table 2-3, Page 26. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214034 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Production ,"Process Technology: Steam Cracker; Default Process Feedstock: Other feedstock than naphtha, ethane, gas oil, propane and butane ",,,,,1.73 ,tonne CO2/tonne of ethylene produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Neelis, M; Patel, M; de Feber, M; 2003. Improvement of CO2 Emissions Estimates from the Non-energy Use of Fossil Fuels in the Netherlands, Report Number NW&S-E-2003-10, Department of Science, Technology, and Society, Utrecht, The Netherlands, Copernicus Institute, April 2003, Table 2-3, Page 26. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.14) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214035 ,2B5 - Other (please specify),2.B.8.b - Ethylene,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ethylene Production ,Process Technology: Steam Cracker; Default Process Feedstock: Other feedstock except ethane and naphtha ,,,,,3 ,kg CH4/tonne of ethylene produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 4 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EEA, 2005. EMEP/CORINAIR Emissions Inventory Guidebook - 2004. Processes in Organic Chemical Industries (Bulk Production) -- Ethylene -- Activity 040501. February 15, 1996, Page B451-6. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214036 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,Geographic Adjustment Factor for CO2 Emission Factors for Ethylene Production ,,,Western Europe ,,,100 ,% ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data provided by Mr. Roger Matthews in personal communication to Mr. Martin Patel, May 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214037 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,Geographic Adjustment Factor for CO2 Emission Factors for Ethylene Production ,,,Eastern Europe (except Russia) ,,,110 ,% ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data provided by Mr. Roger Matthews in personal communication to Mr. Martin Patel, May 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214038 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,Geographic Adjustment Factor for CO2 Emission Factors for Ethylene Production ,,,Japan and Korea ,,,90 ,% ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data provided by Mr. Roger Matthews in personal communication to Mr. Martin Patel, May 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214039 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,Geographic Adjustment Factor for CO2 Emission Factors for Ethylene Production ,,,"Asia (except Japan and Korea), Africa, Russia ",,,130 ,% ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data provided by Mr. Roger Matthews in personal communication to Mr. Martin Patel, May 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214040 ,2B5 - Other (please specify),2.B.8.b - Ethylene,CARBON DIOXIDE,,,2006 IPCC default ,Geographic Adjustment Factor for CO2 Emission Factors for Ethylene Production ,,,"North America, South America and Australia ",,,110 ,% ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 3 of 12, in Annex 1 (page A1.11) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data provided by Mr. Roger Matthews in personal communication to Mr. Martin Patel, May 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214041 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Dichloride Production ,Process Technology: Direct Chlorination Process for Ethylene Dichloride Production; Ethylene Dichloride Process Feedstock: Ethylene ,,,,,0.191 ,tonne CO2/tonne of ethylene dichloride produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 5 of 12, in Annex 1 (page A1.12) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Tables 12.6 and 12.7. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.17) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214042 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Dichloride/Vinyl Chloride Monomer Production ,"Process Technology: Direct Chlorination Process for Ethylene Dichloride Production, Integrated Ethylene Dichloride/Vinyl Chloride Monomer Process for Vinyl Chloride Monomer Production; Ethylene Dichloride Process Feedstock: Ethylene ",,,,,0.286 ,tonne CO2/tonne of vinyl chloride monomer produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 5 of 12, in Annex 1 (page A1.12) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Tables 12.6 and 12.7. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.17) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214043 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Dichloride Production ,Process Technology: Oxychlorination Process for Ethylene Dichloride Production; Ethylene Dichloride Process Feedstock: Ethylene ,,,,,0.202 ,tonne CO2/tonne of ethylene dichloride produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 5 of 12, in Annex 1 (page A1.12) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Tables 12.6 and 12.7. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.17) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214044 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Dichloride/Vinyl Chloride Monomer Production ,"Process Technology: Oxychlorination Process for Ethylene Dichloride Production, Integrated Ethylene Dichloride/Vinyl Chloride Monomer Process for Vinyl Chloride Monomer Production; Ethylene Dichloride Process Feedstock: Ethylene ",,,,,0.302 ,tonne CO2/tonne of vinyl chloride monomer produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 5 of 12, in Annex 1 (page A1.12) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Tables 12.6 and 12.7. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.17) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214045 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Dichloride Production ,Process Technology: Balanced Process (= combination of direct chlorination process and oxychlorination process) for Ethylene Dichloride Production; Ethylene Dichloride Process Feedstock: Ethylene ,,,,,0.196 ,tonne CO2/tonne of ethylene dichloride produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 5 of 12, in Annex 1 (page A1.12) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Tables 12.6 and 12.7. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.17) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214046 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Dichloride/Vinyl Chloride Monomer Production ,"Process Technology: Balanced Process (= combination of direct chlorination process and oxychlorination process) for Ethylene Dichloride Production, Integrated Ethylene Dichloride/Vinyl Chloride Monomer Process for Vinyl Chloride Monomer Production; Ethylene Dichloride Process Feedstock: Ethylene ",,,,,0.294 ,tonne CO2/tonne of vinyl chloride monomer produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 5 of 12, in Annex 1 (page A1.12) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Tables 12.6 and 12.7. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.17) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214047 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ethylene Dichloride/Vinyl Chloride Monomer Production ,"Process Technology: Balanced Process (= combination of direct chlorination process and oxychlorination process) for Ethylene Dichloride Production, Integrated Ethylene Dichloride/Vinyl Chloride Monomer Process for Vinyl Chloride Monomer Production; Ethylene Dichloride Process Feedstock: Ethylene ",,,,,0.0226 ,kg CH4/tonne of vinyl chloride monomer produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 6 of 12, in Annex 1 (page A1.12) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 12.3.1, Table 12.4, Page 300.; EEA (2005). EMEP/CORINAIR. Emission Inventory Guidebook - 2005, European Environment Agency, Technical report No 30. Copenhagen, Denmark, (December 2005)., Processes in Organic Chemical Industries (Bulk Production) 1, 2-Dichloroethane and Vinyl Chloride (Balanced Process), Activity 040505, February 15, 1996, Section 3.4, Page B455-3, and Table 9.2, B455-5. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.19) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214048 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Ethylene Dichloride Production (= Amount of feedstock required to produce 1 tonne of Ethylene Dichloride) ,Process Technology: Direct Chlorination Process for Ethylene Dichloride Production; Ethylene Dichloride Process Feedstock: Ethylene ,,,,,0.290 ,tonne ethylene/tonne of ethylene dichloride produced ,,Not applicable ,"European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 12.3.1, Pages 299-300; Section 12.1, Table 12.3, Page 293 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.18) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214049 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Ethylene Dichloride Production (= Amount of feedstock required to produce 1 tonne of Ethylene Dichloride) ,Process Technology: Oxychlorination Process for Ethylene Dichloride Production; Ethylene Dichloride Process Feedstock: Ethylene ,,,,,0.302 ,tonne ethylene/tonne of ethylene dichloride produced ,,Not applicable ,"European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 12.3.1, Pages 299-300; Section 12.1, Table 12.3, Page 293 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.18) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214050 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Ethylene Dichloride Production (= Amount of feedstock required to produce 1 tonne of Ethylene Dichloride) ,Process Technology: Balanced Process (= combination of direct chlorination process and oxychlorination process) for Ethylene Dichloride Production; Ethylene Dichloride Process Feedstock: Ethylene ,,,,,0.296 ,tonne ethylene/tonne of ethylene dichloride produced ,,Not applicable ,"European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 12.3.1, Pages 299-300; Section 12.1, Table 12.3, Page 293 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.18) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214051 ,2B5 - Other (please specify),2.B.8.c - Ethylene Dichloride and Vinyl Chloride Monomer,CARBON DIOXIDE,,,2006 IPCC default ,Feedstock Consumption Factor for Ethylene Dichloride/Vinyl Chloride Monomer Production (= Amount of feedstock required to produce 1 tonne of Vinyl Chloride Monomer) ,"Process Technology: Balanced Process (= combination of direct chlorination process and oxychlorination process) for Ethylene Dichloride Production, Integrated Ethylene Dichloride/Vinyl Chloride Monomer Process for Vinyl Chloride Monomer Production; Ethylene Dichloride Process Feedstock: Ethylene ",,,,,0.47 ,tonne ethylene/tonne of vinyl chloride monomer produced ,,Not applicable ,"European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 12.3.1, Pages 299-300; Section 12.1, Table 12.3, Page 293 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.18) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214052 ,2B5 - Other (please specify),2.B.8.d - Ethylene Oxide,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Oxide Production ,Process Technology: Air Process; Catalyst Selectivity: 70%; Process Feedstock: Ethylene; Feedstock Consumption Factor = 0.90 tonne ethylene/tonne ethylene oxide produced ,,,,,0.863 ,tonne CO2/tonne of ethylene oxide produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 7 of 12, in Annex 1 (page A1.13) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 9.2.1, Page 224; Section 9.3.1.1, Page 231, Figure 9.6 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.20) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214053 ,2B5 - Other (please specify),2.B.8.d - Ethylene Oxide,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ethylene Oxide Production ,Process Technology: Oxygen Process; Catalyst Selectivity: 75%; Process Feedstock: Ethylene; Feedstock Consumption Factor = 0.85 tonne ethylene/tonne ethylene oxide produced ,,,,,0.663 ,tonne CO2/tonne of ethylene oxide produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 7 of 12, in Annex 1 (page A1.13) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 9.2.1, Page 224; Section 9.3.1.1, Page 231, Figure 9.6 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.20) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214054 ,2B5 - Other (please specify),2.B.8.d - Ethylene Oxide,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ethylene Oxide Production ,,,,No abatement (Without thermal treatment of CH4 emissions) ,,1.79 ,kg CH4/tonne of ethylene oxide produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 8 of 12, in Annex 1 (page A1.13) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Table 9.6, Page 233; Table 9.8, Page 236; Table 9.9, Page 236 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.21) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214055 ,2B5 - Other (please specify),2.B.8.d - Ethylene Oxide,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ethylene Oxide Production ,,,,With thermal treatment of CH4 emissions ,,0.79 ,kg CH4/tonne of ethylene oxide produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 8 of 12, in Annex 1 (page A1.13) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Table 9.6, Page 233; Table 9.8, Page 236; Table 9.9, Page 236 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.21) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214056 ,2B5 - Other (please specify),2.B.8.e - Acrylonitrile,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Acrylonitrile Production (default) ,Process Technology: Secondary Products Burned for Energy Recovery or Flared; Process Feedstock: Propylene ,,,,,1.00 ,tonne CO2/tonne of acrylonitrile produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 9 of 12, in Annex 1 (page A1.14) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 11.3.1.1, Table 11.2, Page 274; Section 11.3.1.2, Page 275 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.22) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214057 ,2B5 - Other (please specify),2.B.8.e - Acrylonitrile,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Acrylonitrile Production ,Process Technology: Acetonitrile Secondary Product Burned for Energy Recovery or Flared; Hydrogen Cyanide Recovered as Product; Process Feedstock: Propylene ,,,,,0.83 ,tonne CO2/tonne of acrylonitrile produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 9 of 12, in Annex 1 (page A1.14) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 11.3.1.1, Table 11.2, Page 274; Section 11.3.1.2, Page 275 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.22) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214058 ,2B5 - Other (please specify),2.B.8.e - Acrylonitrile,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Acrylonitrile Production ,Process Technology: Acetonitrile and Hydrogen Cyanide Recovered as Product; Process Feedstock: Propylene ,,,,,0.79 ,tonne CO2/tonne of acrylonitrile produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 9 of 12, in Annex 1 (page A1.14) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 11.3.1.1, Table 11.2, Page 274; Section 11.3.1.2, Page 275 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.22) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214059 ,2B5 - Other (please specify),2.B.8.e - Acrylonitrile,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Acrylonitrile Production ,Process Technology: Secondary Products Burned for Energy Recovery or Flared; Process Feedstock: Propylene ,,,,,0.18 ,kg CH4/tonne of acrylonitrile produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 10 of 12, in Annex 1 (page A1.14) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Boustead, I., (2003). Eco Profiles of the European Plastics Industry: Methodology, A Report prepared for APME, Brussels, July 2003, Page 40 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Page 3.79) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214060 ,2B5 - Other (please specify),2.B.8.e - Acrylonitrile,CARBON DIOXIDE,,,2006 IPCC default ,Secondary Product Production Factor for Acrylonitrile Production Process (Acetonitrile) ,Secondary Product: Acetonitrile ,,,,,18.5 ,kg acetonitrile/tonne acrylonitrile ,Equation 3.19 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 11.3.4, Page 27 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.26) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214061 ,2B5 - Other (please specify),2.B.8.e - Acrylonitrile,CARBON DIOXIDE,,,2006 IPCC default ,Secondary Product Production Factor for Acrylonitrile Production Process (Hydrogen Cyanide) ,Secondary Product: Hydrogen Cyanide ,,,,,105 ,kg hydrogen cyanide/tonne acrylonitrile ,Equation 3.19 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"European IPPC Bureau (2003). Integrated Pollution Prevention and Control (IPPC) Reference Document on Best Available Techniques in the Large Volume Organic Chemical (LVOC) Industry, February 2003., Section 11.3.4, Page 27 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.26) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214062 ,2B5 - Other (please specify),2.B.8.f - Carbon Black,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Carbon Black Production (default) ,"Process Technology: Furnace Black Process; Primary Process Feedstock: Carbon Black Feedstock (also referred to as ""carbon black oil"") which is a heavy aromatic oil that may be derived either as a by-product of the petroleum refining process or the metallurgical (coal) coke production process; Secondary Process Feedstock: Natural Gas ",,,,,2.62 ,tonne CO2/tonne of carbon black produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 11 of 12, in Annex 1 (page A1.15) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2005). Integrated Pollution Prevention and Control (IPPC) Draft Reference Document on Best Available Techniques in the Large Volume Inorganic Chemicals (LVIC) - Solid and Others Industry, EK/EIPPCB/LVIC-S_Draft_2, Draft, June 2005., Table 4.11, Page 214 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.23) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214063 ,2B5 - Other (please specify),2.B.8.f - Carbon Black,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Carbon Black Production ,"Process Technology: Thermal Black Process; Primary Process Feedstock: Carbon Black Feedstock (also referred to as ""carbon black oil"") which is a heavy aromatic oil that may be derived either as a by-product of the petroleum refining process or the metallurgical (coal) coke production process; Secondary Process Feedstock: Natural Gas ",,,,,5.25 ,tonne CO2/tonne of carbon black produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 11 of 12, in Annex 1 (page A1.15) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2005). Integrated Pollution Prevention and Control (IPPC) Draft Reference Document on Best Available Techniques in the Large Volume Inorganic Chemicals (LVIC) - Solid and Others Industry, EK/EIPPCB/LVIC-S_Draft_2, Draft, June 2005., Table 4.11, Page 214 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.23) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214064 ,2B5 - Other (please specify),2.B.8.f - Carbon Black,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Carbon Black Production ,Process Technology: Acetylene Black Process; Primary Process Feedstock: Acetylene Feedstock; Secondary Process Feedstock: Natural Gas ,,,,,0.78 ,tonne CO2/tonne of carbon black produced ,Equation 3.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 11 of 12, in Annex 1 (page A1.15) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2005). Integrated Pollution Prevention and Control (IPPC) Draft Reference Document on Best Available Techniques in the Large Volume Inorganic Chemicals (LVIC) - Solid and Others Industry, EK/EIPPCB/LVIC-S_Draft_2, Draft, June 2005., Table 4.11, Page 214 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.23) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214065 ,2B5 - Other (please specify),2.B.8.f - Carbon Black,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Carbon Black Production ,"Process Technology: Furnace Black Process; Primary Process Feedstock: Carbon Black Feedstock (also referred to as ""carbon black oil"") which is a heavy aromatic oil that may be derived either as a by-product of the petroleum refining process or the metallurgical (coal) coke production process; Secondary Process Feedstock: Natural Gas ",,,No abatement (Without Thermal Treatment of CH4 Emissions) ,,28.7 ,kg CH4/tonne of carbon black produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 12 of 12, in Annex 1 (page A1.15) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2005). Integrated Pollution Prevention and Control (IPPC) Draft Reference Document on Best Available Techniques in the Large Volume Inorganic Chemicals (LVIC) - Solid and Others Industry, EK/EIPPCB/LVIC-S_Draft_2, Draft, June 2005., Table 4.8, Page 209; Table 4.10, Page 213, Section 4.3.2.3, Page 210 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.24) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214066 ,2B5 - Other (please specify),2.B.8.f - Carbon Black,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Carbon Black Production ,"Process Technology: Furnace Black Process; Primary Process Feedstock: Carbon Black Feedstock (also referred to as ""carbon black oil"") which is a heavy aromatic oil that may be derived either as a by-product of the petroleum refining process or the metallurgical (coal) coke production process; Secondary Process Feedstock: Natural Gas ",,,With Thermal Treatment of CH4 Emissions ,,0.06 ,kg CH4/tonne of carbon black produced ,Equations 3.23-3.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B8, Sheet 12 of 12, in Annex 1 (page A1.15) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2005). Integrated Pollution Prevention and Control (IPPC) Draft Reference Document on Best Available Techniques in the Large Volume Inorganic Chemicals (LVIC) - Solid and Others Industry, EK/EIPPCB/LVIC-S_Draft_2, Draft, June 2005., Table 4.8, Page 209; Table 4.10, Page 213, Section 4.3.2.3, Page 210 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.24) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214067 ,2E1 - By-product Emissions,2.B.9.a - By-product emissions,HFC-23,,,2006 IPCC default ,Emission Factor for HFC-23 emissions from HCFC-22 Manufacture ,"Plants of recent design (note: it was in 2006 when the 2006 IPCC Guidelines were accepted where this value was presented), not specifically optimised ",,,,,0.03 ,kg HFC-23/kg HCFC-22 manufactured ,Equation 3.30 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B9, Sheet 1 of 3, in Annex 1 (page A1.15) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-14, Sheet 1 of 2, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 3.10, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.28) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214068 ,2E1 - By-product Emissions,2.B.9.a - By-product emissions,HFC-23,,,2006 IPCC default ,Emission Factor for HFC-23 emissions from HCFC-22 Manufacture ,,,"Global average emissions (1978 - 1995) This is calculated from the change in atmospheric concentration of HFC-23. It does not discriminate between plant emissions, which range from nothing to greater than 4 percent of the HCFC-22 production. ",,,0.02 ,kg HFC-23/kg HCFC-22 manufactured ,Equation 3.30 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B9, Sheet 1 of 3, in Annex 1 (page A1.15) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-14, Sheet 1 of 2, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 3.10, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Table 3.28) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214069 ,2E2 - Fugitive Emissions,2.B.9.b - Fugitive Emissions,HFC-23,,,2006 IPCC default ,Emission Factor for Fugitive (and By-product) Emissions of Fluorinated Compound from Production of Fluorinated Compounds ,,,,No Abatement ,,0.5 ,% of total quantity of fluorinated compounds produced ,Equation 3.41 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2B9, Sheet 3 of 3, in Annex 1 (page A1.16) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 3.10, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, based on data supplied to AFEAS (2000); AFEAS (2004). Production, Sales and Estimated Atmospheric Emissions of CFCs, HCFCs and HFCs, Alternative Fluorocarbons Environmental Acceptability Study, Arlington, U.S.A., 2004. Available at www.afeas.org. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 3, Page 3.104) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-41,,,,,,,,,,,,,,,, +,,,HFC-43-10mee,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,HFC-245ca,,,,,,,,,,,,,,,, +,,,CF4,,,,,,,,,,,,,,,, +,,,C2F6,,,,,,,,,,,,,,,, +,,,C3F8,,,,,,,,,,,,,,,, +,,,C4F10,,,,,,,,,,,,,,,, +,,,c-C4F8,,,,,,,,,,,,,,,, +,,,C5F12,,,,,,,,,,,,,,,, +,,,C6F14,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +114089 ,1A1c1 - Manufacture of Solid Fuels,1.A.1.c.i - Manufacture of Solid Fuels,CARBON DIOXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,CO2 Emission Factor for Metallurgical Coke Production ,,,,,,0.56 ,tonne CO2/tonne coke produced ,Equation 4.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"European IPPC Bureau (2001). Integrated Pollution Prevention and Control (IPPC) Best Available Techniques Reference Document on the Production of Iron and Steel, December 2001., Table 6.2, Page 122 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +114090 ,1A1c1 - Manufacture of Solid Fuels,1.A.1.c.i - Manufacture of Solid Fuels,METHANE,Coking Coal ,Coking Coal ,2006 IPCC default ,CH4 Emission Factor for Metallurgical Coke Production ,,,,,,0.1 ,g CH4/tonne coke produced ,Equation 4.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"European IPPC Bureau (2001). Integrated Pollution Prevention and Control (IPPC) Best Available Techniques Reference Document on the Production of Iron and Steel, December 2001., Table 6.2-3, Page 122 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214091 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Iron & Steel Production (Sinter Production) ,Process: Sinter Production ,,,,,0.20 ,tonne CO2/tonne sinter produced ,Equation 4.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C1, Sheet 1 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2001). Integrated Pollution Prevention and Control (IPPC) Best Available Techniques Reference Document on the Production of Iron and Steel, December 2001., Table 4.1, Page 29 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214092 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Iron & Steel Production (Pig Iron Production) ,Process: Iron Production (Blast Furnace Iron Making) ,,,,,1.35 ,tonne CO2/tonne pig iron produced ,Equation 4.5 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C1, Sheet 1 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2001). Integrated Pollution Prevention and Control (IPPC) Best Available Techniques Reference Document on the Production of Iron and Steel, December 2001., Tables 7.2 and 7.3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214093 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Iron & Steel Production (Direct Reduced Iron (DRI) Production) ,Process: Direct Reduced Iron (DRI) Production ,,,,,0.70 ,tonne CO2/tonne DRI produced ,Equation 4.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C1, Sheet 1 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2001). Integrated Pollution Prevention and Control (IPPC) Best Available Techniques Reference Document on the Production of Iron and Steel, December 2001., Table 10.1, Page 322; Table 10.4, Page 331 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214094 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Iron & Steel Production (Pellet Production) ,Process: Pellet Production ,,,,,0.03 ,tonne CO2/tonne pellet produced ,Equation 4.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C1, Sheet 1 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","European IPPC Bureau (2001). Integrated Pollution Prevention and Control (IPPC) Best Available Techniques Reference Document on the Production of Iron and Steel, December 2001., Table 5.1, Page 95 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214095 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Iron & Steel Production (Basic Oxygen Furnace) ,Steel Making Method: Basic Oxygen Furnace (BOF) ,,,,,1.46 ,tonne CO2/tonne steel produced ,Equation 4.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C1, Sheet 1 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Consensus of experts and IISI Environmental Performance Indicators 2003 STEEL (International Iron and Steel Institute (2004). Steel Statistical Yearbook 2004: International Iron and Steel Institute, COMMITTEE ON ECONOMIC STUDIES, Brussels.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214096 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Iron & Steel Production (Open Hearth Furnace) ,Steel Making Method: Open Hearth Furnace (OHF) ,,,,,1.72 ,tonne CO2/tonne steel produced ,Equation 4.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C1, Sheet 1 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Consensus of experts and IISI Environmental Performance Indicators 2003 STEEL (International Iron and Steel Institute (2004). Steel Statistical Yearbook 2004: International Iron and Steel Institute, COMMITTEE ON ECONOMIC STUDIES, Brussels.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214097 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Iron & Steel Production (Electric Arc Furnace) ,"Steel Making Method: Electric Arc Furnace (EAF); Assume production of steel from scrap metal, not from pig iron ",,,,,0.08 ,tonne CO2/tonne steel produced ,Equation 4.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C1, Sheet 1 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Consensus of experts and IISI Environmental Performance Indicators 2003 STEEL (International Iron and Steel Institute (2004). Steel Statistical Yearbook 2004: International Iron and Steel Institute, COMMITTEE ON ECONOMIC STUDIES, Brussels.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214098 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Iron & Steel Production (Global Average) ,"Steel Making Method: See ""Comments from Data Provider"" ",,,,,1.06 ,tonne CO2/tonne steel produced ,CO2 emissions can be calculated by multiplying total national steel production and this emission factor. (See Equation 4.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories) ,"2C1, Sheet 1 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Consensus of experts and IISI Environmental Performance Indicators 2003 STEEL (International Iron and Steel Institute (2004). Steel Statistical Yearbook 2004: International Iron and Steel Institute, COMMITTEE ON ECONOMIC STUDIES, Brussels.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.1) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214099 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Iron & Steel Production (Sinter Production) ,Process: Sinter Production ,,,,,0.07 ,kg CH4/tonne sinter produced ,Equation 4.12 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C1, Sheet 2 of 2, in Annex 1 (page A1.17) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EEA (2005). EMEP/CORINAIR. Emission Inventory Guidebook - 2005, European Environment Agency, Technical report No 30. Copenhagen, Denmark, (December 2005). Processes With Contact: Sinter and Pelletizing Plants: Sinter and Pelletizing Plants (Except Combustion 030301) Table 8.2a Emission factors for gaseous compounds ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214100 ,2C1 - Iron and Steel Production,2.C.1 - Iron and Steel Production,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Iron & Steel Production (Direct Reduced Iron (DRI) Production) ,Process: Direct Reduced Iron (DRI) Production ,,,,,1 ,kg CH4/TJ ,"Relevant equation is Equation 4.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories. It should be noted that the activity data should be consumption of natural gas (in TJ, on a net calorific value (NCV) basis) ",Not applicable ,"Energy Volume default emission factor for CH4 Emissions from natural gas combustion. [See Table 2.3 of Volume 2, Chapter 2.] ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214101 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferrosilicon 45% Si (FeSi 45) ,,,,2.5 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214102 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferrosilicon 65% Si (FeSi 65) ,,,,3.6 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214103 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferrosilicon 75% Si (FeSi 75) ,,,,4.0 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214104 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferrosilicon 90% Si (FeSi 90) ,,,,4.8 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214105 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferromanganeses (7% C) (FeMn) ,,,,1.3 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Olsen, S.E. (2004). ""CO2 Emissions from the Production of Manganese Alloys in Norway"", STF80A04010, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214106 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferromanganeses (1% C) (FeMn) ,,,,1.5 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Olsen, S.E. (2004). ""CO2 Emissions from the Production of Manganese Alloys in Norway"", STF80A04010, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214107 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Silicomanganese (SiMn) ,,,,1.4 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004.; Olsen, S.E. (2004). ""CO2 Emissions from the Production of Manganese Alloys in Norway"", STF80A04010, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214108 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Silicon metal (Si-metal) ,,,,5.0 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004.; Olsen, S.E. (2004). ""CO2 Emissions from the Production of Manganese Alloys in Norway"", STF80A04010, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214109 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,Without sinter plant ,Type of Ferroalloy: Ferrochromium (FeCr) ,,,,1.3 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Olsen, S.E., Monsen, B.E. and Lindstad, T. (1998). ""CO2 Emissions from the Production of Manganese and Chrome Alloys in Norway"", Electric Furnace Conference Proceedings Vol. 56, Iron & Steel Society, Warrendale PA 1998, pp 363-369. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214110 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Ferroalloy Production ,With sinter plant ,Type of Ferroalloy: Ferrochromium (FeCr) ,,,,1.6 ,tonne CO2/tonne ferroalloy produced ,Equation 4.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 1 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 4 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","Olsen, S.E., Monsen, B.E. and Lindstad, T. (1998). ""CO2 Emissions from the Production of Manganese and Chrome Alloys in Norway"", Electric Furnace Conference Proceedings Vol. 56, Iron & Steel Society, Warrendale PA 1998, pp 363-369. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214111 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Reducing Agent used in Ferroalloy Production ,Reducing Agent (usage): Coal (for FeSi and Si-metal) ,"Type of Ferroalloy: Ferrocsilicon (FeSi), Silicon metal (Si-metal) ",,,,3.1 ,Tonne CO2/Tonne Reducing Agent ,Equation 4.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.6) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214112 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Reducing Agent used in Ferroalloy Production ,Reducing Agent (usage): Coke (for FeMn and SiMn) ,"Type of Ferroalloy: Ferrocsilicon (FeSi), Silicon metal (Si-metal) ",,,,3.2-3.3 ,Tonne CO2/Tonne Reducing Agent ,Equation 4.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Olsen, S.E. (2004). ""CO2 Emissions from the Production of Manganese Alloys in Norway"", STF80A04010, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.6) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214113 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Reducing Agent used in Ferroalloy Production ,Reducing Agent (usage): Coke (for Si and FeSi) ,"Type of Ferroalloy: Ferrocsilicon (FeSi), Silicon metal (Si-metal) ",,,,3.3-3.4 ,Tonne CO2/Tonne Reducing Agent ,Equation 4.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.6) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214114 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Reducing Agent used in Ferroalloy Production ,Reducing Agent: Prebaked electrodes ,,,,,3.54 ,Tonne CO2/Tonne Reducing Agent ,Equation 4.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004.; Olsen, S.E. (2004). ""CO2 Emissions from the Production of Manganese Alloys in Norway"", STF80A04010, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.6) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214115 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Reducing Agent used in Ferroalloy Production ,Reducing Agent: Electrode paste ,,,,,3.4 ,Tonne CO2/Tonne Reducing Agent ,Equation 4.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004.; Olsen, S.E. (2004). ""CO2 Emissions from the Production of Manganese Alloys in Norway"", STF80A04010, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.6) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214116 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Reducing Agent used in Ferroalloy Production ,Reducing Agent: Petroleum coke ,,,,,3.5 ,Tonne CO2/Tonne Reducing Agent ,Equation 4.16 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Lindstad, T. (2004). ""CO2 Emissions from the Production of Silicon Alloys"", STF80A04019, SINTEF, Trondheim 2004.; Olsen, S.E. (2004). ""CO2 Emissions from the Production of Manganese Alloys in Norway"", STF80A04010, SINTEF, Trondheim 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.6) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214117 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferrosilicon 65% Si (FeSi 65) ,,,,1.0 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.7) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214118 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferrosilicon 75% Si (FeSi 75) ,,,,1.0 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.7) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214119 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Ferrosilicon 90% Si (FeSi 90) ,,,,1.1 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.7) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214120 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,CH4 Emission Factor for Ferroalloy Production ,,Type of Ferroalloy: Silicon metal (Si-metal) ,,,,1.2 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.7) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214121 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,Operation of Furnace: Batch-charging ,Type of Ferroalloy: Silicon metal (Si-metal) ,,,,1.5 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214122 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,Operation of Furnace: Sprinkle-charging (= Charging intermittently every minute) ,Type of Ferroalloy: Silicon metal (Si-metal) ,,,,1.2 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214123 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,"Operation of Furnace: Sprinkle-charging (= Charging intermittently every minute); Temperature in off-gas channel (measured where the thermocouple cannot ""see"" the combustion in the furnace hood): higher than 750 degrees centigrade ",Type of Ferroalloy: Silicon metal (Si-metal) ,,,,0.7 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214124 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,Operation of Furnace: Batch-charging ,Type of Ferroalloy: Ferrosilicon 90% Si (FeSi 90) ,,,,1.4 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214125 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,Operation of Furnace: Sprinkle-charging (= Charging intermittently every minute) ,Type of Ferroalloy: Ferrosilicon 90% Si (FeSi 90) ,,,,1.1 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214126 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,"Operation of Furnace: Sprinkle-charging (= Charging intermittently every minute); Temperature in off-gas channel (measured where the thermocouple cannot ""see"" the combustion in the furnace hood): higher than 750 degrees centigrade ",Type of Ferroalloy: Ferrosilicon 90% Si (FeSi 90) ,,,,0.6 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214127 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,Operation of Furnace: Batch-charging ,Type of Ferroalloy: Ferrosilicon 75% Si (FeSi 75) ,,,,1.3 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214128 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,Operation of Furnace: Sprinkle-charging (= Charging intermittently every minute) ,Type of Ferroalloy: Ferrosilicon 75% Si (FeSi 75) ,,,,1.0 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214129 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,"Operation of Furnace: Sprinkle-charging (= Charging intermittently every minute); Temperature in off-gas channel (measured where the thermocouple cannot ""see"" the combustion in the furnace hood): higher than 750 degrees centigrade ",Type of Ferroalloy: Ferrosilicon 75% Si (FeSi 75) ,,,,0.5 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214130 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,Operation of Furnace: Batch-charging ,Type of Ferroalloy: Ferrosilicon 65% Si (FeSi 65) ,,,,1.3 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214131 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,Operation of Furnace: Sprinkle-charging (= Charging intermittently every minute) ,Type of Ferroalloy: Ferrosilicon 65% Si (FeSi 65) ,,,,1.0 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214132 ,2C2 - Ferroalloys Production,2.C.2 - Ferroalloys Production,METHANE,,,2006 IPCC default ,Operation Specific Emission Factor for CH4 Emissions from Ferroalloy Production ,"Operation of Furnace: Sprinkle-charging (= Charging intermittently every minute); Temperature in off-gas channel (measured where the thermocouple cannot ""see"" the combustion in the furnace hood): higher than 750 degrees centigrade ",Type of Ferroalloy: Ferrosilicon 65% Si (FeSi 65) ,,,,0.5 ,kg CH4/tonne ferroalloy produced ,Equation 4.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C2, Sheet 2 of 2, in Annex 1 (page A1.18) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","FFF (2000). The Norwegian Ferroalloy Producers Research Association, ""Emission factors standardized at meeting"", Oslo 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.8) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214133 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Primary Alminium Production ,Production technology: Soderberg ,,,,,1.7 ,tonne CO2/tonne Al ,Equation 4.20 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 1 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 5 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2000). International Aluminium Institute, International Aluminium Institute (2000) ""Life Cycle Assessment of Aluminium"" ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.10) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214134 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Primary Alminium Production ,Production technology: Prebake ,,,,,1.6 ,tonne CO2/tonne Al ,Equation 4.20 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 1 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 5 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2000). International Aluminium Institute, International Aluminium Institute (2000) ""Life Cycle Assessment of Aluminium"" ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.10) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214135 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,CF4 Emission Factor for Aluminium Production by Cell Technology Type ,Technology: Centre Worked Prebake (CWPB) ,,,,,0.4 ,kg CF4 /tonne Al ,Equation 4.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 2 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 8 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2001). International Aluminium Institute, Perfluorocarbon Emissions Reduction Programme 1990 - 2000, 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214136 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,CF4 Emission Factor for Aluminium Production by Cell Technology Type ,Technology: Side Worked Prebake (SWPB) ,,,,,1.6 ,kg CF4 /tonne Al ,Equation 4.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 2 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 8 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2001). International Aluminium Institute, Perfluorocarbon Emissions Reduction Programme 1990 - 2000, 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214137 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,CF4 Emission Factor for Aluminium Production by Cell Technology Type ,Technology: Vertical Stud Soderberg (VSS) ,,,,,0.8 ,kg CF4 /tonne Al ,Equation 4.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 2 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 8 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2001). International Aluminium Institute, Perfluorocarbon Emissions Reduction Programme 1990 - 2000, 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214138 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,CF4 Emission Factor for Aluminium Production by Cell Technology Type ,Technology: Horizontal Stud Soderberg (HSS) ,,,,,0.4 ,kg CF4 /tonne Al ,Equation 4.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 2 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Worksheet 2-11, Sheet 8 of 11, Vol.2 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2001). International Aluminium Institute, Perfluorocarbon Emissions Reduction Programme 1990 - 2000, 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214139 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,C2F6,,,2006 IPCC default ,C2F6 Emission Factor for Aluminium Production by Cell Technology Type ,Technology: Centre Worked Prebake (CWPB) ,,,,,0.04 ,kg C2F6 /tonne Al ,Equation 4.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 3 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2001). International Aluminium Institute, Perfluorocarbon Emissions Reduction Programme 1990 - 2000, 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214140 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,C2F6,,,2006 IPCC default ,C2F6 Emission Factor for Aluminium Production by Cell Technology Type ,Technology: Side Worked Prebake (SWPB) ,,,,,0.4 ,kg C2F6 /tonne Al ,Equation 4.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 3 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2001). International Aluminium Institute, Perfluorocarbon Emissions Reduction Programme 1990 - 2000, 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214141 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,C2F6,,,2006 IPCC default ,C2F6 Emission Factor for Aluminium Production by Cell Technology Type ,Technology: Vertical Stud Soderberg (VSS) ,,,,,0.04 ,kg C2F6 /tonne Al ,Equation 4.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 3 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2001). International Aluminium Institute, Perfluorocarbon Emissions Reduction Programme 1990 - 2000, 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214142 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,C2F6,,,2006 IPCC default ,C2F6 Emission Factor for Aluminium Production by Cell Technology Type ,Technology: Horizontal Stud Soderberg (HSS) ,,,,,0.03 ,kg C2F6 /tonne Al ,Equation 4.25 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C3, Sheet 3 of 3, in Annex 1 (page A1.19) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","IAI (2001). International Aluminium Institute, Perfluorocarbon Emissions Reduction Programme 1990 - 2000, 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.15) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214143 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,Technology Specific Slope Coefficient for the Calculation of PFC Emissions from Aluminium Production ,Technology: Centre Worked Prebake (CWPB) ,,,,,0.143 ,(kg PFC/tAl)/(AE-Minutes/cellday) ,Equation 4.26 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 3.10 on Page 3.42 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214144 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,Technology Specific Slope Coefficient for the Calculation of PFC Emissions from Aluminium Production ,Technology: Side Worked Prebake (SWPB) ,,,,,0.272 ,(kg PFC/tAl)/(AE-Minutes/cellday) ,Equation 4.26 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 3.10 on Page 3.42 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214145 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,Technology Specific Slope Coefficient for the Calculation of PFC Emissions from Aluminium Production ,Technology: Vertical Stud Soderberg (VSS) ,,,,,0.092 ,(kg PFC/tAl)/(AE-Minutes/cellday) ,Equation 4.26 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 3.10 on Page 3.42 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214146 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,Technology Specific Slope Coefficient for the Calculation of PFC Emissions from Aluminium Production ,Technology: Horizontal Stud Soderberg (HSS) ,,,,,0.099 ,(kg PFC/tAl)/(AE-Minutes/cellday) ,Equation 4.26 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 3.10 on Page 3.42 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214147 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,Technology Specific Overvoltage Coefficient for the Calculation of PFC Emissions from Aluminium Production ,Technology: Centre Worked Prebake (CWPB) ,,,,,1.16 ,(kg PFC/tAl)/(mV/day) ,Equation 4.27 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 3.11 on Page 3.42 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214148 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,CF4,,,2006 IPCC default ,Technology Specific Overvoltage Coefficient for the Calculation of PFC Emissions from Aluminium Production ,Technology: Side Worked Prebake (SWPB) ,,,,,3.65 ,(kg PFC/tAl)/(mV/day) ,Equation 4.27 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 3.11 on Page 3.42 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214149 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,C2F6,,,2006 IPCC default ,Weight Fraction of C2F6 to CF4 (C2F6/CF4) ,Technology: Centre Worked Prebake (CWPB) ,,,,,0.121 ,fraction ,Equations 4.26 and 4.27 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214150 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,C2F6,,,2006 IPCC default ,Weight Fraction of C2F6 to CF4 (C2F6/CF4) ,Technology: Side Worked Prebake (SWPB) ,,,,,0.252 ,fraction ,Equations 4.26 and 4.27 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214151 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,C2F6,,,2006 IPCC default ,Weight Fraction of C2F6 to CF4 (C2F6/CF4) ,Technology: Vertical Stud Soderberg (VSS) ,,,,,0.053 ,fraction ,Equations 4.26 and 4.27 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214152 ,2C3 - Aluminium Production,2.C.3 - Aluminium production,C2F6,,,2006 IPCC default ,Weight Fraction of C2F6 to CF4 (C2F6/CF4) ,Technology: Horizontal Stud Soderberg (HSS) ,,,,,0.085 ,fraction ,Equations 4.26 and 4.27 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"U.S. EPA and IAI (2003), U.S. Environmental Protection Agency and International Aluminium Institute, USEPA/IAI Protocol for Measurement of PFCs from Primary Aluminium Production, EPA 43-R-03-006, May 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.16) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214153 ,2C4 - SF6 Used in Aluminium and Magnesium Foundries,2.C.4 - Magnesium production,Sulphur Hexafluoride,,,2006 IPCC default ,SF6 Emission Factor for Magnesium Casting Processes ,Type of technology: All Casting Processes ,,,,,1.0 ,kg SF6/tonne magnesium casting ,Equation 4.30 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C4, Sheet 2 of 2, in Annex 1 (page A1.20) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Gjestland, H. and Magers, D. (1996). ""Practical usage of sulphur hexafluoride for melt protection in the magnesium die casting industry"" Proceedings of the 53rd International Magnesium Conference, 1996, Ube City, Japan ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.20) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214154 ,2A3 - Limestone and Dolomite Use,2.C.4 - Magnesium production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Primary Magnesium Production ,,Raw Material: Dolomite ,,,,5.13 ,tonne CO2/tonne primary Mg produced ,Equation 4.28 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C4, Sheet 1 of 2, in Annex 1 (page A1.20) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert Judgement by the authors of Section 4.5, Chapter 4, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.19) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214155 ,2A7 - Other (please specify),2.C.4 - Magnesium production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Primary Magnesium Production ,,Raw Material: Magnesite ,,,,2.83 ,tonne CO2/tonne primary Mg produced ,Equation 4.28 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C4, Sheet 1 of 2, in Annex 1 (page A1.20) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert Judgement by the authors of Section 4.5, Chapter 4, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.19) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214156 ,2C5 - Other (please specify),2.C.5 - Lead Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Lead Production ,Source and Furnace Type: Imperial Smelt Furnace (ISF) Production ,,,,,0.59 ,tonne CO2/tonne lead produced ,Equation 4.32 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C5, Sheet 1 of 1, in Annex 1 (page A1.21) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sjardin, M. (2003). CO2 Emission Factors for Non-Energy Use in the Non-Ferrous Metal, Ferroalloys and Inorganics Industry. Copernicus Institute, Utrecht, The Netherlands, June 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.21) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214157 ,2C5 - Other (please specify),2.C.5 - Lead Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Lead Production ,Source and Furnace Type: Direct Smelting (DS) Production ,,,,,0.25 ,tonne CO2/tonne lead produced ,Equation 4.32 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C5, Sheet 1 of 1, in Annex 1 (page A1.21) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sjardin, M. (2003). CO2 Emission Factors for Non-Energy Use in the Non-Ferrous Metal, Ferroalloys and Inorganics Industry. Copernicus Institute, Utrecht, The Netherlands, June 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.21) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214158 ,2C5 - Other (please specify),2.C.5 - Lead Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Lead Production ,Source and Furnace Type: Treatment of Secondary Raw Materials ,,,,,0.2 ,tonne CO2/tonne lead produced ,Equation 4.32 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C5, Sheet 1 of 1, in Annex 1 (page A1.21) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sjardin, M. (2003). CO2 Emission Factors for Non-Energy Use in the Non-Ferrous Metal, Ferroalloys and Inorganics Industry. Copernicus Institute, Utrecht, The Netherlands, June 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.21) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214159 ,2C5 - Other (please specify),2.C.5 - Lead Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Lead Production (default) ,Source and Furnace Type: 80% Imperial Smelt Furnace (ISF) and 20% Direct Smelting (DS) is assumed. - Applicable only in the case that no information is available on lead production by source/furnace type. ,,,,,0.52 ,tonne CO2/tonne lead produced ,Equation 4.32 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C5, Sheet 1 of 1, in Annex 1 (page A1.21) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sjardin, M. (2003). CO2 Emission Factors for Non-Energy Use in the Non-Ferrous Metal, Ferroalloys and Inorganics Industry. Copernicus Institute, Utrecht, The Netherlands, June 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.21) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214160 ,2C5 - Other (please specify),2.C.6 - Zinc Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Zinc Production ,Process: Waelz Kiln ,,,,,3.66 ,tonne CO2/tonne zinc produced ,Equation 4.34 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C6, Sheet 1 of 1, in Annex 1 (page A1.21) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Viklund-White C. (2000). The Use of LCA for the Environmental Evaluation of the Recycling of Galvanized Steel. ISIJ International. Volume 40 No. 3: 292-299. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.24) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214161 ,2C5 - Other (please specify),2.C.6 - Zinc Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Zinc Production ,Process: Pyrometeallurgical (Imperial Smelting Furnace) ,,,,,0.43 ,tonne CO2/tonne zinc produced ,Equation 4.34 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C6, Sheet 1 of 1, in Annex 1 (page A1.21) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sjardin, M. (2003). CO2 Emission Factors for Non-Energy Use in the Non-Ferrous Metal, Ferroalloys and Inorganics Industry. Copernicus Institute, Utrecht, The Netherlands, June 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.24) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214162 ,2C5 - Other (please specify),2.C.6 - Zinc Production,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Emission Factor for Zinc Production (default) ,Process: 60% Imperial Smelting and 40% Waelz Kiln is assumed. - Applicable only in the case that no information is available on zinc production by process. ,,,,,1.72 ,tonne CO2/tonne zinc produced ,Equation 4.33 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2C6, Sheet 1 of 1, in Annex 1 (page A1.21) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Viklund-White C. (2000). The Use of LCA for the Environmental Evaluation of the Recycling of Galvanized Steel. ISIJ International. Volume 40 No. 3: 292-299.; Sjardin, M. (2003). CO2 Emission Factors for Non-Energy Use in the Non-Ferrous Metal, Ferroalloys and Inorganics Industry. Copernicus Institute, Utrecht, The Netherlands, June 2003. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 4, Table 4.24) ",IPCC  +,,,,,,,,,,,,,,,,,,, +114163 ,1A - Fuel Combustion Activities,2.D.1 - Lubricant Use,CARBON DIOXIDE,Lubricants ,,2006 IPCC default ,Fraction of fossil fuel carbon that is Oxidized During Use (ODU factor) ,,Lubricant/type of use: Lubricating oil (motor oil/industrial oils) ,,,,0.2 ,fraction ,Equation 5.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2D1, Sheet 1 of 1, in Annex 1 (page A1.22) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Rinehart, T. (2000). Personal communication between Thomas Rinehart of U.S. Environmental Protection Agency, Office of Solid Waste, and Randall Freed of ICF Consulting, July 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 5, Table 5.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +114164 ,1A - Fuel Combustion Activities,2.D.1 - Lubricant Use,CARBON DIOXIDE,Lubricants ,,2006 IPCC default ,Fraction of fossil fuel carbon that is Oxidized During Use (ODU factor) ,,Lubricant/type of use: Grease ,,,,0.05 ,fraction ,Equation 5.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2D1, Sheet 1 of 1, in Annex 1 (page A1.22) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Rinehart, T. (2000). Personal communication between Thomas Rinehart of U.S. Environmental Protection Agency, Office of Solid Waste, and Randall Freed of ICF Consulting, July 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 5, Table 5.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +114165 ,1A - Fuel Combustion Activities,2.D.1 - Lubricant Use,CARBON DIOXIDE,Lubricants ,,2006 IPCC default ,Fraction of fossil fuel carbon that is Oxidized During Use (ODU factor) [default] ,,Lubricant/type of use: Default - Assuming that 90 percent of the mass of lubricants is oil and 10 percent is grease (excluding the use in 2-stroke engines) ,,,,0.2 ,fraction ,Equation 5.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2D1, Sheet 1 of 1, in Annex 1 (page A1.22) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Rinehart, T. (2000). Personal communication between Thomas Rinehart of U.S. Environmental Protection Agency, Office of Solid Waste, and Randall Freed of ICF Consulting, July 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 5, Table 5.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +114166 ,1A - Fuel Combustion Activities,2.D.2 - Paraffin Wax Use,CARBON DIOXIDE,Paraffin Waxes ,,2006 IPCC default ,Fraction of fossil fuel carbon that is Oxidized During Use (ODU factor) [default] ,,,,,,0.2 ,fraction ,Equation 5.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2D2, Sheet 1 of 1, in Annex 1 (page A1.22) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert Judgement by the authors of Chapter 5, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 5, Section 5.3.2.2, Page 5.12) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214167 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,0.9 ,kg CF4/m^2 of silicon processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E1, Sheet 1 of 1, in Annex 1 (page A1.23) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214168 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,1 ,kg C2F6/m^2 of silicon processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E1, Sheet 1 of 1, in Annex 1 (page A1.23) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214169 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,HFC-23,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,0.04 ,kg CHF3/m^2 of silicon processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E1, Sheet 1 of 1, in Annex 1 (page A1.23) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214170 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C3F8,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,0.05 ,kg C3F8/m^2 of silicon processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E1, Sheet 1 of 1, in Annex 1 (page A1.23) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214171 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Nitrogen Trifluoride,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,0.04 ,kg NF3/m^2 of silicon processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E1, Sheet 1 of 1, in Annex 1 (page A1.23) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214172 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Sulphur Hexafluoride,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,0.2 ,kg SF6/m^2 of silicon processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E1, Sheet 1 of 1, in Annex 1 (page A1.23) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214173 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,CF4,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,0.5 ,g CF4/m^2 of glass processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E2, Sheet 1 of 1, in Annex 1 (page A1.24) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006; Burton, C. S. (2004). ""PFC Uses, Emissions, and Trends in FPD Manufacture: An Update"", draft report prepared for U. S. EPA`s Climate Change Division, June 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214174 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Nitrogen Trifluoride,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,0.9 ,g NF3/m^2 of glass processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E2, Sheet 1 of 1, in Annex 1 (page A1.24) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006; Burton, C. S. (2004). ""PFC Uses, Emissions, and Trends in FPD Manufacture: An Update"", draft report prepared for U. S. EPA`s Climate Change Division, June 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214175 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Sulphur Hexafluoride,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,4 ,g SF6/m^2 of glass processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E2, Sheet 1 of 1, in Annex 1 (page A1.24) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006; Burton, C. S. (2004). ""PFC Uses, Emissions, and Trends in FPD Manufacture: An Update"", draft report prepared for U. S. EPA`s Climate Change Division, June 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214176 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,"See ""Comments from data provider"". ",,5 ,g CF4/m^2 of substrate processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E3, Sheet 2 of 2, in Annex 1 (page A1.25) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from unpublished work of Fthenakis, Alsema and Agostinelli. - Fthenakis, V. (2005). Personal communication to S. Bartos on 5 February 2005 of data tables quantifying historical and current CF4 and C2F6 usage in PV manufacture for U. S. and Europe. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214177 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,C2F6,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,"See ""Comments from data provider"". ",,0.2 ,g CF4/m^2 of substrate processed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E3, Sheet 2 of 2, in Annex 1 (page A1.25) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Adapted from unpublished work of Fthenakis, Alsema and Agostinelli. - Fthenakis, V. (2005). Personal communication to S. Bartos on 5 February 2005 of data tables quantifying historical and current CF4 and C2F6 usage in PV manufacture for U. S. and Europe. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214178 ,2F6 - Other (please specify),2.E.4 - Heat Transfer Fluid,C6F14,,,2006 IPCC default ,"Emission Factor for Fluorinated Compound (FC) Emissions from Evaporation of Heat Transfer Fluids (2006 IPCC Guidelines Tier 1 default: See ""Comments from data provider"") ","See ""Comments from data provider"". ",,,,,0.3 ,kg C6F14/m^2 of silicon consumed ,Equation 6.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2E4, Sheet 1 of 1, in Annex 1 (page A1.25) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Burton, C. S. (2004). ""Uses and Air Emissions of Liquid PFC Heat Transfer Fluids from the Electronics Sector: Initial Findings"", report prepared for U. S. EPA`s Climate Change Division, October 2004.; Tuma, P.E. and Tousignant, L. (2001). ""Reducing Emissions of PFC Heat Transfer Fluids,"" Presented at Semicon West, San Francisco, July 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214179 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.9 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214180 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.6 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214181 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,HFC-23,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.4 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214182 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,HFC-32,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.1 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214183 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C3F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.4 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214184 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,c-C4F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.1 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214185 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"Cleaning method in which the film cleaning-agents formed from NF3 (F-atoms) are produced in a plasma upstream (remote) from the chamber being cleaned. NF3 used in this cleaning process is referred to as ""Remote-NF3"" in the 2006 IPCC Guidelines. Also, see ""Comments from data provider"". ",,,,,0.02 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214186 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. Also, see ""Comments from data provider"". ",,,,,0.2 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214187 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Sulphur Hexafluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.2 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214188 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C2F6 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.2 ,kg CF4/kg C2F6 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214189 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of CHF3 (HFC-23) in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.07 ,kg CF4/kg CHF3 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214190 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of CH2F2 (HFC-32) in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.08 ,kg CF4/kg CH2F2 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214191 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C3F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.1 ,kg CF4/kg C3F8 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214192 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of c-C4F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.1 ,kg CF4/kg c-C4F8 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214193 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of Remote-NF3 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"Cleaning method in which the film cleaning-agents formed from NF3 (F-atoms) are produced in a plasma upstream (remote) from the chamber being cleaned. NF3 used in this cleaning process is referred to as ""Remote-NF3"" in the 2006 IPCC Guidelines. Also, see ""Comments from data provider"". ",,,,,0.02 ,kg CF4/kg NF3 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214194 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of NF3 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. Also, see ""Comments from data provider"". ",,,,,0.09 ,kg CF4/kg NF3 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214195 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C4F6 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.3 ,kg CF4/kg C4F6 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214196 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C5F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.1 ,kg CF4/kg C5F8 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214197 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C4F8O in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.1 ,kg CF4/kg C4F8O ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214198 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of F2 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.02 ,kg CF4/kg F2 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214199 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of COF2 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.02 ,kg CF4/kg COF2 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214200 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of c-C4F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.1 ,kg C2F6/kg c-C4F8 ,Equation 6.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214201 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of C4F6 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.2 ,kg C2F6/kg C4F6 ,Equation 6.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214202 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of C5F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.04 ,kg C2F6/kg C5F8 ,Equation 6.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214203 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C3F8,,,2006 IPCC default ,By-Product Emission Factor for C3F8 Emissions from Use of C4F8O in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.04 ,kg C3F8/kg C4F8O ,Equation 6.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214204 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.7 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214205 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.4 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214206 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,HFC-23,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.4 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214207 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,HFC-32,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.06 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214208 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,c-C4F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.2 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214209 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,"Process type: Etch; An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. ",,,,,0.2 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214210 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Sulphur Hexafluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.2 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214211 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.9 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214212 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.6 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214213 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C3F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.4 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214214 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,c-C4F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214215 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,"Process type: Chemical Vapour Deposition (CVD); Cleaning method in which the film cleaning-agents formed from NF3 (F-atoms) are produced in a plasma upstream (remote) from the chamber being cleaned. NF3 used in this cleaning process is referred to as ""Remote-NF3"" in the 2006 IPCC Guidelines. ",,,,,0.02 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214216 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,"Process type: Chemical Vapour Deposition (CVD); An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. ",,,,,0.2 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214217 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C2F6 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.4 ,kg CF4/kg C2F6 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214218 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of CHF3 (HFC-23) in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.07 ,kg CF4/kg CHF3 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214219 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of CH2F2 (HFC-32) in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.08 ,kg CF4/kg CH2F2 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214220 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of c-C4F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.2 ,kg CF4/kg c-C4F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214221 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C4F6 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.3 ,kg CF4/kg C4F6 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214222 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C5F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.2 ,kg CF4/kg C5F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214223 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of c-C4F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.2 ,kg C2F6/kg c-C4F8 ,Equation 6.9 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214224 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of C4F6 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch (including multi-gas etch processes) ,,,,,0.2 ,kg C2F6/kg C4F6 ,Equation 6.9 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214225 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of C5F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.2 ,kg C2F6/kg C5F8 ,Equation 6.9 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214226 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C2F6 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,kg CF4/kg C2F6 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214227 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C3F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,kg CF4/kg C3F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214228 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of c-C4F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,kg CF4/kg c-C4F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214229 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of Remote-NF3 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,"Process type: Chemical Vapour Deposition (CVD); Cleaning method in which the film cleaning-agents formed from NF3 (F-atoms) are produced in a plasma upstream (remote) from the chamber being cleaned. NF3 used in this cleaning process is referred to as ""Remote-NF3"" in the 2006 IPCC Guidelines. ",,,,,0.02 ,kg CF4/kg NF3 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214230 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of NF3 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,"Process type: Chemical Vapour Deposition (CVD); An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. ",,,,,0.1 ,kg CF4/kg NF3 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214231 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C5F8 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,kg CF4/kg C5F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214232 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C4F8O in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,kg CF4/kg C4F8O ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214233 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of F2 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.02 ,kg CF4/kg F2 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214234 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of COF2 in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.02 ,kg CF4/kg COF2 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214235 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C3F8,,,2006 IPCC default ,By-Product Emission Factor for C3F8 Emissions from Use of C4F8O in Semiconductor Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.04 ,kg C3F8/kg C4F8O ,Equation 6.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214236 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,CF4,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.6 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214237 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,HFC-23,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.2 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214238 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,c-C4F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.1 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214239 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"Cleaning method in which the film cleaning-agents formed from NF3 (F-atoms) are produced in a plasma upstream (remote) from the chamber being cleaned. NF3 used in this cleaning process is referred to as ""Remote-NF3"" in the 2006 IPCC Guidelines. Also, see ""Comments from data provider"". ",,,,,0.03 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214240 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. Also, see ""Comments from data provider"". ",,,,,0.3 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214241 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Sulphur Hexafluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.6 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214242 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of CHF3 (HFC-23) in Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.07 ,kg CF4/kg CHF3 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214243 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of c-C4F8 in Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.009 ,kg CF4/kg c-C4F8 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214244 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,HFC-23,,,2006 IPCC default ,By-Product Emission Factor for CHF3 (HFC-23) Emissions from Use of c-C4F8 in Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.02 ,kg CHF3/kg c-C4F8 ,Equation 6.5 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214245 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of CHF3 (HFC-23) in Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.05 ,kg C2F6/kg CHF3 ,Equation 6.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214246 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,CF4,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.6 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214247 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,HFC-23,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.2 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214248 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,c-C4F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.1 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214249 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Sulphur Hexafluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.3 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214250 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,"Process type: Chemical Vapour Deposition (CVD); Cleaning method in which the film cleaning-agents formed from NF3 (F-atoms) are produced in a plasma upstream (remote) from the chamber being cleaned. NF3 used in this cleaning process is referred to as ""Remote-NF3"" in the 2006 IPCC Guidelines. ",,,,,0.03 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214251 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,"Process type: Chemical Vapour Deposition (CVD); An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. ",,,,,0.3 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214252 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,Sulphur Hexafluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Semiconductor Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.9 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214253 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of CHF3 (HFC-23) in Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.07 ,kg CF4/kg CHF3 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214254 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of c-C4F8 in Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.009 ,kg CF4/kg c-C4F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214255 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,HFC-23,,,2006 IPCC default ,By-Product Emission Factor for CHF3 (HFC-23) Emissions from Use of c-C4F8 in Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.02 ,kg CHF3/kg c-C4F8 ,Equation 6.10 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214256 ,2F6 - Other (please specify),2.E.2 - TFT Flat Panel Display,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of CHF3 (HFC-23) in Thin-Film-Transistor Flat Panel Display (TFT-FPD) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.05 ,kg C2F6/kg CHF3 ,Equation 6.9 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Nishida, H., Marsumura, K., Kurokawa, H., Hoshino, A. and Masui, S. (2005), ""PFC emission-reduction strategy for the LCD industry"", J. Society for Information Display, Vol 13, pp. 841-848 (2005). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214257 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.7 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214258 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,C2F6,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.6 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214259 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,HFC-23,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.4 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214260 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,C3F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.4 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214261 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,c-C4F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.2 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214262 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. Also, see ""Comments from data provider"". ",,,,,0.2 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214263 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,Sulphur Hexafluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2a) ,"See ""Comments from data provider"". ",,,,,0.4 ,fraction ,Equation 6.2 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214264 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C2F6 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,"See ""Comments from data provider"". ",,,,,0.2 ,kg CF4/kg C2F6 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214265 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C3F8 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,"See ""Comments from data provider"". ",,,,,0.2 ,kg CF4/kg C3F8 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214266 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of c-C4F8 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,"See ""Comments from data provider"". ",,,,,0.1 ,kg CF4/kg c-C4F8 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214267 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of NF3 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,"An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. Also, see ""Comments from data provider"". ",,,,,0.05 ,kg CF4/kg NF3 ,Equation 6.3 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214268 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of c-C4F8 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,"See ""Comments from data provider"". ",,,,,0.1 ,kg C2F6/kg c-C4F8 ,Equation 6.4 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214269 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.7 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214270 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,C2F6,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.4 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214271 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,HFC-23,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.4 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214272 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,c-C4F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.2 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214273 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,Sulphur Hexafluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.4 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214274 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,C2F6,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.6 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214275 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,C3F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214276 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,c-C4F8,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214277 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,Nitrogen Trifluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,"Process type: Chemical Vapour Deposition (CVD); An in-situ NF3 cleaning process that is analogous to the process for other cleaning gases like C2F6 and C3F8. NF3 used in this cleaning process is referred to as simply ""NF3"" and distinguished from ""Remote-NF3"" in the 2006 IPCC Guidelines. ",,,,,0.3 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214278 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,Sulphur Hexafluoride,,,2006 IPCC default ,Process Tool Emission Factor for Fluorinated Compound (FC) Emissions from Photovoltaic (PV) Manufacturing (= 1 - Use Rate) (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.4 ,fraction ,Equation 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214279 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C2F6 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.2 ,kg CF4/kg C2F6 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214280 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of c-C4F8 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.1 ,kg CF4/kg c-C4F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214281 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,C2F6,,,2006 IPCC default ,By-Product Emission Factor for C2F6 Emissions from Use of c-C4F8 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Etch ,,,,,0.1 ,kg C2F6/kg c-C4F8 ,Equation 6.9 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214282 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C2F6 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.2 ,kg CF4/kg C2F6 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214283 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of C3F8 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.2 ,kg CF4/kg C3F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214284 ,2F6 - Other (please specify),2.E.3 - Photovoltaics,CF4,,,2006 IPCC default ,By-Product Emission Factor for CF4 Emissions from Use of c-C4F8 in Photovoltaic (PV) Manufacturing (2006 IPCC Guidelines Tier 2b) ,Process type: Chemical Vapour Deposition (CVD) ,,,,,0.1 ,kg CF4/kg c-C4F8 ,Equation 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.5) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214285 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,Destruction Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,"Average values for fuelled combustion, plasma, and catalytic abatement technologies. ",,0.9 ,fraction ,"Equations 6.2, 6.3, 6.7, 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214286 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,Destruction Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,"Average values for fuelled combustion, plasma, and catalytic abatement technologies. ",,0.9 ,fraction ,"Equations 6.2, 6.4, 6.7, 6.9 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214287 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,HFC-23,,,2006 IPCC default ,Destruction Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,"Average values for fuelled combustion, plasma, and catalytic abatement technologies. ",,0.9 ,fraction ,"Equations 6.2, 6.5, 6.7, 6.10 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214288 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C3F8,,,2006 IPCC default ,Destruction Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,"Average values for fuelled combustion, plasma, and catalytic abatement technologies. ",,0.9 ,fraction ,"Equations 6.2, 6.6, 6.7, 6.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214311 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,c-C4F8,,,2006 IPCC default ,Destruction Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,"Average values for fuelled combustion, plasma, and catalytic abatement technologies. ",,0.9 ,fraction ,"Equations 6.2, 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214312 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Nitrogen Trifluoride,,,2006 IPCC default ,Destruction Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,"Average values for fuelled combustion, plasma, and catalytic abatement technologies. ",,0.95 ,fraction ,"Equations 6.2, 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214313 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Sulphur Hexafluoride,,,2006 IPCC default ,Destruction Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,"Average values for fuelled combustion, plasma, and catalytic abatement technologies. ",,0.9 ,fraction ,"Equations 6.2, 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214314 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,CF4,,,2006 IPCC default ,Capture/Recovery Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,Average values for cryogenic and membrane capture and recovery technologies. ,,0.75 ,fraction ,"Equations 6.2, 6.3, 6.7, 6.8 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214315 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,C2F6,,,2006 IPCC default ,Capture/Recovery Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,Average values for cryogenic and membrane capture and recovery technologies. ,,0.9 ,fraction ,"Equations 6.2, 6.4, 6.7, 6.9 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214316 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,HFC-23,,,2006 IPCC default ,Capture/Recovery Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,Average values for cryogenic and membrane capture and recovery technologies. ,,0.9 ,fraction ,"Equations 6.2, 6.5, 6.7, 6.10 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214317 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Sulphur Hexafluoride,,,2006 IPCC default ,Capture/Recovery Efficiency for Electronics Industry Fluorinated Compound (FC) Emission Reduction Technology (2006 IPCC Guidelines Tiers 2a and 2b) ,,,,Average values for cryogenic and membrane capture and recovery technologies. ,,0.9 ,fraction ,"Equations 6.2, 6.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",Not applicable ,"Burton, C. S. (2006). ""Sources and Methods Used to Develop PFC Emission Factors from the Electronics Sector"", report prepared for U. S. EPA`s Climate Change Division, February 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Table 6.6) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214318 ,2F6 - Other (please specify),2.E.1 - Integrated Circuit or Semiconductor,Nitrogen Trifluoride,,,2006 IPCC default ,Fraction of Gas Remaining in Shipping Container (= Heel) After Use ,,,,,,0.10 ,fraction ,Equations 6.2 to 6.11 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Expert judgement by the authors of Chapter 6, Volume 3 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 6, Page 6.16) ",IPCC  +,,2.E.2 - TFT Flat Panel Display,HFC-23,,,,,,,,,,,,,,,, +,,2.E.3 - Photovoltaics,HFC-32,,,,,,,,,,,,,,,, +,,,CF4,,,,,,,,,,,,,,,, +,,,C2F6,,,,,,,,,,,,,,,, +,,,C3F8,,,,,,,,,,,,,,,, +,,,c-C4F8,,,,,,,,,,,,,,,, +,,,Sulphur Hexafluoride,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214342 ,2F6 - Other (please specify),2.F.5 - Solvents,HFE-365mcf3,,,1996 & 2006 IPCC default ,Emission Factor for Uses of Substitutes for Ozone Depleting Substances (ODSs) for Solvent Cleaning (Fraction of Chemical Emitted from Solvents in the Year of Initial Use) ,,,,,,0.5 ,fraction ,Equation 7.5 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2F5, Sheet 1 of 1, in Annex 1 (page A1.28) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 7, Volume 3 of the 2006 IPCC Guidelines; Expert judgement by the authors of Section 3.7 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Section 7.2.2.2, Page 7.24); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Chapter 3, Section 3.7.2.1, Page 3.89) ",IPCC  +,,,HFC-43-10mee,,,,,,,,,,,,,,,, +,,,C6F14,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214345 ,2F6 - Other (please specify),2.F.4 - Aerosols,HFE-245fa1,,,1996 & 2006 IPCC default ,Emission Factor for Uses of Substitutes for Ozone Depleting Substances (ODSs) for Aerosols [Propellants and Solvents] (Fraction of Chemical Emitted from Solvents in the First Year) ,,,,,,0.5 ,fraction ,Equation 7.6 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2F4, Sheet 1 of 1, in Annex 1 (page A1.27) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 7, Volume 3 of the 2006 IPCC Guidelines; Expert judgement by the authors of Section 3.7 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Section 7.3.2.2, Page 7.29); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Chapter 3, Section 3.7.1.1, Page 3.87) ",IPCC  +,,,HFE-365mcf3,,,,,,,,,,,,,,,, +,,,HFC-43-10mee,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214351 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFE-245fa1,,,1996 & 2006 IPCC default ,"Product Lifetime (n), First Year Losses (FYL) and Annual Losses (AL) for HFC emissions from Closed-Cell Foam ",,Foam Type: Closed-cell foam ,,,,n = 20 years; FYL = 10; AL = 4.5 ,% of the original HFC charge/year ,"See Section 7.4.2.1, Chapter 7, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; See Section 3.7.3.1, Chapter 3 of the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories ",Not applicable ,"Gamlen P.H., Lane B.C., Midgley P.M. and Steed J.M (1986). The production and release to the atmosphere of CFCl3 and CF2 Cl2 (chlorofluorocarbons CFC-11 and CFC-12). Atmos. Environ. 20: 1077-1085. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.5); IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Chapter 3, Table 3.17, Page 3.96) ",IPCC  +,,,HFE-365mcf3,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214356 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-134a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: Polyurethane - Integral Skin ,,,,n = 12 years; FYL = 95; AL = 2.5; EOLL = 0 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"IPCC/TEAP (2005). IPCC/TEAP Special Report on Safeguarding the Ozone Layer and the Global Climate System: Issues Related to Hydrofluorocarbons and Perfluorocarbons. Prepared by Working I and III of the Intergovernmental Panel on Climate Change, and the Technology and Economic Assessment Panel [Metz, B., L. Kuijpers, S. Solomon, S. O. Andersen, O. Davidson, J. Pons, D. de Jager, T. Kestin, M. Manning, and L. A. Meyer (eds.)]. Cambridge University Press, Cambridge, United Kingdom and New York, NY, USA, 488 pp. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214357 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-134a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: Polyurethane - Continuous Panel ,,,,n = 50 years; FYL = 10; AL = 0.5; EOLL = 65 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"IPCC/TEAP (2005). IPCC/TEAP Special Report on Safeguarding the Ozone Layer and the Global Climate System: Issues Related to Hydrofluorocarbons and Perfluorocarbons. Prepared by Working I and III of the Intergovernmental Panel on Climate Change, and the Technology and Economic Assessment Panel [Metz, B., L. Kuijpers, S. Solomon, S. O. Andersen, O. Davidson, J. Pons, D. de Jager, T. Kestin, M. Manning, and L. A. Meyer (eds.)]. Cambridge University Press, Cambridge, United Kingdom and New York, NY, USA, 488 pp. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214358 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-134a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: Polyurethane - Discontinuous Panel ,,,,n = 50 years; FYL = 12.5; AL = 0.5; EOLL = 62.5 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"IPCC/TEAP (2005). IPCC/TEAP Special Report on Safeguarding the Ozone Layer and the Global Climate System: Issues Related to Hydrofluorocarbons and Perfluorocarbons. Prepared by Working I and III of the Intergovernmental Panel on Climate Change, and the Technology and Economic Assessment Panel [Metz, B., L. Kuijpers, S. Solomon, S. O. Andersen, O. Davidson, J. Pons, D. de Jager, T. Kestin, M. Manning, and L. A. Meyer (eds.)]. Cambridge University Press, Cambridge, United Kingdom and New York, NY, USA, 488 pp. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214359 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-134a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: Polyurethane - Appliance ,,,,n = 15 years; FYL = 7; AL = 0.5; EOLL = 85.5 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"IPCC/TEAP (2005). IPCC/TEAP Special Report on Safeguarding the Ozone Layer and the Global Climate System: Issues Related to Hydrofluorocarbons and Perfluorocarbons. Prepared by Working I and III of the Intergovernmental Panel on Climate Change, and the Technology and Economic Assessment Panel [Metz, B., L. Kuijpers, S. Solomon, S. O. Andersen, O. Davidson, J. Pons, D. de Jager, T. Kestin, M. Manning, and L. A. Meyer (eds.)]. Cambridge University Press, Cambridge, United Kingdom and New York, NY, USA, 488 pp. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214360 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-134a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: Polyurethane - Injected ,,,,n = 15 years; FYL = 12.5; AL = 0.5; EOLL = 80 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"IPCC/TEAP (2005). IPCC/TEAP Special Report on Safeguarding the Ozone Layer and the Global Climate System: Issues Related to Hydrofluorocarbons and Perfluorocarbons. Prepared by Working I and III of the Intergovernmental Panel on Climate Change, and the Technology and Economic Assessment Panel [Metz, B., L. Kuijpers, S. Solomon, S. O. Andersen, O. Davidson, J. Pons, D. de Jager, T. Kestin, M. Manning, and L. A. Meyer (eds.)]. Cambridge University Press, Cambridge, United Kingdom and New York, NY, USA, 488 pp. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214361 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-134a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: One Component Foam (OCF) ,,,,n = 50 years; FYL = 95; AL = 2.5; EOLL = 0 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Ashford, P. and Jeffs, M. (2004). Development of Emissions Functions for Foams and their use in Emissions Forecasting, ETF Proceedings, April 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214362 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-134a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: Extruded Polystyrene (XPS) ,,,,n = 50 years; FYL = 25; AL = 0.75; EOLL = 37.5 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Vo and Paquet (2004). An Evaluation of Thermal Conductivity over time for Extruded Polystyrene Foams blown with HFC-134a and HCFC-142b, ETF Proceedings, April 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214363 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-134a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: Extruded Polyethylene (PE) ,,,,n = 50 years; FYL = 40; AL = 3; EOLL = 0 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"Ashford, P. and Jeffs, M. (2004). Development of Emissions Functions for Foams and their use in Emissions Forecasting, ETF Proceedings, April 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214370 ,2F6 - Other (please specify),2.F.2 - Foam Blowing Agents,HFC-152a,,,2006 IPCC default ,"Product Lifetime (n), First Year Loss (FYL), Annual Loss (AL) and Maximum Potential End-of-Life Loss (EOLL) for HFC emissions from Foam Blowing ",,Sub-application type: Extruded Polystyrene (XPS) ,,,,n = 50 years; FYL = 50; AL = 25; EOLL = 0 ,% ,Equation 7.7 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"IPCC/TEAP (2005). IPCC/TEAP Special Report on Safeguarding the Ozone Layer and the Global Climate System: Issues Related to Hydrofluorocarbons and Perfluorocarbons. Prepared by Working I and III of the Intergovernmental Panel on Climate Change, and the Technology and Economic Assessment Panel [Metz, B., L. Kuijpers, S. Solomon, S. O. Andersen, O. Davidson, J. Pons, D. de Jager, T. Kestin, M. Manning, and L. A. Meyer (eds.)]. Cambridge University Press, Cambridge, United Kingdom and New York, NY, USA, 488 pp. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.6) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214382 ,2F6 - Other (please specify),2.F.1.a - Refrigeration and Stationary Air Conditioning,HFC-23,,,2006 IPCC default ,"Emission Factors and Parameters for Estimation of HFC Emissions from Refrigeration and Stationary Air Conditioning - Charge [M], Lifetime [d], Initial Emission Factor (losses of HFC charged into new equipment) [k], Operation Emission Factor (annual emission rate accounting for average annual leakage and average annual emissions during servicing) [x], Recovery Efficiency at Disposal [n], and Initial Charge Remaining (residual charge of HFC in equipment being disposed of) [p] ",,Sub-application type: Domestic Refrigeration ,,,,M = 0.05-0.5 kg; d = 12-20 years; k = 0.2-1; x = 0.1-0.5; n = 0-70; p = 0-80 ,% ,Equations 7.12-7.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"UNEP-RTOC (1999). 1998 Report of the Refrigeration, Air Conditioning and Heat Pumps Technical Options Committee, 1998 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-1731-6; UNEP-RTOC (2003). 2002 Report of the Refrigeration, air Conditioning and Heat Pumps Technical Options Committee, 2002 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-2288-3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.9) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214383 ,2F6 - Other (please specify),2.F.1.a - Refrigeration and Stationary Air Conditioning,HFC-23,,,2006 IPCC default ,"Emission Factors and Parameters for Estimation of HFC Emissions from Refrigeration and Stationary Air Conditioning - Charge [M], Lifetime [d], Initial Emission Factor (losses of HFC charged into new equipment) [k], Operation Emission Factor (annual emission rate accounting for average annual leakage and average annual emissions during servicing) [x], Recovery Efficiency at Disposal [n], and Initial Charge Remaining (residual charge of HFC in equipment being disposed of) [p] ",,Sub-application type: Stand-alone Commercial Applications ,,,,M = 0.2-6 kg; d = 10-15 years; k = 0.5-3; x = 1-15; n = 0-70; p = 0-80 ,% ,Equations 7.12-7.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"UNEP-RTOC (1999). 1998 Report of the Refrigeration, Air Conditioning and Heat Pumps Technical Options Committee, 1998 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-1731-6; UNEP-RTOC (2003). 2002 Report of the Refrigeration, air Conditioning and Heat Pumps Technical Options Committee, 2002 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-2288-3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.9) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214384 ,2F6 - Other (please specify),2.F.1.a - Refrigeration and Stationary Air Conditioning,HFC-23,,,2006 IPCC default ,"Emission Factors and Parameters for Estimation of HFC Emissions from Refrigeration and Stationary Air Conditioning - Charge [M], Lifetime [d], Initial Emission Factor (losses of HFC charged into new equipment) [k], Operation Emission Factor (annual emission rate accounting for average annual leakage and average annual emissions during servicing) [x], Recovery Efficiency at Disposal [n], and Initial Charge Remaining (residual charge of HFC in equipment being disposed of) [p] ",,Sub-application type: Medium & Large Commercial Refrigeration ,,,,M = 50-2000 kg; d = 7-15 years; k = 0.5-3; x = 10-35; n = 0-70; p = 50-100 ,% ,Equations 7.12-7.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"UNEP-RTOC (1999). 1998 Report of the Refrigeration, Air Conditioning and Heat Pumps Technical Options Committee, 1998 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-1731-6; UNEP-RTOC (2003). 2002 Report of the Refrigeration, air Conditioning and Heat Pumps Technical Options Committee, 2002 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-2288-3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.9) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214385 ,2F6 - Other (please specify),2.F.1.a - Refrigeration and Stationary Air Conditioning,HFC-23,,,2006 IPCC default ,"Emission Factors and Parameters for Estimation of HFC Emissions from Refrigeration and Stationary Air Conditioning - Charge [M], Lifetime [d], Initial Emission Factor (losses of HFC charged into new equipment) [k], Operation Emission Factor (annual emission rate accounting for average annual leakage and average annual emissions during servicing) [x], Recovery Efficiency at Disposal [n], and Initial Charge Remaining (residual charge of HFC in equipment being disposed of) [p] ",,Sub-application type: Transport Refrigeration ,,,,M = 3-8 kg; d = 6-9 years; k = 0.2-1; x = 15-50; n = 0-70; p = 0-50 ,% ,Equations 7.12-7.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"UNEP-RTOC (1999). 1998 Report of the Refrigeration, Air Conditioning and Heat Pumps Technical Options Committee, 1998 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-1731-6; UNEP-RTOC (2003). 2002 Report of the Refrigeration, air Conditioning and Heat Pumps Technical Options Committee, 2002 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-2288-3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.9) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214386 ,2F6 - Other (please specify),2.F.1.a - Refrigeration and Stationary Air Conditioning,HFC-23,,,2006 IPCC default ,"Emission Factors and Parameters for Estimation of HFC Emissions from Refrigeration and Stationary Air Conditioning - Charge [M], Lifetime [d], Initial Emission Factor (losses of HFC charged into new equipment) [k], Operation Emission Factor (annual emission rate accounting for average annual leakage and average annual emissions during servicing) [x], Recovery Efficiency at Disposal [n], and Initial Charge Remaining (residual charge of HFC in equipment being disposed of) [p] ",,Sub-application type: Industrial Refrigeration including Food Processing and Cold Storage ,,,,M = 10-10000 kg; d = 15-30 years; k = 0.5-3; x = 7-25; n = 0-90; p = 50-100 ,% ,Equations 7.12-7.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"UNEP-RTOC (1999). 1998 Report of the Refrigeration, Air Conditioning and Heat Pumps Technical Options Committee, 1998 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-1731-6; UNEP-RTOC (2003). 2002 Report of the Refrigeration, air Conditioning and Heat Pumps Technical Options Committee, 2002 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-2288-3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.9) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214387 ,2F6 - Other (please specify),2.F.1.a - Refrigeration and Stationary Air Conditioning,HFC-23,,,2006 IPCC default ,"Emission Factors and Parameters for Estimation of HFC Emissions from Refrigeration and Stationary Air Conditioning - Charge [M], Lifetime [d], Initial Emission Factor (losses of HFC charged into new equipment) [k], Operation Emission Factor (annual emission rate accounting for average annual leakage and average annual emissions during servicing) [x], Recovery Efficiency at Disposal [n], and Initial Charge Remaining (residual charge of HFC in equipment being disposed of) [p] ",,Sub-application type: Chillers ,,,,M = 10-2000 kg; d = 15-30 years; k = 0.2-1; x = 2-15; n = 0-95; p = 80-100 ,% ,Equations 7.12-7.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"UNEP-RTOC (1999). 1998 Report of the Refrigeration, Air Conditioning and Heat Pumps Technical Options Committee, 1998 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-1731-6; UNEP-RTOC (2003). 2002 Report of the Refrigeration, air Conditioning and Heat Pumps Technical Options Committee, 2002 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-2288-3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.9) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214388 ,2F6 - Other (please specify),2.F.1.a - Refrigeration and Stationary Air Conditioning,HFC-23,,,2006 IPCC default ,"Emission Factors and Parameters for Estimation of HFC Emissions from Refrigeration and Stationary Air Conditioning - Charge [M], Lifetime [d], Initial Emission Factor (losses of HFC charged into new equipment) [k], Operation Emission Factor (annual emission rate accounting for average annual leakage and average annual emissions during servicing) [x], Recovery Efficiency at Disposal [n], and Initial Charge Remaining (residual charge of HFC in equipment being disposed of) [p] ",,"Sub-application type: Residential and Commercial Air Conditioning (A/C), including Heat Pumps ",,,,M = 0.5-100 kg; d = 10-20 years; k = 0.2-1; x = 1-10; n = 0-80; p = 0-80 ,% ,Equations 7.12-7.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"UNEP-RTOC (1999). 1998 Report of the Refrigeration, Air Conditioning and Heat Pumps Technical Options Committee, 1998 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-1731-6; UNEP-RTOC (2003). 2002 Report of the Refrigeration, air Conditioning and Heat Pumps Technical Options Committee, 2002 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-2288-3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.9) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214389 ,2F6 - Other (please specify),2.F.1.b - Mobile Air Conditioning,HFC-23,,,2006 IPCC default ,"Emission Factors and Parameters for Estimation of HFC Emissions from Refrigeration and Stationary Air Conditioning - Charge [M], Lifetime [d], Initial Emission Factor (losses of HFC charged into new equipment) [k], Operation Emission Factor (annual emission rate accounting for average annual leakage and average annual emissions during servicing) [x], Recovery Efficiency at Disposal [n], and Initial Charge Remaining (residual charge of HFC in equipment being disposed of) [p] ",,Sub-application type: Mobile Air Conditioning (A/C) ,,,,M = 0.5-1.5 kg; d = 9-16 years; k = 0.2-0.5; x = 10-20; n = 0-50; p = 0-50 ,% ,Equations 7.12-7.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Not applicable ,"UNEP-RTOC (1999). 1998 Report of the Refrigeration, Air Conditioning and Heat Pumps Technical Options Committee, 1998 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-1731-6; UNEP-RTOC (2003). 2002 Report of the Refrigeration, air Conditioning and Heat Pumps Technical Options Committee, 2002 Assessment, UNEP, Ozone Secretariat, Nairobi, Kenya, ISBN 92-807-2288-3 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 7, Table 7.9) ",IPCC  +,,,HFC-32,,,,,,,,,,,,,,,, +,,,HFC-125,,,,,,,,,,,,,,,, +,,,HFC-134a,,,,,,,,,,,,,,,, +,,,HFC-152a,,,,,,,,,,,,,,,, +,,,HFC-143a,,,,,,,,,,,,,,,, +,,,HFC-227ea,,,,,,,,,,,,,,,, +,,,HFC-236fa,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +214446 ,2F6 - Other (please specify),2.G.1.a - Manufacture of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Manufacturing Emission Factor for Emissions from Electrical Equipment (Emission Factor for Manufacturing Phase) ,Sealed Pressure Electrical Equipment (MV Switchgear) [MV Switchgear = Medium Voltage Switchgear for rated operating voltages above 1000 Volts and up to 52000 Volts; Based on technologies and practices in place in 1995 ,,Europe ,No mitigation measures implemented ,,0.07 ,fraction [amount of gas emitted per amount of gas consumed] ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 1 of 5, in Annex 1 (page A1.29) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Ecofys (2005). Reductions of SF6 Emissions from High and Medium Voltage Electrical Equipment in Europe, Final Report to CAPIEL, S, Wartmann and J. Harnisch, June 28, 2005 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214447 ,2F6 - Other (please specify),2.G.1.b - Use of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Equipment Use Emission Factor for Emissions from Electrical Equipment (Emission Factor for Use Phase) ,Sealed Pressure Electrical Equipment (MV Switchgear) [MV Switchgear = Medium Voltage Switchgear for rated operating voltages above 1000 Volts and up to 52000 Volts; Based on technologies and practices in place in 1995 ,,Europe ,No mitigation measures implemented ,,0.002 ,fraction [amount of gas emitted per year per nameplate capacity of all equipment ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 3 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Ecofys (2005). Reductions of SF6 Emissions from High and Medium Voltage Electrical Equipment in Europe, Final Report to CAPIEL, S, Wartmann and J. Harnisch, June 28, 2005 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214448 ,2F6 - Other (please specify),2.G.1.c - Disposal of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,"Fraction of Charge Remaining at Retirement (Emission Factor for Disposal Phase), and Lifetime of Equipment ",Sealed Pressure Electrical Equipment (MV Switchgear) [MV Switchgear = Medium Voltage Switchgear for rated operating voltages above 1000 Volts and up to 52000 Volts; Based on technologies and practices in place in 1995 ,,Europe ,No mitigation measures implemented ,,0.93 [Lifetime: >35 years] ,fraction [amount of gas emitted per nameplate capacity of all equipment installe ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 4 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Ecofys (2005). Reductions of SF6 Emissions from High and Medium Voltage Electrical Equipment in Europe, Final Report to CAPIEL, S, Wartmann and J. Harnisch, June 28, 2005 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214449 ,2F6 - Other (please specify),2.G.1.a - Manufacture of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Manufacturing Emission Factor for Emissions from Electrical Equipment (Emission Factor for Manufacturing Phase) ,Sealed Pressure Electrical Equipment (MV Switchgear) [MV Switchgear = Medium Voltage Switchgear for rated operating voltages above 1000 Volts and up to 52000 Volts; Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.29 ,fraction [amount of gas emitted per amount of gas consumed] ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 1 of 5, in Annex 1 (page A1.29) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214450 ,2F6 - Other (please specify),2.G.1.b - Use of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Equipment Use Emission Factor for Emissions from Electrical Equipment (Emission Factor for Use Phase) ,Sealed Pressure Electrical Equipment (MV Switchgear) [MV Switchgear = Medium Voltage Switchgear for rated operating voltages above 1000 Volts and up to 52000 Volts; Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.007 ,fraction [amount of gas emitted per year per nameplate capacity of all equipment ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 3 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214451 ,2F6 - Other (please specify),2.G.1.c - Disposal of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,"Fraction of Charge Remaining at Retirement (Emission Factor for Disposal Phase), and Lifetime of Equipment ",Sealed Pressure Electrical Equipment (MV Switchgear) [MV Switchgear = Medium Voltage Switchgear for rated operating voltages above 1000 Volts and up to 52000 Volts; Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.95 [Lifetime: Unknown (Not Reported)] ,fraction [amount of gas emitted per nameplate capacity of all equipment installe ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 4 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.2) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214452 ,2F6 - Other (please specify),2.G.1.a - Manufacture of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Manufacturing Emission Factor for Emissions from Electrical Equipment (Emission Factor for Manufacturing Phase) ,Closed Pressure Electrical Equipment (HV Switchgear) [HV Switchgear = High Voltage Switchgear for rated operating voltages above 52000 Volts; Based on technologies and practices in place in 1995 ,,Europe ,No mitigation measures implemented ,,0.085 ,fraction [amount of gas emitted per amount of gas consumed] ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 1 of 5, in Annex 1 (page A1.29) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Ecofys (2005). Reductions of SF6 Emissions from High and Medium Voltage Electrical Equipment in Europe, Final Report to CAPIEL, S, Wartmann and J. Harnisch, June 28, 2005 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214453 ,2F6 - Other (please specify),2.G.1.b - Use of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Equipment Use Emission Factor for Emissions from Electrical Equipment (Emission Factor for Use Phase) ,Closed Pressure Electrical Equipment (HV Switchgear) [HV Switchgear = High Voltage Switchgear for rated operating voltages above 52000 Volts; Based on technologies and practices in place in 1995 ,,Europe ,No mitigation measures implemented ,,0.026 ,fraction [amount of gas emitted per year per nameplate capacity of all equipment ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 3 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Ecofys (2005). Reductions of SF6 Emissions from High and Medium Voltage Electrical Equipment in Europe, Final Report to CAPIEL, S, Wartmann and J. Harnisch, June 28, 2005 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214454 ,2F6 - Other (please specify),2.G.1.c - Disposal of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,"Fraction of Charge Remaining at Retirement (Emission Factor for Disposal Phase), and Lifetime of Equipment ",Closed Pressure Electrical Equipment (HV Switchgear) [HV Switchgear = High Voltage Switchgear for rated operating voltages above 52000 Volts; Based on technologies and practices in place in 1995 ,,Europe ,No mitigation measures implemented ,,0.95 [Lifetime: >35 years] ,fraction [amount of gas emitted per nameplate capacity of all equipment installe ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 4 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Ecofys (2005). Reductions of SF6 Emissions from High and Medium Voltage Electrical Equipment in Europe, Final Report to CAPIEL, S, Wartmann and J. Harnisch, June 28, 2005 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214455 ,2F6 - Other (please specify),2.G.1.a - Manufacture of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Manufacturing Emission Factor for Emissions from Electrical Equipment (Emission Factor for Manufacturing Phase) ,Closed Pressure Electrical Equipment (HV Switchgear) [HV Switchgear = High Voltage Switchgear for rated operating voltages above 52000 Volts; Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.29 ,fraction [amount of gas emitted per amount of gas consumed] ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 1 of 5, in Annex 1 (page A1.29) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214456 ,2F6 - Other (please specify),2.G.1.b - Use of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Equipment Use Emission Factor for Emissions from Electrical Equipment (Emission Factor for Use Phase) ,Closed Pressure Electrical Equipment (HV Switchgear) [HV Switchgear = High Voltage Switchgear for rated operating voltages above 52000 Volts; Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.007 ,fraction [amount of gas emitted per year per nameplate capacity of all equipment ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 3 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214457 ,2F6 - Other (please specify),2.G.1.c - Disposal of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,"Fraction of Charge Remaining at Retirement (Emission Factor for Disposal Phase), and Lifetime of Equipment ",Closed Pressure Electrical Equipment (HV Switchgear) [HV Switchgear = High Voltage Switchgear for rated operating voltages above 52000 Volts; Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.95 [Lifetime: Unknown (Not Reported)] ,fraction [amount of gas emitted per nameplate capacity of all equipment installe ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 4 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214458 ,2F6 - Other (please specify),2.G.1.b - Use of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Equipment Use Emission Factor for Emissions from Electrical Equipment (Emission Factor for Use Phase) ,Closed Pressure Electrical Equipment (HV Switchgear) [HV Switchgear = High Voltage Switchgear for rated operating voltages above 52000 Volts; Based on technologies and practices in place in 1995 ,,USA ,No mitigation measures implemented ,,0.14 ,fraction [amount of gas emitted per nameplate capacity of all equipment installe ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 3 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","U.S. Inventory of Greenhouse Gases and Sinks, 1990-2002. (U.S. EPA, 2004). Value is from 1999, first year for which representative country-specific data were available. [U.S. EPA (2004). U.S. Inventory of Greenhouse Gases and Sinks, 1990-2002. U.S. Environmental Protection Agency, April, 2004.] ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.3) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214459 ,2F6 - Other (please specify),2.G.1.a - Manufacture of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Manufacturing Emission Factor for Emissions from Electrical Equipment (Emission Factor for Manufacturing Phase) ,Gas Insulated Transformers (GIT); Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.29 ,fraction [amount of gas emitted per amount of gas consumed] ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 1 of 5, in Annex 1 (page A1.29) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214460 ,2F6 - Other (please specify),2.G.1.b - Use of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,Equipment Use Emission Factor for Emissions from Electrical Equipment (Emission Factor for Use Phase) ,Gas Insulated Transformers (GIT); Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.007 ,fraction [amount of gas emitted per year per nameplate capacity of all equipment ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 3 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214461 ,2F6 - Other (please specify),2.G.1.c - Disposal of Electrical Equipment,Sulphur Hexafluoride,,,2006 IPCC default ,"Fraction of Charge Remaining at Retirement (Emission Factor for Disposal Phase), and Lifetime of Equipment ",Gas Insulated Transformers (GIT); Based on technologies and practices in place in 1995 ,,Japan ,No mitigation measures implemented ,,0.95 [Lifetime: Unknown (Not Reported)] ,fraction [amount of gas emitted per nameplate capacity of all equipment installe ,Equation 8.1 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G1, Sheet 4 of 5, in Annex 1 (page A1.30) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Based on data reported by the Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA); FEPC and JEMA (2004). Federation of Electric Power Companies (FEPC) and the Japan Electrical Manufacturers` Association (JEMA), ""Japanese Emission Factors."" (Personal communication from Mr. Kiyoshi Saitoh of Japan Electrical Manufacturers Association (JEMA) to Mr. Kiyoto Tanabe, IPCC Technical Support Unit, November, 2004.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.4) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214462 ,2F6 - Other (please specify),2.G.2.a - Military Applications,Sulphur Hexafluoride,,,2006 IPCC default ,Emission Factor for SF6 Emissions from AWACS ,Airborne Warning and Control System (AWACS) ,,,,,740 ,kg/plane/year ,Equation 8.12 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 1 of 7, in Annex 1 (page A1.31) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Schwarz, W. (2005). Emissions, Activity Data, and Emission Factors of Fluorinated Greenhouse Gases (F-Gases) in Germany 1995-2002. Research Report 201 41 261/01, UBA-FB 000811/e, Umweltbundesamt, Berlin. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.7) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214463 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,SF6 Use Factor for Calculation of SF6 Emissions from Particle Accelerators [Fraction of university and research particle accelerators that use SF6 as an insulator] ,University and Research Particle Accelerator ,,,,,0.33 ,fraction ,Equation 8.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 2 of 7, in Annex 1 (page A1.31) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 8.3, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Page 8.28) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214464 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,SF6 Charge Factor for Calculation of SF6 Emissions from Particle Accelerators [Average SF6 charge in an accelerator] ,University and Research Particle Accelerator ,,,,,2400 ,kg/accelerator ,Equation 8.14 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 2 of 7, in Annex 1 (page A1.31) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 8.3, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Page 8.28) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214465 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,Emission Factor for SF6 Emissions from Particle Accelerators ,University and Research Particle Accelerator ,,,,,0.07 ,fraction ,Equations 8.14 and 8.15 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 2 of 7, in Annex 1 (page A1.31) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 8.3, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Page 8.28) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214466 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,SF6 Charge Factor for Calculation of SF6 Emissions from Particle Accelerators [Average SF6 charge in an accelerator] ,Industrial Particle Accelerators - high voltage (0.3-23 MV) ,,,,,1300 ,kg/accelerator ,Equation 8.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 3 of 7, in Annex 1 (page A1.32) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Schwarz, W. (2005). Emissions, Activity Data, and Emission Factors of Fluorinated Greenhouse Gases (F-Gases) in Germany 1995-2002. Research Report 201 41 261/01, UBA-FB 000811/e, Umweltbundesamt, Berlin. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.9) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214467 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,SF6 Charge Factor for Calculation of SF6 Emissions from Particle Accelerators [Average SF6 charge in an accelerator] ,Industrial Particle Accelerators - low voltage (<0.3 MV) ,,,,,115 ,kg/accelerator ,Equation 8.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 3 of 7, in Annex 1 (page A1.32) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Schwarz, W. (2005). Emissions, Activity Data, and Emission Factors of Fluorinated Greenhouse Gases (F-Gases) in Germany 1995-2002. Research Report 201 41 261/01, UBA-FB 000811/e, Umweltbundesamt, Berlin. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.9) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214468 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,SF6 Charge Factor for Calculation of SF6 Emissions from Particle Accelerators [Average SF6 charge in an accelerator] ,Medical Particle Accelerators (Radiotherapy) ,,,,,0.5 ,kg/accelerator ,Equation 8.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 3 of 7, in Annex 1 (page A1.32) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Schwarz, W. (2005). Emissions, Activity Data, and Emission Factors of Fluorinated Greenhouse Gases (F-Gases) in Germany 1995-2002. Research Report 201 41 261/01, UBA-FB 000811/e, Umweltbundesamt, Berlin. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.9) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214469 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,Emission Factor for SF6 Emissions from Particle Accelerators ,Industrial Particle Accelerators - high voltage (0.3-23 MV) ,,,,,0.07 ,fraction ,Equation 8.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 3 of 7, in Annex 1 (page A1.32) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Schwarz, W. (2005). Emissions, Activity Data, and Emission Factors of Fluorinated Greenhouse Gases (F-Gases) in Germany 1995-2002. Research Report 201 41 261/01, UBA-FB 000811/e, Umweltbundesamt, Berlin. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.10) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214470 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,Emission Factor for SF6 Emissions from Particle Accelerators ,Industrial Particle Accelerators - low voltage (<0.3 MV) ,,,,,0.013 ,fraction ,Equation 8.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 3 of 7, in Annex 1 (page A1.32) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Schwarz, W. (2005). Emissions, Activity Data, and Emission Factors of Fluorinated Greenhouse Gases (F-Gases) in Germany 1995-2002. Research Report 201 41 261/01, UBA-FB 000811/e, Umweltbundesamt, Berlin. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.10) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214471 ,2F6 - Other (please specify),2.G.2.b - Accelerators,Sulphur Hexafluoride,,,2006 IPCC default ,Emission Factor for SF6 Emissions from Particle Accelerators ,Medical Particle Accelerators (Radiotherapy) ,,,,,2.0 ,fraction ,Equation 8.18 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 3 of 7, in Annex 1 (page A1.32) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Schwarz, W. (2005). Emissions, Activity Data, and Emission Factors of Fluorinated Greenhouse Gases (F-Gases) in Germany 1995-2002. Research Report 201 41 261/01, UBA-FB 000811/e, Umweltbundesamt, Berlin. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Table 8.10) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214472 ,2F6 - Other (please specify),2.G.2.c - Other (please specify),Sulphur Hexafluoride,,,2006 IPCC default ,Assembly Emission Factor for SF6 Emissions from Sound-Proof Glazing (Emissions when filling double glazed windows with SF6) ,Sound-Proof Glazing (Double-glazed sound-proof windows) ,,,,,0.33 ,fraction [amount of gas emitted per amount of gas purchased to fill windows asse ,Equation 8.20 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 5 of 7, in Annex 1 (page A1.33) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Schwarz, W. and Leisewitz, A. (1999). Emissions and reduction potentials of HFCs, PFCs, and SF6 in Germany. Report UBA-FB 298 41 256, Umweltbundesamt, Berlin. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Page 8.31) ",IPCC  +,,,,,,,,,,,,,,,,,,, +214473 ,2F6 - Other (please specify),2.G.2.c - Other (please specify),Sulphur Hexafluoride,,,2006 IPCC default ,Leakage Emission Factor for SF6 Emissions from Sound-Proof Glazing (Annual leakage rate including glass breakage of SF6 from double-glazed sound-proof windows) ,Sound-Proof Glazing (Double-glazed sound-proof windows) ,,,,,0.01 ,fraction [amount of gas emitted per capacity of existing windows] ,Equation 8.21 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G2, Sheet 5 of 7, in Annex 1 (page A1.33) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 8.3, Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Page 8.31) ",IPCC  +,,,,,,,,,,,,,,,,,,, +314474 ,3D - Other,2.G.3.a - Medical Applications,NITROUS OXIDE,,,2006 IPCC default ,Emission Factor for N2O Emissions from Medical Applications ,"Anaesthetic use, Analgestic use and Veterinary use ",,,,,1.0 ,fraction ,Equation 8.24 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G3, Sheet 1 of 2, in Annex 1 (page A1.34) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 8, Section 8.4, Volume 3 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Page 8.36) ",IPCC  +,,,,,,,,,,,,,,,,,,, +314475 ,3D - Other,2.G.3.b - Propellant for pressure and aerosol products,NITROUS OXIDE,,,2006 IPCC default ,Emission Factor for N2O Emissions from Propellant for Pressure and Aerosol Products ,"Propellant in aerosol products primarily in food industry. Typical usage is to make whipped cream, where cartridges filled with N2O are used to blow the cream into foam. ",,,,,1.0 ,fraction ,Equation 8.24 in Volume 3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"2G3, Sheet 1 of 2, in Annex 1 (page A1.34) of Volume 3, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 8, Section 8.4, Volume 3 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories (Volume 3, Chapter 8, Page 8.36) ",IPCC  +,,,,,,,,,,,,,,,,,,, +614476 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Eastern Asia ,,,0.37 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614477 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,South-Central Asia ,,,0.21 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614478 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,South-East Asia ,,,0.27 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614479 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Africa ,,Data not available for regions of Africa ,0.29 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614480 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Eastern Europe ,,,0.38 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614481 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Northern Europe ,,,0.64 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614482 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Southern Europe ,,,0.52 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614483 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Western Europe ,,,0.56 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614484 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Caribbean ,,,0.49 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614485 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Central America ,,,0.21 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614486 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,South America ,,,0.26 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614487 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,North America ,,,0.65 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614488 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW Generation Rate ,,Wet waste ,Oceania ,,Based on data from Australia and New Zealand only ,0.69 ,tonnes/cap/yr ,,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614489 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Eastern Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.55, incinerated = 0.26, composted = 0.01, and other MSW management unspecified = 0.18 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614490 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South-Central Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.74, composted = 0.05, and other MSW management unspecified = 0.21 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614491 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South-East Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.59, incinerated = 0.09, composted = 0.05, and other MSW management unspecified = 0.27 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614492 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Africa ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.69, and other MSW management unspecified = 0.31 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614493 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Eastern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.90, incinerated = 0.04, composted = 0.01, and other MSW management unspecified = 0.02 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614494 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Northern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.47, incinerated =0.24, composted = 0.08, and other MSW management unspecified = 0.20 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614495 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Southern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.85, incinerated =0.05, composted = 0.05, and other MSW management unspecified = 0.05 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614496 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Western Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.47, incinerated =0.22, composted = 0.15, and other MSW management unspecified = 0.15 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614497 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Caribbean ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.83, incinerated =0.02, and other MSW management unspecified = 0.15 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614498 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Central America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.50, and other MSW management unspecified = 0.50 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614499 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.54, incinerate =0.01, composted = 0.003, and other MSW management unspecified = 0.46 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614500 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,North America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.58, incinerate =0.06, composted = 0.06, and other MSW management unspecified = 0.29 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614501 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Oceania ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.85, and other MSW management unspecified = 0.15 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ","4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2. ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614502 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 26.2, paper and cardboard = 18.8, wood = 3.5, textiles = 3.5, rubber and leather = 1.0, plastics = 14.3, metal = 2.7, glass (and pottery and china) = 3.1, other = 7.4 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614503 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South-Central Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 40.3, paper and cardboard = 11.3 wood = 7.9, textiles = 2.5, rubber and leather = 0.8, plastics = 6.4, metal = 3.8, glass (and pottery and china) = 3.5, other = 21.9 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614504 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South-Eastern Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.5, paper and cardboard = 12.9, wood = 9.9, textiles = 2.7, rubber and leather = 0.9, plastics = 7.2, metal = 3.3, glass (and pottery and china) = 4.0, other = 16.3 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614505 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Asia & Middle East ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 41.1, paper and cardboard = 18.0, wood = 9.8, textiles = 2.9, rubber and leather = 0.6, plastics = 6.3, metal = 1.3, glass (and pottery and china) = 2.2, other = 5.4 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614506 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 53.9, paper and cardboard = 7.7, wood = 7.0, textiles = 1.7, rubber and leather = 1.1, plastics = 5.5, metal = 1.8, glass (and pottery and china) = 2.3, other = 11.6 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614507 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Middle Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.4, paper and cardboard = 16.8, wood = 6.5, textiles = 2.5, rubber and leather = --, plastics = 4.5, metal = 3.5, glass (and pottery and china) = 2.0, other = 1.5 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614508 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Northern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 51.1, paper and cardboard = 16.5, wood = 2, textiles = 2.5, rubber and leather = --, plastics = 4.5, metal = 3.5, glass (and pottery and china) = 2, other = 1.5 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614509 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Southern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 23, paper and cardboard = 25, wood = 15, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614510 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 40.4, paper and cardboard = 9.8, wood = 4.4, textiles = 1.0, rubber and leather = --, plastics = 3.0, metal = 1.0, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614511 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 30.1, paper and cardboard = 21.8, wood = 7.5, textiles = 4.7, rubber and leather = 1.4, plastics = 6.2, metal = 3.6, glass (and pottery and china) = 10.0, other = 14.6 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614512 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Northern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 23.8, paper and cardboard = 30.6, wood = 10.0, textiles = 2.0, rubber and leather = --, plastics = 13.0, metal = 7.0, glass (and pottery and china) = 8.0, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614513 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Southern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 36.9, paper and cardboard = 17.0, wood = 10.6, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614514 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 24.2, paper and cardboard = 27.5, wood = 11.0, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614515 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Oceania: Australia and New Zealand ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 36.0, paper and cardboard = 30.0, wood = 24.0, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614516 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Oceania: except for Australia and New Zealand ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 67.5, paper and cardboard = 6.0, wood = 2.5, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614517 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Caribbean ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 46.9, paper and cardboard = 17.0, wood = 2.4, textiles = 5.1, rubber and leather = 1.9, plastics = 9.9, metal = 5.0, glass (and pottery and china) = 5.7, other = 3.5 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614518 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Central America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.8, paper and cardboard = 13.7, wood = 13.5, textiles = 2.6, rubber and leather = 1.8, plastics = 6.7, metal = 2.6, glass (and pottery and china) = 3.7, other = 12.3 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614519 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 44.9, paper and cardboard = 17.1, wood = 4.7, textiles = 2.6, rubber and leather = 0.7, plastics = 10.8, metal = 2.9, glass (and pottery and china) = 3.3, other = 13.0 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614520 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,North America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 33.9, paper and cardboard = 23.2, wood = 6.2, textiles = 3.9, rubber and leather = 1.4, plastics = 8.5, metal = 4.6, glass (and pottery and china) = 6.5, other = 9.8 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,"Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614521 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) ,"Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,15 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3, 4C1: Equation 5.4, in Chapter 5 in Vol.5, of 2006 Guidelines. ","4A:IPCC Waste model in 2006 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614522 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) ,Industry type: Textile ,in wet waste produced ,,,,24 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3, 4C1: Equation 5.4, in Chapter 5 in Vol.5, of 2006 Guidelines. ","4A:IPCC Waste model in 2006 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614523 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) ,Industry type: Wood and wood products ,in wet waste produced ,,,,43 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3, 4C1: Equation 5.4, in Chapter 5 in Vol.5, of 2006 Guidelines. ","4A:IPCC Waste model in 2006 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614524 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) ,Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,40 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3, 4C1: Equation 5.4, in Chapter 5 in Vol.5, of 2006 Guidelines. ","4A:IPCC Waste model in 2006 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614525 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) ,Industry type: Rubber ,in wet waste produced ,,,,39 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3, 4C1: Equation 5.4, in Chapter 5 in Vol.5, of 2006 Guidelines. ","4A:IPCC Waste model in 2006 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614526 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) ,Industry type: Construction and demolition ,in wet waste produced ,,,,4 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3, 4C1: Equation 5.4, in Chapter 5 in Vol.5, of 2006 Guidelines. ","4A:IPCC Waste model in 2006 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614527 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) ,Industry type: Other ,in wet waste produced ,,,,1 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3, 4C1: Equation 5.4, in Chapter 5 in Vol.5, of 2006 Guidelines. ","4A:IPCC Waste model in 2006 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614528 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) in clinical waste ,Clinical waste ,in wet waste produced ,,,Clinical waste ,15 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3, 4C1: Equation 5.4, in Chapter 5 in Vol.5, of 2006 Guidelines. ","4A:IPCC Waste model in 2006 Guidelines, ",Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614529 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Paper/cardboard ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",90 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614530 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Textile ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",80 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614531 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Food waste ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614532 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Wood ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",85 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614533 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Garden and Park waste ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614534 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Nappies ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614535 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Rubber and Leather ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",84 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614536 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Plastics ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614537 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Metal ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614538 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Glass ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614539 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,"Other, inert waste ",based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",90 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614540 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,60 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614541 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,20 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614542 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Wood and wood products ,in wet waste produced ,,,,15 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614543 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,10 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614544 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Petroleum products, Solvents, Plastics ",in wet waste produced ,,,,0 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614545 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,16 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614546 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,0 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614547 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,10 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614548 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Water content in clinical waste ,clinical waste ,in wet waste produced ,,,,35 ,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,"Table 2.6, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614549 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,METHANE,,,2006 IPCC default ,Water content in hazardous waste ,hazardous waste ,in wet waste produced ,,,,,% ,Category code: 4C: ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,"Table 2.6, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614563 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Eastern Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.55, incinerated = 0.26, composted = 0.01, and other MSW management unspecified = 0.18 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614564 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South-Central Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.74, composted = 0.05, and other MSW management unspecified = 0.21 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614565 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South-East Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.59, incinerated = 0.09, composted = 0.05, and other MSW management unspecified = 0.27 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614566 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Africa ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.69, and other MSW management unspecified = 0.31 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614567 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Eastern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.90, incinerated = 0.04, composted = 0.01, and other MSW management unspecified = 0.02 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614568 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Northern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.47, incinerated =0.24, composted = 0.08, and other MSW management unspecified = 0.20 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614569 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Southern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.85, incinerated =0.05, composted = 0.05, and other MSW management unspecified = 0.05 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614570 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Western Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.47, incinerated =0.22, composted = 0.15, and other MSW management unspecified = 0.15 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614571 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Caribbean ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.83, incinerated =0.02, and other MSW management unspecified = 0.15 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614572 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Central America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.50, and other MSW management unspecified = 0.50 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614573 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.54, incinerate =0.01, composted = 0.003, and other MSW management unspecified = 0.46 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614574 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,North America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.58, incinerate =0.06, composted = 0.06, and other MSW management unspecified = 0.29 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614575 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Oceania ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.85, and other MSW management unspecified = 0.15 ",fraction ,"Category code: 4A: Equation 3.2 in page 3.9, 4B:Equation 4.1 in page 4.5, 4C: Equation 5.4 in page 5.12 in Vol. 5 of 2006 Guidelines, Equation 5.3 in Chapter 5 of GPG2000, Equation 1 in page 6.3 in Vol.3 of 1996 Guidelines. ",Category 4C1and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2. ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614576 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 26.2, paper and cardboard = 18.8, wood = 3.5, textiles = 3.5, rubber and leather = 1.0, plastics = 14.3, metal = 2.7, glass (and pottery and china) = 3.1, other = 7.4 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614577 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South-Central Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 40.3, paper and cardboard = 11.3 wood = 7.9, textiles = 2.5, rubber and leather = 0.8, plastics = 6.4, metal = 3.8, glass (and pottery and china) = 3.5, other = 21.9 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614578 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South-Eastern Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.5, paper and cardboard = 12.9, wood = 9.9, textiles = 2.7, rubber and leather = 0.9, plastics = 7.2, metal = 3.3, glass (and pottery and china) = 4.0, other = 16.3 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614579 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Asia & Middle East ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 41.1, paper and cardboard = 18.0, wood = 9.8, textiles = 2.9, rubber and leather = 0.6, plastics = 6.3, metal = 1.3, glass (and pottery and china) = 2.2, other = 5.4 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614580 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 53.9, paper and cardboard = 7.7, wood = 7.0, textiles = 1.7, rubber and leather = 1.1, plastics = 5.5, metal = 1.8, glass (and pottery and china) = 2.3, other = 11.6 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614581 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Middle Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.4, paper and cardboard = 16.8, wood = 6.5, textiles = 2.5, rubber and leather = --, plastics = 4.5, metal = 3.5, glass (and pottery and china) = 2.0, other = 1.5 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614582 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Northern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 51.1, paper and cardboard = 16.5, wood = 2, textiles = 2.5, rubber and leather = --, plastics = 4.5, metal = 3.5, glass (and pottery and china) = 2, other = 1.5 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614583 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Southern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 23, paper and cardboard = 25, wood = 15, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614584 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 40.4, paper and cardboard = 9.8, wood = 4.4, textiles = 1.0, rubber and leather = --, plastics = 3.0, metal = 1.0, glass (and pottery and china) = --, other = -- ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614585 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 30.1, paper and cardboard = 21.8, wood = 7.5, textiles = 4.7, rubber and leather = 1.4, plastics = 6.2, metal = 3.6, glass (and pottery and china) = 10.0, other = 14.6 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614586 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Northern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 23.8, paper and cardboard = 30.6, wood = 10.0, textiles = 2.0, rubber and leather = --, plastics = 13.0, metal = 7.0, glass (and pottery and china) = 8.0, other = -- ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614587 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Southern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 36.9, paper and cardboard = 17.0, wood = 10.6, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614588 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 24.2, paper and cardboard = 27.5, wood = 11.0, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614589 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Oceania: Australia and New Zealand ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 36.0, paper and cardboard = 30.0, wood = 24.0, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614590 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Oceania: except for Australia and New Zealand ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 67.5, paper and cardboard = 6.0, wood = 2.5, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614591 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Caribbean ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 46.9, paper and cardboard = 17.0, wood = 2.4, textiles = 5.1, rubber and leather = 1.9, plastics = 9.9, metal = 5.0, glass (and pottery and china) = 5.7, other = 3.5 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614592 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Central America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.8, paper and cardboard = 13.7, wood = 13.5, textiles = 2.6, rubber and leather = 1.8, plastics = 6.7, metal = 2.6, glass (and pottery and china) = 3.7, other = 12.3 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614593 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 44.9, paper and cardboard = 17.1, wood = 4.7, textiles = 2.6, rubber and leather = 0.7, plastics = 10.8, metal = 2.9, glass (and pottery and china) = 3.3, other = 13.0 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614594 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,North America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 33.9, paper and cardboard = 23.2, wood = 6.2, textiles = 3.9, rubber and leather = 1.4, plastics = 8.5, metal = 4.6, glass (and pottery and china) = 6.5, other = 9.8 ",% ,"Equation 5.2, 5.8-5.10 in Chapter 5 of Vol.5 of 2006 Guidelines ",Category 4C1and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614595 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Paper/cardboard ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",90 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614596 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Textile ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",80 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614597 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Food waste ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614598 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Wood ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",85 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614599 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Garden and Park waste ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614600 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Nappies ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614601 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Rubber and Leather ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",84 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614602 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Plastics ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614603 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Metal ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614604 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Glass ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614605 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,"Other, inert waste ",based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",90 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614606 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Paper/cardboard ,based on dry weight ,,,,46 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614607 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Textile ,based on dry weight ,,,,50 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614608 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Food waste ,based on dry weight ,,,,38 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614609 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Wood ,based on dry weight ,,,,50 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614610 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Garden and Park waste ,based on dry weight ,,,,49 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614611 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Nappies ,based on dry weight ,,,,70 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614612 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Rubber and Leather ,based on dry weight ,,,,67 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614613 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Plastics ,based on dry weight ,,,,75 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614614 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,"Other, inert waste ",based on dry weight ,,,,3 ,% ,"Equation 5.2 and 5.9 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614615 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction of each MSW component in % of total carbon ,Paper/cardboard ,,,,,1 ,% ,"Equation 5.2 and 5.10 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614616 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction of each MSW component in % of total carbon ,Textile ,,,,,20 ,% ,"Equation 5.2 and 5.10 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614617 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction of each MSW component in % of total carbon ,Garden and Park waste ,,,,,0 ,% ,"Equation 5.2 and 5.10 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614618 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction of each MSW component in % of total carbon ,Nappies ,,,,,10 ,% ,"Equation 5.2 and 5.10 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614619 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction of each MSW component in % of total carbon ,Rubber and Leather ,,,,,20 ,% ,"Equation 5.2 and 5.10 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614620 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction of each MSW component in % of total carbon ,Plastics ,,,,,100 ,% ,"Equation 5.2 and 5.10 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614621 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction of each MSW component in % of total carbon ,"Other, inert waste ",,,,,100 ,% ,"Equation 5.2 and 5.10 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614622 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Paper/cardboard ,based on wet waste ,,,,40 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614623 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Textile ,based on wet waste ,,,,24 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614624 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Food waste ,based on wet waste ,,,,15 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614625 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Wood ,based on wet waste ,,,,43 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614626 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Garden and Park waste ,based on wet waste ,,,,20 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614627 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Nappies ,based on wet waste ,,,,24 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614628 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Rubber and Leather ,based on wet waste ,,,,39 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614629 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Paper/cardboard ,based on dry waste ,,,,44 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614630 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Textile ,based on dry waste ,,,,30 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614631 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Food waste ,based on dry waste ,,,,38 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614632 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Wood ,based on dry waste ,,,,50 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614633 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Garden and Park waste ,based on dry waste ,,,,49 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614634 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Nappies ,based on dry waste ,,,,60 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614635 ,6C - Waste Incineration,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of wet waste ,Rubber and Leather ,based on dry waste ,,,,47 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 3 ",4A:IPCC Waste model in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614636 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of dry waste ,Paper/cardboard ,based on wet waste ,,,,44 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 4 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614637 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of dry waste ,Textile ,based on wet waste ,,,,30 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 5 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614638 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of dry waste ,Food waste ,based on wet waste ,,,,38 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 6 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614639 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of dry waste ,Wood ,based on wet waste ,,,,50 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 7 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614640 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of dry waste ,Garden and Park waste ,based on wet waste ,,,,49 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 8 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614641 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of dry waste ,Nappies ,based on wet waste ,,,,60 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 9 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614642 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW component in % of dry waste ,Rubber and Leather ,based on wet waste ,,,,47 ,% ,"Category 4A:IPCC Waste model, Equation 3.2 in Chapter 10 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p.2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614643 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,16 ,% ,"Equation 5.1 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614644 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,1 ,% ,"Equation 5.1 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2001 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614645 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ","Industry type: Petroleum products, Solvents, Plastics ",in wet waste produced ,,,,80 ,% ,"Equation 5.1 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2002 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614646 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,17 ,% ,"Equation 5.1 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2003 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614647 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,20 ,% ,"Equation 5.1 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2004 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614648 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,3 ,% ,"Equation 5.1 in Chapter 5 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2005 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614649 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,15 ,% ,"Equation 5.1 in Chapter 5, Vol.5 of 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614650 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,40 ,% ,"Equation 5.1 in Chapter 5, Vol.5 of 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614651 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Wood and wood products ,in wet waste produced ,,,,43 ,% ,"Equation 5.1 in Chapter 5, Vol.5 of 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614652 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,41 ,% ,"Equation 5.1 in Chapter 5, Vol.5 of 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614653 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ","Industry type: Petroleum products, Solvents, Plastics ",in wet waste produced ,,,,80 ,% ,"Equation 5.1 in Chapter 5, Vol.5 of 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614654 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,56 ,% ,"Equation 5.1 in Chapter 5, Vol.5 of 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614655 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,24 ,% ,"Equation 5.1 in Chapter 5, Vol.5 of 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614656 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,4 ,% ,"Equation 5.1 in Chapter 5, Vol.5 of 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614657 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,60 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614658 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,20 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614659 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Wood and wood products ,in wet waste produced ,,,,15 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614660 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,10 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614661 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Petroleum products, Solvents, Plastics ",in wet waste produced ,,,,0 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614662 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,16 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614663 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,0 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614664 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,10 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614665 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon content in hazardous waste ,hazardous waste ,in wet waste produced ,,,,,% ,"Equation 5.1 in page 5.9 in page 5.19 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,"Table 2.6, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614666 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Water content in hazardous waste ,hazardous waste ,in wet waste produced ,,,,,% ,"Category code: 4A, 4B, 4C ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,"Table 2.6, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614667 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon content in clinical waste ,clinical waste ,in wet waste produced ,,,,25 ,% ,"Equation 5.1 in page 5.9 in page 5.19 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,"Table 2.6, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614668 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content in clinical waste ,clinical waste ,in wet waste produced ,,,,40 ,% ,"Equation 5.1 in page 5.9 in page 5.19 of Vol.5, 2006 Guidelines. Equation 5.11 in Chapter 5 of GPG2001 ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,"Table 2.6, p.2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614669 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Water content in clinical waste ,clinical waste ,in wet waste produced ,,,,35 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,"Table 2.6, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614683 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Eastern Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.55, incinerated = 0.26, composted = 0.01, and other MSW management unspecified = 0.18 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614684 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South-Central Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.74, composted = 0.05, and other MSW management unspecified = 0.21 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614685 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South-East Asia ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.59, incinerated = 0.09, composted = 0.05, and other MSW management unspecified = 0.27 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614687 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Eastern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.90, incinerated = 0.04, composted = 0.01, and other MSW management unspecified = 0.02 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614688 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Northern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.47, incinerated =0.24, composted = 0.08, and other MSW management unspecified = 0.20 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614689 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Southern Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.85, incinerated =0.05, composted = 0.05, and other MSW management unspecified = 0.05 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614690 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Western Europe ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.47, incinerated =0.22, composted = 0.15, and other MSW management unspecified = 0.15 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614691 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Caribbean ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.83, incinerated =0.02, and other MSW management unspecified = 0.15 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614692 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Central America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.50, and other MSW management unspecified = 0.50 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614693 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,South America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.54, incinerate =0.01, composted = 0.003, and other MSW management unspecified = 0.46 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614694 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,North America ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.58, incinerate =0.06, composted = 0.06, and other MSW management unspecified = 0.29 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,6C - Waste Incineration,4.B - Biological Treatment of Solid Waste,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,6D - Other (please specify),4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +614696 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 26.2, paper and cardboard = 18.8, wood = 3.5, textiles = 3.5, rubber and leather = 1.0, plastics = 14.3, metal = 2.7, glass (and pottery and china) = 3.1, other = 7.4 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614697 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South-Central Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 40.3, paper and cardboard = 11.3 wood = 7.9, textiles = 2.5, rubber and leather = 0.8, plastics = 6.4, metal = 3.8, glass (and pottery and china) = 3.5, other = 21.9 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614698 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South-Eastern Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.5, paper and cardboard = 12.9, wood = 9.9, textiles = 2.7, rubber and leather = 0.9, plastics = 7.2, metal = 3.3, glass (and pottery and china) = 4.0, other = 16.3 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614699 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Asia & Middle East ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 41.1, paper and cardboard = 18.0, wood = 9.8, textiles = 2.9, rubber and leather = 0.6, plastics = 6.3, metal = 1.3, glass (and pottery and china) = 2.2, other = 5.4 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614700 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 53.9, paper and cardboard = 7.7, wood = 7.0, textiles = 1.7, rubber and leather = 1.1, plastics = 5.5, metal = 1.8, glass (and pottery and china) = 2.3, other = 11.6 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614701 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Middle Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.4, paper and cardboard = 16.8, wood = 6.5, textiles = 2.5, rubber and leather = --, plastics = 4.5, metal = 3.5, glass (and pottery and china) = 2.0, other = 1.5 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614702 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Northern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 51.1, paper and cardboard = 16.5, wood = 2, textiles = 2.5, rubber and leather = --, plastics = 4.5, metal = 3.5, glass (and pottery and china) = 2, other = 1.5 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614703 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Southern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 23, paper and cardboard = 25, wood = 15, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614704 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 40.4, paper and cardboard = 9.8, wood = 4.4, textiles = 1.0, rubber and leather = --, plastics = 3.0, metal = 1.0, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614705 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Eastern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 30.1, paper and cardboard = 21.8, wood = 7.5, textiles = 4.7, rubber and leather = 1.4, plastics = 6.2, metal = 3.6, glass (and pottery and china) = 10.0, other = 14.6 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614706 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Northern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 23.8, paper and cardboard = 30.6, wood = 10.0, textiles = 2.0, rubber and leather = --, plastics = 13.0, metal = 7.0, glass (and pottery and china) = 8.0, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614707 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Southern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 36.9, paper and cardboard = 17.0, wood = 10.6, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614708 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Western Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 24.2, paper and cardboard = 27.5, wood = 11.0, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614709 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Oceania: Australia and New Zealand ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 36.0, paper and cardboard = 30.0, wood = 24.0, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614710 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Oceania: except for Australia and New Zealand ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 67.5, paper and cardboard = 6.0, wood = 2.5, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614711 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Caribbean ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 46.9, paper and cardboard = 17.0, wood = 2.4, textiles = 5.1, rubber and leather = 1.9, plastics = 9.9, metal = 5.0, glass (and pottery and china) = 5.7, other = 3.5 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614712 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,Central America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.8, paper and cardboard = 13.7, wood = 13.5, textiles = 2.6, rubber and leather = 1.8, plastics = 6.7, metal = 2.6, glass (and pottery and china) = 3.7, other = 12.3 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614713 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,South America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 44.9, paper and cardboard = 17.1, wood = 4.7, textiles = 2.6, rubber and leather = 0.7, plastics = 10.8, metal = 2.9, glass (and pottery and china) = 3.3, other = 13.0 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614714 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,MSW composition data by percent ,,based on weignt of wet waste ,North America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 33.9, paper and cardboard = 23.2, wood = 6.2, textiles = 3.9, rubber and leather = 1.4, plastics = 8.5, metal = 4.6, glass (and pottery and china) = 6.5, other = 9.8 ",% ,Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines ,4C1 and 4C2 in 2006 Guidelines ,"Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614715 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Paper/cardboard ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",90 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2000 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614716 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Textile ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",80 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2001 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614717 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Food waste ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2002 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614718 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Wood ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",85 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2003 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614719 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Garden and Park waste ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2004 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614720 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Nappies ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2005 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614721 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Rubber and Leather ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",84 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2006 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614722 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Plastics ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2007 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614723 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Metal ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2008 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614724 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Glass ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2009 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614725 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,"Other, inert waste ",based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",90 ,% ,Equation 5.2 and 5.8 in Chapter 5 of Vol. 5 2006 Guidelines. Equation 5. 12 and 5.13 in Chapter 5 of GPG2010 ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.4, p. 2.14 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614726 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,60 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614727 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,20 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614728 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Wood and wood products ,in wet waste produced ,,,,15 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614729 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,10 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614730 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Petroleum products, Solvents, Plastics ",in wet waste produced ,,,,0 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614731 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,16 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614732 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,0 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614733 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,10 ,% ,Category code: 4C ,4C1 and 4C2 in 2006 Guidelines ,Expert judgement by lead authors of Chapter 2 ,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614734 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Water content in clinical waste ,clinical waste ,in wet waste produced ,,,,35 ,% ,"Equation 5.5 and 5.6 in Chapter 5 of Vol. 5, 2006 Guidelines, Equation 5.12 and 5.13 in Chapter 5 of GPG2000. ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614735 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Water content in hazardous waste ,hazardous waste ,in wet waste produced ,,,,,% ,"Equation 3.7 in page 3.13, Equation 5.1 and 5.2 in page 5.7, Equation 5.9 in page 5.19, of Vol. 5, 2006 Guidelines, ",4C1 and 4C2 in 2006 Guidelines ,Expert judgement by authors of Good Practice Guidance and Uncertainties Management (IPCC 2000) ,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614736 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content in clinical waste ,Clinical waste ,in wet waste produced ,,,,15 ,% ,"Category 4A:IPCC Waste model, Equation 3.7 in p.3.13 ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.6, p. 2.16 in 2006 IPCC Guidelines ",IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614737 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of dry waste ,Paper/cardboard ,based on dry waste ,,,,44 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614738 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of dry waste ,Textile ,based on dry waste ,,,,30 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614739 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of dry waste ,Food waste ,based on dry waste ,,,,38 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614740 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of dry waste ,Wood ,based on dry waste ,,,,50 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614741 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of dry waste ,Garden and Park waste ,based on dry waste ,,,,49 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614742 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of dry waste ,Nappies ,based on dry waste ,,,,60 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614743 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of dry waste ,Rubber and Leather ,based on dry waste ,,,,47 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614744 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of wet waste ,Paper/cardboard ,based on wet waste ,,,,40 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614745 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of wet waste ,Textile ,based on wet waste ,,,,24 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614746 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of wet waste ,Food waste ,based on wet waste ,,,,15 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614747 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of wet waste ,Wood ,based on wet waste ,,,,43 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614748 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of wet waste ,Garden and Park waste ,based on wet waste ,,,,20 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614749 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of wet waste ,Nappies ,based on wet waste ,,,,24 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614750 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Degradable organic carbon (DOC) content of each MSW components in % of wet waste ,Rubber and Leather ,based on wet waste ,,,,39 ,% ,"IPCC Waste model, Equation 3.7, Vol.5, 2006 Guidelines ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614751 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Degradable organic carbon (DOC) in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,15 ,% ,"Category 4A:IPCC Waste model, Equation 3.7 in p.3.14 ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614752 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Degradable organic carbon (DOC) in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,24 ,% ,"Category 4A:IPCC Waste model, Equation 3.7 in p.3.15 ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614753 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Degradable organic carbon (DOC) in industrial waste, by industry type ",Industry type: Wood and wood products ,in wet waste produced ,,,,43 ,% ,"Category 4A:IPCC Waste model, Equation 3.7 in p.3.16 ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614754 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Degradable organic carbon (DOC) in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,40 ,% ,"Category 4A:IPCC Waste model, Equation 3.7 in p.3.17 ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614755 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Degradable organic carbon (DOC) in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,39 ,% ,"Category 4A:IPCC Waste model, Equation 3.7 in p.3.18 ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614756 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Degradable organic carbon (DOC) in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,4 ,% ,"Category 4A:IPCC Waste model, Equation 3.7 in p.3.19 ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614757 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Degradable organic carbon (DOC) in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,1 ,% ,"Category 4A:IPCC Waste model, Equation 3.7 in p.3.20 ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614758 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Paper/cardboard ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",90 ,% ,"Equation 5.2and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614759 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Textile ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",80 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614760 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Food waste ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614761 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Wood ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",85 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614762 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Garden and Park waste ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614763 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Nappies ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",40 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614764 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Rubber and Leather ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",84 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614765 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Plastics ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614766 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Metal ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614767 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,Glass ,based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",100 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614768 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Dry matter content of each MSW component in % of wet weight ,"Other, inert waste ",based on weignt of wet waste ,,,"The moisture content given here applies to the specific waste types before they enter the collection and treatment. In samples taken from collected waste or from e.g., SWDS the moisture content of each waste type will vary by moisture of co-existing waste and weather during handling. ",90 ,% ,"Equation 5.2 and 5.8, Vol.5, 2006 Guidelines ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614769 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Fossil carbon content in clinical waste ,,in wet waste produced ,,,,25 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614770 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Fossil carbon content in hazardous waste ,,in wet waste produced ,,,,,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614771 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,16 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614772 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,1 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614773 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ","Industry type: Petroleum products, Solvents, Plastics ",in wet waste produced ,,,,80 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614774 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,17 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614775 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,20 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614776 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Fossil carbon content in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,3 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,2006 IPCC Guidelines ,IPCC (001)  +,,,,,,,,,,,,,,,,,,, +614777 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,15 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614778 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,40 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614779 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Wood and wood products ,in wet waste produced ,,,,43 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614780 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,41 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614781 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ","Industry type: Petroleum products, Solvents, Plastics ",in wet waste produced ,,,,80 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614782 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,56 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614783 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,24 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614784 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,4 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614785 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,60 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614786 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Textile ,in wet waste produced ,,,,20 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614787 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Wood and wood products ,in wet waste produced ,,,,15 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614788 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Pulp and paper (other then sludge) ,in wet waste produced ,,,,10 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614789 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Petroleum products, Solvents, Plastics ",in wet waste produced ,,,,0 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614790 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Rubber ,in wet waste produced ,,,,16 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614791 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Construction and demolition ,in wet waste produced ,,,,0 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614792 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ",Industry type: Other ,"excluding food, beverages and tobacco, textile, wood and wood products, pulp and paper, petroleum products, solvents, plastics, rubber, construction and demolition. in wet waste produced ",,,,10 ,% ,"Category code: 4A, 4B, 4C ",4A:IPCC Waste model in 2006 Guidelines ,,"Table 2.5, p. 2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614793 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon ,Paper/cardboard ,,,,,1 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614794 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon ,Textile ,,,,,20 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614795 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon ,Garden and Park waste ,,,,,0 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614796 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon ,Nappies ,,,,,10 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614797 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon ,Rubber and Leather ,,,,,20 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614798 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon ,Plastics ,,,,,100 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614799 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon ,"Other, inert waste ",,,,,100 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614800 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Eastern Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 26.2, paper and cardboard = 18.8, wood = 3.5, textiles = 3.5, rubber and leather = 1.0, plastics = 14.3, metal = 2.7, glass (and pottery and china) = 3.1, other = 7.4 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614801 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,South-Central Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 40.3, paper and cardboard = 11.3 wood = 7.9, textiles = 2.5, rubber and leather = 0.8, plastics = 6.4, metal = 3.8, glass (and pottery and china) = 3.5, other = 21.9 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614802 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,South-Eastern Asia ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.5, paper and cardboard = 12.9, wood = 9.9, textiles = 2.7, rubber and leather = 0.9, plastics = 7.2, metal = 3.3, glass (and pottery and china) = 4.0, other = 16.3 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614803 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Western Asia & Middle East ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 41.1, paper and cardboard = 18.0, wood = 9.8, textiles = 2.9, rubber and leather = 0.6, plastics = 6.3, metal = 1.3, glass (and pottery and china) = 2.2, other = 5.4 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614804 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Eastern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 53.9, paper and cardboard = 7.7, wood = 7.0, textiles = 1.7, rubber and leather = 1.1, plastics = 5.5, metal = 1.8, glass (and pottery and china) = 2.3, other = 11.6 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614805 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Middle Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.4, paper and cardboard = 16.8, wood = 6.5, textiles = 2.5, rubber and leather = --, plastics = 4.5, metal = 3.5, glass (and pottery and china) = 2.0, other = 1.5 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614806 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Northern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 51.1, paper and cardboard = 16.5, wood = 2, textiles = 2.5, rubber and leather = --, plastics = 4.5, metal = 3.5, glass (and pottery and china) = 2, other = 1.5 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614807 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Southern Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 23, paper and cardboard = 25, wood = 15, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614808 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Western Africa ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 40.4, paper and cardboard = 9.8, wood = 4.4, textiles = 1.0, rubber and leather = --, plastics = 3.0, metal = 1.0, glass (and pottery and china) = --, other = -- ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614809 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Eastern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 30.1, paper and cardboard = 21.8, wood = 7.5, textiles = 4.7, rubber and leather = 1.4, plastics = 6.2, metal = 3.6, glass (and pottery and china) = 10.0, other = 14.6 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614810 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Northern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 23.8, paper and cardboard = 30.6, wood = 10.0, textiles = 2.0, rubber and leather = --, plastics = 13.0, metal = 7.0, glass (and pottery and china) = 8.0, other = -- ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614811 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Southern Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 36.9, paper and cardboard = 17.0, wood = 10.6, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614812 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Western Europe ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 24.2, paper and cardboard = 27.5, wood = 11.0, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614813 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Oceania: Australia and New Zealand ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 36.0, paper and cardboard = 30.0, wood = 24.0, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614814 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Oceania: except for Australia and New Zealand ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 67.5, paper and cardboard = 6.0, wood = 2.5, textiles = --, rubber and leather = --, plastics = --, metal = --, glass (and pottery and china) = --, other = -- ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614815 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Caribbean ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 46.9, paper and cardboard = 17.0, wood = 2.24, textiles = 5.1, rubber and leather = 1.9, plastics = 9.9, metal = 5.0, glass (and pottery and china) = 5.7, other = 3.5 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614816 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,Central America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 43.8, paper and cardboard = 13.7, wood = 13.5, textiles = 2.6, rubber and leather = 1.8, plastics = 6.7, metal = 2.6, glass (and pottery and china) = 3.7, other = 12.3 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614817 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,South America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 44.9, paper and cardboard = 17.1, wood = 4.7, textiles = 2.6, rubber and leather = 0.7, plastics = 10.8, metal = 2.9, glass (and pottery and china) = 3.3, other = 13.0 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614818 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW composition data by percent ,,based on weight of wet waste ,North America ,,"Here, MSW composition includes; food waste, paper and cardboard, wood, textiles, rubber and leather, plastics, metal, glass (and pottery and china), and other (e.g., ash, dirt, dust, soil, electronic waste). Data are based on weight of wet waste of MSW without industrial waste at generation around year 2000. ","food waste = 33.9, paper and cardboard = 23.2, wood = 6.2, textiles = 3.9, rubber and leather = 1.4, plastics = 8.5, metal = 4.6, glass (and pottery and china) = 6.5, other = 9.8 ",% ,"Category code:4A: Equation 3.7 in p.3.13; 4C: Equation 5.8-5.10 in p.5.17-19 of Vol.5 of 2006 Guidelines, Equation 5.4 in Chapter 5 of GPG2000, Equation 2 in page 6.9 in Vol.3 of 1996 Guidelines ","4A:IPCC Waste model, 6-1A in 1996 Guidelines ","Expert judgement by lead authors of Chapter 2. The region-specific values are calculated from national, partly incomplete composition data. The percentages given may therefore not add up to 100%. Some regions may not have data for some waste types - blanks in the table represent missing data. Reference can be found in Chapter 2, Volume 5 of 2006 Guidelines. ",Table 2.3 p. 2.12 in 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614822 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Africa ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.69, and other MSW management unspecified = 0.31 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2 ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614831 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MSW generation and management practices ,"MSW disposed to SWDS, incinerated, composted, and other MSW management unspecified. Data are assumed to be applicable for the year 2000. ",based on weignt of wet waste ,Oceania ,,Other MSW management unspecified includes data on recycling for some countries ,"Fraction of MSW disposed to SWDS = 0.85, and other MSW management unspecified = 0.15 ",fraction ,,"4A:IPCC Waste model, 4B, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",Expert judgement by lead authors of Chapter 2. ,"Table 2.1, p.2.5 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614845 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Total carbon content in clinical waste ,clinical waste ,in wet waste produced ,,,,40 ,% ,"Equation 5.1 in page 5.7 of Vol.5, 2006 Guidelines ","Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",,"Table 2.6, p.2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614846 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Total carbon content in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,15 ,% ,"Category code: 4A, 4B, 4C ","Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",,"Table 2.6, p.2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614847 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Paper/cardboard ,based on dry weight ,,,,46 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614848 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Textile ,based on dry weight ,,,,50 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614849 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Food waste ,based on dry weight ,,,,38 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614850 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Wood ,based on dry weight ,,,,50 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614851 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Garden and Park waste ,based on dry weight ,,,,49 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614852 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Nappies ,based on dry weight ,,,,70 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614853 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Rubber and Leather ,based on dry weight ,,,,67 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614854 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,Plastics ,based on dry weight ,,,,75 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614855 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content of each MSW components in % of dry weight ,"Other, inert waste ",based on dry weight ,,,,3 ,% ,"Equation 5.1, 5.2, 5.10 in Vol.5 of 2006 Guidelines; Equation 5.11 in Chapter 5 of GPG2000 ",4C1 and 4C2 in the 2006 Guidelines; 6C in 1996 Guidelines ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +614856 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Water content in clinical waste ,clinical waste ,in wet waste produced ,,,,35 ,% ,"Category code: 4A, 4B, 4C ","Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",,"Table 2.6, p.2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614857 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Water content in hazardous waste ,hazardous waste ,in wet waste produced ,,,,,% ,"Category code: 4A, 4B, 4C ","Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",,"Table 2.6, p.2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +614858 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,"Water content in industrial waste, by industry type ","Industry type: Food, beverages and tobacco (other than sludge) ",in wet waste produced ,,,,60 ,% ,"Category code: 4A, 4B, 4C ","Category 4A:IPCC Waste model, 4C1 and 4C2 in 2006 Guidelines, 6-1A in 1996 Guidelines, ",,"Table 2.5, p.2.16 in 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615011 ,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,METHANE,,,2006 IPCC default ,Emission factor ,Composting ,dry weight basis ,,,,10 ,g CH4/kg waste treated ,Equation 4.1 in Chapter 4 of Volume 5 of 2006 Guidelines ,Category 4B ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615012 ,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,METHANE,,,2006 IPCC default ,Emission factor ,Anaerobic digestion at biogas facilities ,dry weight basis ,,,,2 ,g CH4/kg waste treated ,Equation 4.1 in Chapter 4 of Volume 5 of 2006 Guidelines ,Category 4B ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615013 ,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,METHANE,,,2006 IPCC default ,Emission factor ,Composting ,wet weight basis ,,,,4 ,g CH4/kg waste treated ,Equation 4.1 in Chapter 4 of Volume 5 of 2006 Guidelines ,Category 4B ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615014 ,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,METHANE,,,2006 IPCC default ,Emission factor ,Anaerobic digestion at biogas facilities ,wet weight basis ,,,,0.8 ,g CH4/kg waste treated ,Equation 4.1 in Chapter 4 of Volume 5 of 2006 Guidelines ,Category 4B ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615015 ,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,NITROUS OXIDE,,,2006 IPCC default ,Emission factor ,Composting ,dry weight basis ,,,,0.6 ,g N2O/kg waste treated ,Equation 4.2 in Chapter 4 of Volume 5 of 2006 Guidelines ,Category 4B ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615016 ,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,NITROUS OXIDE,,,2006 IPCC default ,Emission factor ,Anaerobic digestion at biogas facilities ,dry weight basis ,,,,,g N2O/kg waste treated ,Equation 4.2 in Chapter 4 of Volume 5 of 2006 Guidelines ,Category 4B ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615017 ,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,NITROUS OXIDE,,,2006 IPCC default ,Emission factor ,Composting ,wet weight basis ,,,,0.24 ,g N2O/kg waste treated ,Equation 4.2 in Chapter 4 of Volume 5 of 2006 Guidelines ,Category 4B ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615018 ,6D - Other (please specify),4.B - Biological Treatment of Solid Waste,NITROUS OXIDE,,,2006 IPCC default ,Emission factor ,Anaerobic digestion at biogas facilities ,wet weight basis ,,,,,g N2O/kg waste treated ,Equation 4.2 in Chapter 4 of Volume 5 of 2006 Guidelines ,Category 4B ,,2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615019 ,6C - Waste Incineration,4.C.2 - Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fraction of the waste amount burnt relative to the total amount of waste treated ,Open burning of waste ,"Combustion in open air, open dumps, where smoke and other emissions are released directly into the air. Also incineration devices that do not control the combustion air to maintain an adequate temperature and do not provide sufficient residence time for complete combustion ",,,,0.6 ,fraction ,"Equation 5.7 of Chapter 5, Volume 5 of 2006 Guidelines ",4C2 ,"Box 5.1 p 5.17 of Chapter 5, Volume 5 of the 2006 IPCC Guidelines ",2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615020 ,6C - Waste Incineration,4.C.1 - Waste Incineration,CARBON DIOXIDE,,,2006 IPCC default ,Oxidation factor as % of carbon input ,Incineration ,"for MSW, Industrial waste, clinical waste, sewage sludge, fossil liquid waste. Combustion in controlled incineration facilities, high combustion temperatures, long residence time, efficient waste agitation, air for more complete combustion. ",,,,100 ,% ,"Equation 5.1 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 ,"Lead Authors of Chapter 5 in Volume 5, the 2006 IPCC Guidelines ","Table 5.2 p 5.18 of Chapter 5 in Volume 5, the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615021 ,6C - Waste Incineration,4.C.2 - Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Oxidation factor as % of carbon input ,Open burning of waste ,"for MSW Combustion in open air, open dumps, where smoke and other emissions are released directly into the air. Also incineration devices that do not control the combustion air to maintain an adequate temperature and do not provide sufficient residence time for complete combustion ",,,,58 ,% ,"Equation 5.2 of Chapter 5, Volume 5 of 2006 Guidelines ",4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615022 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content in % of dry weight ,Incineration and open burning of waste ,"for Industrial Waste Incineration in controlled facilities; open burning in open air, open dumps ",,,,50 ,% (by weight) ,"Equation 5.1 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 and 4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615023 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content in % of dry weight ,Incineration and open burning of waste ,"for Clinical Waste Incineration in controlled facilities; open burning in open air, open dumps ",,,,60 ,% (by weight) ,"Equation 5.1 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 and 4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615024 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content in % of dry weight ,Incineration and open burning of waste ,"for Sewage sludge Incineration in controlled facilities; open burning in open air, open dumps ",,,,40-50 ,% (by weight) ,"Equation 5.1 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 and 4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615025 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Total carbon content in % of wet weight ,Incineration and open burning of waste ,"Fossil liquid waste Incineration in controlled facilities; open burning in open air, open dumps ",,,,80 ,% (by weight) ,"Equation 5.3 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 and 4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615026 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon content ,Incineration and open burning of waste ,"Industrial Waste Incineration in controlled facilities; open burning in open air, open dumps ",,,,90 ,% ,"Equation 5.1 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 and 4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615027 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon content ,Incineration and open burning of waste ,"for Clinical Waste Incineration in controlled facilities; open burning in open air, open dumps ",,,,40 ,% ,"Equation 5.1 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 and 4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615028 ,6C - Waste Incineration,4.C - Incineration and Open Burning of Waste,CARBON DIOXIDE,,,2006 IPCC default ,Fossil carbon fraction in % of total carbon content ,Incineration and open burning of waste ,"for fossil liquid waste Incineration in controlled facilities; open burning in open air, open dumps ",,,,100 ,% ,"Equation 5.3 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 and 4C2 ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment by authors of IPCC Good Practice Guidance and Uncertainty Management for National Greenhouse Gas Inventories ","Table 5.2 p 5.18, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines `IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (Table 5.6 on Page 5.29) ",IPCC  +,,,,,,,,,,,,,,,,,,, +615029 ,6C - Waste Incineration,4.C.1 - Waste Incineration,METHANE,,,Other (e.g. compiled) ,CH4 emission factor for waste oil ,Incineration of waste oil ,"It will be specified whether it is continuous, semi-continuous or batch type incineration ",Japan ,,,0.56 ,g CH4/t wet weight ,"This figure can be used to estimate emissions using Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines. Note that the unit of this emission factor (g CH4/ tonne wet weight) is different from other emission factors for CH4 under this category given in Table 5.3 in page 5.20 of Volume 5 (kg/Gg waste incinerated on a wet weight basis). ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615030 ,6C - Waste Incineration,4.C.1 - Waste Incineration,METHANE,,,Other (e.g. compiled) ,CH4 emission factor for sludge ,Incineration of sludge ,"It will be specified whether it is continuous, semi-continuous or batch type incineration ",Japan ,,,9.7 ,g CH4/t wet weight ,"This figure can be used to estimate emissions using Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines. Note that the unit of this emission factor (g CH4/ tonne wet weight) is different from other emission factors for CH4 under this category given in Table 5.3 in page 5.20 of Volume 5 (kg/Gg waste incinerated on a wet weight basis). ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615031 ,6C - Waste Incineration,4.C.1 - Waste Incineration,METHANE,,,Other (e.g. compiled) ,CH4 emission factor ,Incineration of MSW ,Continuous incineration - stoker ,Japan ,,,0.2 ,kg/Gg waste wet weight ,"Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2004). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). October 2004. ,"Table 5.3 p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615032 ,6C - Waste Incineration,4.C.1 - Waste Incineration,METHANE,,,Other (e.g. compiled) ,CH4 emission factor ,Incineration of MSW ,Continuous incineration - fluidised bed ,Japan ,,,~0 ,kg/Gg waste wet weight ,"Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2004). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). October 2004. ,"Table 5.3 p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615033 ,6C - Waste Incineration,4.C.1 - Waste Incineration,METHANE,,,Other (e.g. compiled) ,CH4 emission factor ,Incineration of MSW ,Semi-continuous incineration - stoker ,Japan ,,,6 ,kg/Gg waste wet weight ,"Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2004). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). October 2004. ,"Table 5.3 p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615034 ,6C - Waste Incineration,4.C.1 - Waste Incineration,METHANE,,,Other (e.g. compiled) ,CH4 emission factor ,Incineration of MSW ,Semi-continuous incineration - fluidised bed ,Japan ,,,188 ,kg/Gg waste wet weight ,"Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2004). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). October 2004. ,"Table 5.3 p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615035 ,6C - Waste Incineration,4.C.1 - Waste Incineration,METHANE,,,Other (e.g. compiled) ,CH4 emission factor ,Incineration of MSW ,Batch type incineration - stoker ,Japan ,,,60 ,kg/Gg waste wet weight ,"Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2004). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). October 2004. ,"Table 5.3 p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615036 ,6C - Waste Incineration,4.C.1 - Waste Incineration,METHANE,,,Other (e.g. compiled) ,CH4 emission factor ,Incineration of MSW ,Batch type incineration - fluidised bed ,Japan ,,,237 ,kg/Gg waste wet weight ,"Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2004). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). October 2004. ,"Table 5.3 p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615037 ,6C - Waste Incineration,4.C.2 - Open Burning of Waste,METHANE,,,2006 IPCC default ,CH4 emission factor ,Open burning of MSW ,Open burning of waste ,,,,6500 ,g/ton MSW wet weight ,"Equation 5.4 of Chapter 5, Volume 5 of 2006 Guidelines ",4C2 Open Burning of Waste ,USEPA (2001). US-EPA Emission Inventory Improvement Program. Volume III Chapter 16 Open Burning. United States Environmental Protection Agency (USEPA). http://www.epa.gov/ttn/chief/eiip/techreport/volume03/iii16_apr2001.pdf ,"p.5.20, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615038 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,Continuous incineration - stoker ,Japan ,,,47 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615039 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,Continuous incineration - fluidised bed ,Japan ,,,67 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615040 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,Semi-continuous incineration - stoker ,Japan ,,,41 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615041 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,Semi-continuous incineration - fluidised bed ,Japan ,,,68 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615042 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,Batch type incineration - stoker ,Japan ,,,56 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615043 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,Batch type incineration - fluidised bed ,Japan ,,,221 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615044 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,,Germany ,,,8 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,,"Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615045 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,,Netherlands ,,,20 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,"Spakman, J., van Loon, M.M.J., van der Auweraert, R.J.K., Gielen, D.J., Olivier, J.G.J. and Zonneveld, E.A. (2004). Method for calculating greenhouse gas emissions. Emission Registration Series/Environmental Monitor No. 37b, MinVROM. The Hague 2003. ","Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615046 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of MSW ,,Austria ,,,12 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,"Anderl, M., Halper, D., Kurzweil, A., Poupa S., Wappel, D., Weiss, P. and Wieser M. (2004). Austria`s National Inventory Report 2004: Submission under the United Nations Framework Convention on Climate Change. ","Table 5.4 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615047 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,"Waste paper, waste wood ",Japan ,,,10 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615048 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,Waste oil ,Japan ,,,9.8 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615049 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,waste plastics ,Japan ,,,170 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615050 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,sludge (except sewage sludge) ,Japan ,,,450 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615051 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,dehydrated sewage sludge ,Japan ,,,900 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615052 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,high molecular weight flocculant ,Japan ,,fluidised bed incinerator at normal temperature ,1508 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615053 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,high molecular weight flocculant ,Japan ,,fluidised bed incinerator at high temperature ,645 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615054 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,high molecular weight flocculant ,Japan ,,multiple hearth ,882 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615055 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,other flocculant ,Japan ,,,882 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615056 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,lime sludge ,Japan ,,,294 ,g N2O/t MSW incinerated on a wet weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,GIO (2005). National Greenhouse Gas Inventory Report of JAPAN. Ministry of the Environment/ Japan Greenhouse Gas Inventory Office of Japan (GIO) / Center for Global Environmental Research (CGER) / National Institute for Environmental Studies (NIES). ,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615057 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,sewage sludge ,Germany ,,,990 ,g N2O/t MSW incinerated on a dry weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615058 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,Other (e.g. compiled) ,N2O emission factor ,Incineration of industrial waste ,industrial waste ,Germany ,,,420 ,g N2O/t MSW incinerated on a dry weight basis ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,,"Table 5.5 p.5.21, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615059 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,2006 IPCC default ,N2O emission factor ,Incineration of MSW ,continuous and semi-continuous incinerators ,,,wet weight ,50 ,g N2O /tonne waste ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.6 p.5.22, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615060 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,2006 IPCC default ,N2O emission factor ,Incineration of MSW ,batch-type incinerators ,,,wet weight ,60 ,g N2O /tonne waste ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.6 p.5.22, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615061 ,6C - Waste Incineration,4.C.2 - Open Burning of Waste,NITROUS OXIDE,,,2006 IPCC default ,N2O emission factor ,Open burning of MSW ,open burning ,,,dry weight ,150 ,g N2O /tonne waste ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C2 Open Burning of Waste ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.6 p.5.22, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615062 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,2006 IPCC default ,N2O emission factor ,Incineration of Industrial Waste ,all types of incinerators ,,,wet weight ,100 ,g N2O /tonne waste ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.6 p.5.22, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615063 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,2006 IPCC default ,N2O emission factor ,Incineration of sludge - excep for sewage sludge ,all types of incinerators ,,,wet weight ,450 ,g N2O /tonne waste ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.6 p.5.22, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615064 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,2006 IPCC default ,N2O emission factor ,Incineration of sewage sludge ,incinerators ,,,dry weight ,990 ,g N2O /tonne waste ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.6 p.5.22, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615065 ,6C - Waste Incineration,4.C.1 - Waste Incineration,NITROUS OXIDE,,,2006 IPCC default ,N2O emission factor ,Incineration of sewage sludge ,incinerators ,,,wet weight ,900 ,g N2O /tonne waste ,"Equation 5.5 of Chapter 5, Volume 5 of 2006 Guidelines ",4C1 Waste Incineration ,"GPG2000, Lead Authors of the 2006 IPCC Guidelines, expert judgment ","Table 5.6 p.5.22, Chapter 5 in Volume 5 of the 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615066 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,MCF (methane correction factor) by SWDS classification ,Managed- semi-anaerobic ,"must have controlled placement of waste will include all of the following: permeable cover material, leachate draining system, regulating pondage, gas ventilation system ",,,,0.5 ,fraction ,"Equation 3.2 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, MCF tab ",,"Table 3.1, p.3.14 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615067 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Fraction of Degradable organic carbon which decomposes - DOCf ,,under the assumption that the SWDS environment is anaerobic and the DOC values include lignin ,,,,0.5 ,fraction ,"Equation 3.2 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,p. 3.13 of 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615068 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,Paper/textiles ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,Slowly degrading waste ,0.04 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ","Oonk and Boom (1995), IPCC (2000), Brown et al. (1999) ","table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615069 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,wood/straw waste ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,Slowly degrading waste ,0.02 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ","Oonk and Boom (1995), IPCC (2000), Environment Canada (2003), Levelton (1991) ","table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615070 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,Other (non-food) organic putrescible/garden and park waste ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,,0.05 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615071 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,Food waste/ sewage sludge ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,,0.06 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615072 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,Bulk waste ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,,0.05 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615073 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,paper/textiles ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,0.06 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ","Oonk and Boom (1995), and Brown et al. (1999) ","table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615074 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,wood/straw waste ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,0.03 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615075 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,other (non-food organic putrescible/garden and park waste ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,0.1 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",RIVM (2004) ,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615076 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,food waste/ sewage sludge ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,0.185 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ","Oonk and Boom (1995), IPCC (2000), Attenborough et al (2002) ","table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615077 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,bulk ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,0.09 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",RIVM (2004) ,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615078 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,paper/textiles ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,0.045 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615079 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,wood/straw waste ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,0.025 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615080 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,other (non-food organic putrescible/garden and park waste ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,0.065 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615081 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,food waste/ sewage sludge ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,0.085 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615082 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,bulk ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,0.065 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615083 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,paper/textiles ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,0.07 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615084 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,wood/straw waste ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,0.035 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615085 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,other (non-food organic putrescible/garden and park waste ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,0.17 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615086 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,food waste/ sewage sludge ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,0.4 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",Jensen and Pipatti (2003) ,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615087 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,k (methane generation rate) ,,bulk ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,0.17 ,1/year ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters tab ",,"table 3.3, p. 3.17 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615088 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,Paper/textiles ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,,17 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,"Oonk and Boom (1995), IPCC (2000), Brown et al. (1999) ","table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615089 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,wood/straw waste ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,,35 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,"Oonk and Boom (1995), IPCC (2000), Environment Canada (2003), (Levelton 1991) ","table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615090 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,Other (non-food) organic putrescible/garden and park waste ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,,14 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615091 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,Food waste/ sewage sludge ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,,12 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615092 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,Bulk waste ,"Boreal and Temperate (MAT = 20C), Dry (MAP/PET less than 1) ",,,14 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615093 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,paper/textiles ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,12 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,"Oonk and Boom (1995), and Brown et al. (1999) ","table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615094 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,wood/straw waste ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,23 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615095 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,other (non-food organic putrescible/garden and park waste ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,7 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,RIVM (2004) ,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615096 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,food waste/ sewage sludge ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,4 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,"Oonk and Boom (1995), IPCC (2000), Attenborough et al (2002) ","table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615097 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,bulk ,"Boreal and Temperate (MAT = 20C), Wet (MAP/PET greater than 1) ",,,7 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,RIVM (2004) ,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615098 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,paper/textiles ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,15 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615099 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,wood/straw waste ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,28 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615100 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,other (non-food organic putrescible/garden and park waste ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,11 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615101 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,food waste/ sewage sludge ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,8 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615102 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,bulk ,Tropical (Mat greater than 20C) and Dry (MAP less than 1000 mm) ,,,11 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615103 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,paper/textiles ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,10 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615104 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,wood/straw waste ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,20 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615105 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,other (non-food organic putrescible/garden and park waste ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,4 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615106 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,food waste/ sewage sludge ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,2 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,Jensen and Pipatti (2003) ,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615107 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Half-Life (t1/2) ,,bulk ,"Tropical (Mat greater than 20C) and Wet (MAP greater than, or equal to, 1000 mm) ",,,4 ,years ,"Equation 3.4 and Equation 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ",IPCC 2006 Waste model ,,"table 3.4, p. 3.18 of 2006 IPCC Guidelines ",IPCC  +,,,,,,,,,,,,,,,,,,, +615108 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Recovery efficiency for SWDS with landfill gas recovery ,landfill gas recovery system ,Estimation on the basis of the number of SWDS with landfill gas recovery ,,,,20 ,% ,,IPCC 2006 Waste model ,"Oonk and Boom (1995), Scharff et al (2003), Spokas et al (2006), Diot et al (2001) ",p 3.19 of 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615109 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,Recovery of landfill gas at SWDS with recovery systems ,landfill gas recovery system ,When the amount of CH4 recovered is based on the total capacity of utilisation equipment or flares sold. ,,,,35 ,% of installed capacity ,,IPCC 2006 Waste model ,"Oonk (1993), Scheehle (2006) ",p 3.19 of 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +615110 ,6A - Solid Waste Disposal on Land,4.A - Solid Waste Disposal,METHANE,,,2006 IPCC default ,period between deposition of waste and full production of CH4 ,,,,,,6 ,months ,"Equation 3.4 and 3.5 in Chapter 3 of Volume 5, 2006 IPCC Guidelines ","IPCC 2006 Waste model, Parameters Tab ",,p 3.19 of 2006 IPCC Guidelines ,IPCC  +,,,,,,,,,,,,,,,,,,, +515111 ,5D - CO2 Emissions and Removals from Soil,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with high activity clay (HAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of HAC soils ,,,Tropical Montane ,,,88 ,tonnes C/ha ,"Equation 2.25, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515112 ,5D - CO2 Emissions and Removals from Soil,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for soils with low activity clay (LAC soils); for 0-30 cm depth; see Comments from Data Provider for the definition of LAC soils ,,,Tropical Montane ,,,63 ,tonnes C/ha ,"Equation 2.25, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515113 ,5D - CO2 Emissions and Removals from Soil,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for sandy soils; for 0-30 cm depth; see Comments from Data Provider for the definition of sandy soils ,,,Tropical Montane ,,,34 ,tonnes C/ha ,"Equation 2.25, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515114 ,5D - CO2 Emissions and Removals from Soil,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for volcanic soils; for 0-30 cm depth; see Comments from Data Provider for the definition of volcanic soils ,,,Tropical Montane ,,,80 ,tonnes C/ha ,"Equation 2.25, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515115 ,5D - CO2 Emissions and Removals from Soil,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default reference (under native vegetation) soil organic C stocks (SOC ref) for wetlands soils; for 0-30 cm depth; see Comments from Data Provider for the definition of wetlands soils ,,,Tropical Montane ,,,86 ,tonnes C/ha ,"Equation 2.25, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,Data are derived from soil databases described by Jobbagy and Jackson (2000) and Bernoux et al. (2002) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.3 (Default reference (under native vegetation) soil organic C stocks (SOCref) for mineral soils, on page 2.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515116 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types ,,Agricultural residues (post harvest field burning): wheat residues ,,,,4 ,t dm/ha ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ","Expert assessment by authors of Volume 4, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515117 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types ,,Agricultural residues (post harvest field burning): maize residues ,,,,10 ,t dm/ha ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ","Expert assessment by authors of Volume 4, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515118 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types ,,Agricultural residues (post harvest field burning): rice residues ,,,,5.5 ,t dm/ha ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ","Expert assessment by authors of Volume 4, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515119 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types ,,Agricultural residues (post harvest field burning): sugarcane ,,,,6.5 ,t dm/ha ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ","Expert assessment by authors of Volume 4, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.4 Fuel (dead organic matter plus live biomass) biomass consumption values for fires in a range of vegetation types; pages 2.45 - 2.46 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415120 ,4E - Prescribed Burning of Savannas,3.C.1.c - Burning in Grassland,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Savanna and grassland ,1613 +/- 95 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1c, Page A1.52, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415121 ,4F - Field Burning of Agricultural Residues,3.C.1.b - Burning in Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Agricultural residues ,1515 +/- 177 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1b, Page A1.50, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515122 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Tropical forest ,,,1580 +/- 90 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515123 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Extra tropical forest ,,,1569 +/- 131 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515124 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Biofuel burning ,,,1550 +/- 95 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415125 ,4E - Prescribed Burning of Savannas,3.C.1.c - Burning in Grassland,CARBON MONOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Savanna and grassland ,65 +/- 20 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1c, Page A1.52, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415126 ,4F - Field Burning of Agricultural Residues,3.C.1.b - Burning in Cropland,CARBON MONOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Agricultural residues ,92 +/- 84 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1b, Page A1.50, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515127 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON MONOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Tropical forest ,,,104 +/- 20 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515128 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON MONOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Extra tropical forest ,,,107 +/- 37 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515129 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON MONOXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Biofuel burning ,,,78 +/- 31 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415130 ,4E - Prescribed Burning of Savannas,3.C.1.c - Burning in Grassland,METHANE,,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Savanna and grassland ,2.3 +/- 0.9 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1c, Page A1.52, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415131 ,4F - Field Burning of Agricultural Residues,3.C.1.b - Burning in Cropland,METHANE,,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Agricultural residues ,2.7 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1b, Page A1.50, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515132 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,METHANE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Tropical forest ,,,6.8 +/- 2.0 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515133 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,METHANE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Extra tropical forest ,,,4.7 +/- 1.9 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515134 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,METHANE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Biofuel burning ,,,6.1 +/- 2.2 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415135 ,4E - Prescribed Burning of Savannas,3.C.1.c - Burning in Grassland,NITROUS OXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Savanna and grassland ,0.21 +/- 0.10 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1c, Page A1.52, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415136 ,4F - Field Burning of Agricultural Residues,3.C.1.b - Burning in Cropland,NITROUS OXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Agricultural residues ,0.07 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1b, Page A1.50, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515137 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,NITROUS OXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Tropical forest ,,,0.2 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515138 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,NITROUS OXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Extra tropical forest ,,,0.26 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515139 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,NITROUS OXIDE,,,2006 IPCC default ,Emission factor for various types of burning ,,,Biofuel burning ,,,0.06 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415140 ,4E - Prescribed Burning of Savannas,3.C.1.c - Burning in Grassland,NITROGEN OXIDES (NO+NO2),,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Savanna and grassland ,3.9 +/- 2.4 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1c, Page A1.52, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415141 ,4F - Field Burning of Agricultural Residues,3.C.1.b - Burning in Cropland,NITROGEN OXIDES (NO+NO2),,,2006 IPCC default ,Emission factor for various types of burning ,,,,,Agricultural residues ,2.5 +/- 1.0 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1b, Page A1.50, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515142 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,NITROGEN OXIDES (NO+NO2),,,2006 IPCC default ,Emission factor for various types of burning ,,,Tropical forest ,,,1.6 +/- 0.7 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515143 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,NITROGEN OXIDES (NO+NO2),,,2006 IPCC default ,Emission factor for various types of burning ,,,Extra tropical forest ,,,3.0 +/- 1.4 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515144 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,NITROGEN OXIDES (NO+NO2),,,2006 IPCC default ,Emission factor for various types of burning ,,,Biofuel burning ,,,1.1 +/- 0.6 ,g/kg dry matter combusted ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ",Based on the comprehensive review by Andreae and Merlet (2001). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.5 Emission factor for various types of burning, on page 2.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515145 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Agricultural residues (post harvest field burning): wheat residues ,,,,0.9 ,fraction ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ","Expert assessment by authors of Volume 4, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515146 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Agricultural residues (post harvest field burning): maize residues ,,,,0.8 ,fraction ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ","Expert assessment by authors of Volume 4, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515147 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Agricultural residues (post harvest field burning): rice residues ,,,,0.8 ,fraction ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ","Expert assessment by authors of Volume 4, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515148 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.C.1.a - Burning in Forest Land,CARBON DIOXIDE,,,2006 IPCC default ,Combustion factor values (proportion of prefire biomass consumed) for fires in a range of vegetation types. ,,Agricultural residues (post harvest field burning): sugarcane ,,,,0.8 ,fraction ,"Equation 2.27, Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 2, Category code 3C1a, Page A1.48, Annex 1 of Volume 4 of the 2006 IPCC Guidelines ","Expert assessment by authors of Volume 4, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 2.6 Combustion factor values (proportion of prefire fuel biomass consumed) for fires in a range of vegetation types; pages 2.48 - 2.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515149 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,Part of tree: All ,,,,0.47 ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","McGroddy et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515150 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,Part of tree: All ,Tropical and Subtropical ,,,0.47 (0.44 - 0.49 ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Andreae and Merlet, 2001; Chambers et al., 2001; McGroddy et al., 2004; Lasco and Pulhin, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515151 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,Part of tree: wood ,Tropical and Subtropical ,,,0.49 ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Feldpausch et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515152 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,"Part of tree: wood, tree diameter < 10cm ",Tropical and Subtropical ,,,0.46 ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Hughes et al., 2000 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515153 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,"Part of tree: wood, tree diameter equal to or greater than 10cm ",Tropical and Subtropical ,,,0.49 ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Hughes et al., 2000 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515154 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,Part of tree: foliage ,Tropical and Subtropical ,,,0.47 ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Feldpausch et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515155 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,"Part of tree: foliage, tree diameter < 10cm ",Tropical and Subtropical ,,,0.43 ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Hughes et al., 2000 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515156 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,"Part of tree: foliage, tree diameter equal to or greater than 10cm ",Tropical and Subtropical ,,,0.46 ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Hughes et al., 2000 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515157 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,Part of tree: All ,Temperate and Boreal ,,,0.47 (0.47 - 0.49) ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Andreae and Merlet, 2001; Gayoso et al., 2002; Matthews, 1993; McGroddy et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515158 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,Part of tree: broad-leaved ,Temperate and Boreal ,,,0.48 (0.46 - 0.50) ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Lamlom and Savidge, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515159 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Carbon fraction of above-ground forest biomass ,,Part of tree: conifers ,Temperate and Boreal ,,,0.51 (0.47 - 0.55) ,tonnes C/tonne dry matter ,"Equations 2.8, 2.9, 2.12, 2.13, 2.14, 2.16, 2.21, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Lamlom and Savidge, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.3 Carbon fraction of above-ground forest biomass; page 4.48 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515160 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Tropical rainforest ,Tropical ,,,0.37 ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Fittkau and Klinge, 1973 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515161 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Tropical moist deciduous forest: above-ground biomass <125 tonnes/ha ,Tropical ,,,0.20 (0.09 - 0.25) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515162 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Tropical moist deciduous forest: above-ground biomass >125 tonnes/ha ,Tropical ,,,0.24 (0.22 - 0.33) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515163 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Tropical dry forest: above-ground biomass <20 tonnes/ha ,Tropical ,,,0.56 (0.28 - 0.68) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515164 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Tropical dry forest: above-ground biomass >20 tonnes/ha ,Tropical ,,,0.28 (0.27 - 0.28) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515165 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Tropical shrubland ,Tropical ,,,0.4 ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Poupon, 1980 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515166 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Tropical mountain systems ,Tropical ,,,0.27 (0.27 - 0.28) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Singh et al., 1994 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515167 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Subtropical humid forest: above-ground biomass <125 tonnes/ha ,Subtropical ,,,0.20 (0.09 - 0.25) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515168 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Subtropical humid forest: above-ground biomass >125 tonnes/ha ,Subtropical ,,,0.24 (0.22 - 0.33) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515169 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Subtropical dry forest: above-ground biomass <20 tonnes/ha ,Subtropical ,,,0.56 (0.28 - 0.68) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515170 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Subtropical dry forest: above-ground biomass >20 tonnes/ha ,Subtropical ,,,0.28 (0.27 - 0.28) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515171 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,Subtropical steppe ,Subtropical ,,,0.32 (0.26 - 0.71) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515172 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: conifers above-ground biomass < 50 tonnes/ha ",Temperate ,,,0.40 (0.21 - 1.06) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515173 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: conifers above-ground biomass 50-150 tonnes/ha ",Temperate ,,,0.29 (0.24 - 0.50) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515174 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: conifers above-ground biomass > 150 tonnes/ha ",Temperate ,,,0.20 (0.12 - 0.49) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515175 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: Quercus spp. above-ground biomass >70 tonnes/ha ",Temperate ,,,0.30 (0.20 - 1.16) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515176 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: Eucalyptus spp. above-ground biomass < 50 tonnes/ha ",Temperate ,,,0.44 (0.29 - 0.81) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515177 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: Eucalyptus spp. above-ground biomass 50-150 tonnes/ha ",Temperate ,,,0.28 (0.15 - 0.81) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515178 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: Eucalyptus spp. above-ground biomass > 150 tonnes/ha ",Temperate ,,,0.20 (0.10 - 0.33) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515179 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: other broadleaf above-ground biomass < 75 tonnes/ha ",Temperate ,,,0.46 (0.12 - 0.93) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515180 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: other broadleaf above-ground biomass 75-150 tonnes/ha ",Temperate ,,,0.23 (0.13 - 0.37) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515181 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Temperate oceanic forest, Temperate continental forest, Temperate mountain systems: other broadleaf above-ground biomass >150 tonnes/ha ",Temperate ,,,0.24 (0.17 - 0.44) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515182 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Boreal coniferous forest, Boreal tundra woodland, Boreal mountain systems: above-ground biomass <75 tonnes/ha ",Boreal ,,,0.39 (0.23 - 0.96) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Li et al., 2003; Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515183 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,"Ratio of below-ground biomass to above-ground biomass, R ",,"Boreal coniferous forest, Boreal tundra woodland, Boreal mountain systems: above-ground biomass >75 tonnes/ha ",Boreal ,,,0.24 (0.15 - 0.37) ,tonne root d.m./tonne shoot d.m. ,"Equations 2.8, 2.10, 2.12, 2.13, 2.14, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Li et al., 2003; Mokany et al., 2006 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.4 Ratio of below-ground biomass to above-ground biomass, R; page 4.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515184 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): <20 ,1.2 (0.85-1.3) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515185 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): <20 ,0.47 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515186 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): <20 ,1.33 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515187 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): <20 ,1.22 (0.9-1.5) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515188 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): <20 ,0.9 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515189 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): <20 ,1.35 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515190 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): <20 ,1.16 (0.8-1.5) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515191 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): <20 ,0.55 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515192 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): <20 ,1.29 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515193 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): <20 ,0.9 (0.7-1.2) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515194 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): <20 ,0.65 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515195 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): <20 ,1 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515196 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): 21-50 ,0.68 (0.5-0.72) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515197 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): 21-50 ,0.46 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515198 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): 21-50 ,0.75 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515199 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): 21-50 ,0.78 (0.7-0.8) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515200 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): 21-50 ,0.75 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515201 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): 21-50 ,0.87 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515202 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): 21-50 ,0.66 (0.55-0.75) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515203 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): 21-50 ,0.47 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515204 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): 21-50 ,0.73 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515205 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): 21-50 ,0.7 (0.6-0.75) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515206 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): 21-50 ,0.54 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515207 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): 21-50 ,0.77 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515208 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): 51-100 ,0.57 (0.52-0.65) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515209 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): 51-100 ,0.46 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515210 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): 51-100 ,0.63 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515211 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): 51-100 ,0.77 (0.7-0.85) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515212 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): 51-100 ,0.77 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515213 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): 51-100 ,0.85 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515214 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): 51-100 ,0.58 (0.5-0.65) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515215 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): 51-100 ,0.47 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515216 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): 51-100 ,0.64 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515217 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): 51-100 ,0.62 (0.53-0.7) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515218 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): 51-100 ,0.52 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515219 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): 51-100 ,0.69 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515220 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): >100 ,0.5 (0.45-0.58) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515221 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): >100 ,0.463 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515222 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Boreal ,,Growing stock level (m^3): >100 ,0.55 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515223 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): >100 ,0.77 (0.7-0.85) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515224 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): >100 ,0.77 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515225 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: larch ,Boreal ,,Growing stock level (m^3): >100 ,0.85 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515226 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): >100 ,0.53 (0.45-0.605) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515227 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): >100 ,0.464 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515228 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: firs and spruces ,Boreal ,,Growing stock level (m^3): >100 ,0.59 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515229 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): >100 ,0.55 (0.5-0.65) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515230 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): >100 ,0.505 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515231 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Boreal ,,Growing stock level (m^3): >100 ,0.61 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Boreal forests: Alexeyev V.A. and R.A. Birdseye, 1998; Fang J. and Z.M. Wang, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515232 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): <20 ,3.0 (0.8-4.5) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515233 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): <20 ,1.5 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515234 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): <20 ,3.33 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515235 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): <20 ,1.8 (0.6 -2.4) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515236 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): <20 ,1.5 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515237 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): <20 ,2 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515238 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): <20 ,3.0 (0.7-4.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515239 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): <20 ,1 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515240 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): <20 ,3.33 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515241 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 21-40 ,1.7 (0.8-2.6) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515242 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 21-40 ,1.3 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515243 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 21-40 ,1.89 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515244 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 21-40 ,1.0 (0.65 -1.5) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515245 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 21-40 ,0.75 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515246 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 21-40 ,1.11 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515247 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 21-40 ,1.4 (0.5-2.5) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515248 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 21-40 ,0.83 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515249 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 21-40 ,1.55 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515250 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 41-100 ,1.4 (0.7-1.9) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515251 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 41-100 ,0.9 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515252 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 41-100 ,1.55 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515253 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 41-100 ,0.75 (0.6-1.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515254 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 41-100 ,0.6 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515255 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 41-100 ,0.83 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515256 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 41-100 ,1.0 (0.5-1.4) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515257 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 41-100 ,0.57 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515258 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 41-100 ,1.11 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515259 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 100-200 ,1.05 (0.6-1.4) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515260 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 100-200 ,0.6 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515261 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): 100-200 ,1.17 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515262 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 100-200 ,0.7 (0.4-1.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515263 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 100-200 ,0.67 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515264 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): 100-200 ,0.77 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515265 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 100-200 ,0.75 (0.4-1.2) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515266 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 100-200 ,0.53 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515267 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): 100-200 ,0.83 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515268 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): >200 ,0.8 (0.55-1.1) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515269 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): >200 ,0.48 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515270 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,Temperate ,,Growing stock level (m^3): >200 ,0.89 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515271 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): >200 ,0.7 (0.4-1.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515272 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): >200 ,0.69 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515273 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: pines ,Temperate ,,Growing stock level (m^3): >200 ,0.77 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515274 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): >200 ,0.7 (0.35-0.9) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515275 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): >200 ,0.6 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515276 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: other conifers ,Temperate ,,Growing stock level (m^3): >200 ,0.77 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Temperate forests: Fang J. et al., 2001; Fukuda M. et al., 2003; Schroeder P. et al., 1997; Snowdon P. et.al., 2000; Smith J. et. al., 2002; Brown S., 1999; Schoene D. and A. Schulte, 1999; Smith J. et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515277 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): <20 ,5.0 (2.0-8.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515278 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): <20 ,1.5 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515279 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): <20 ,5.55 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515280 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): <20 ,6.0 (3.0-8.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515281 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): <20 ,1.5 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515282 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): <20 ,6.67 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515283 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 21-40 ,1.9 (1.0-2.6) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515284 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 21-40 ,0.5 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515285 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 21-40 ,2.11 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515286 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 21-40 ,1.2 (0.5-2.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515287 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 21-40 ,0.4 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515288 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 21-40 ,1.33 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515289 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 41-80 ,0.8 (0.6-1.4) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515290 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 41-80 ,0.55 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515291 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 41-80 ,0.89 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515292 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 41-80 ,0.6 (0.4-0.9) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515293 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 41-80 ,0.45 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515294 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): 41-80 ,0.67 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515295 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): >80 ,0.66 (0.4-0.9) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515296 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): >80 ,0.66 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515297 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: hardwoods ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): >80 ,0.73 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515298 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): >80 ,0.55 (0.4-0.7) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515299 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): >80 ,0.54 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515300 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,"Mediterranean, dry tropical, subtropical ",,Growing stock level (m^3): >80 ,0.61 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Mediterranean forests: Vayreda et al., 2002; Gracia et al., 2002; Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515301 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): <10 ,4.0 (3.0-6.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515302 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): <10 ,2.5 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515303 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): <10 ,4.44 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515304 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): <10 ,9.0 (4.0-12.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515305 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): <10 ,4.5 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515306 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): <10 ,10 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515307 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 11-20 ,1.75 (1.4-2.4) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515308 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 11-20 ,0.95 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515309 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 11-20 ,1.94 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515310 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 11-20 ,4.0 (2.5-4.5) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515311 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 11-20 ,1.6 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515312 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 11-20 ,4.44 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515313 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 21-40 ,1.25 (1.0-1.5) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515314 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 21-40 ,0.65 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515315 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 21-40 ,1.39 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515316 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 21-40 ,2.8 (1.4-3.4) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515317 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 21-40 ,1.1 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515318 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 21-40 ,3.11 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515319 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 41-60 ,1.0 (0.8-1.2) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515320 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 41-60 ,0.55 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515321 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 41-60 ,1.11 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515322 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 41-60 ,2.05 (1.2-2.5) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515323 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 41-60 ,0.93 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515324 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 41-60 ,2.28 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515325 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 61-80 ,0.8 (0.7-1.2) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515326 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 61-80 ,0.53 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515327 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 61-80 ,0.89 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515328 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 61-80 ,1.7 (1.2-2.2) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515329 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 61-80 ,0.9 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515330 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 61-80 ,1.89 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515331 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 80-120 ,0.76 (0.6-1.0) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515332 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 80-120 ,0.58 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515333 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 80-120 ,0.84 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515334 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 80-120 ,1.5 (1.0-1.8) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515335 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 80-120 ,0.87 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515336 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 80-120 ,1.67 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515337 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 120-200 ,0.7 (0.6-0.9) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515338 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 120-200 ,0.66 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515339 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): 120-200 ,0.77 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515340 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 120-200 ,1.3(0.9-1.6) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515341 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 120-200 ,0.86 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515342 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): 120-200 ,1.44 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515343 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): >200 ,0.7 (0.6-0.9) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515344 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): >200 ,0.7 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515345 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: conifers ,Humid tropical ,,Growing stock level (m^3): >200 ,0.77 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515346 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for expansion of merchantable growing stock volume to above-ground biomass (BCEFs) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): >200 ,0.95 (0.7-1.1) ,tonnes biomass/m^3 of wood volume ,Equation 2.8 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515347 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of net annual increment (BCEFi) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): >200 ,0.85 ,tonnes biomass/m^3 of wood volume ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515348 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Default biomass conversion and expansion factor for conversion of wood and fuelwood removal volume to above-ground biomass removal (BCEFr) ,,Forest type: natural forests ,Humid tropical ,,Growing stock level (m^3): >200 ,1.05 ,tonnes biomass/m^3 of wood volume ,"Equations 2.12, 2.13, and 2.22 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 2 of 4, Category Code 3B1a, Page A1.10 of Volume 4 of the 2006 IPCC Guidelines ","Tropical forests: Brown S. et al., 1989; Brown S. and A. Lugo, 1992; Brown S., 2002; Fang J.Y., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.5 Default biomass conversion and expansion factors (BCEF); pages 4.50 - 4.52 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515349 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical rain forest ,Africa ,,,310 (130-510) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515350 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical rain forest ,North and South America ,,,300 (120-400) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Baker et al., 2004a; Hughes et al., 1999 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515351 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical rain forest ,Asia (continental) ,,,280 (120-680) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515352 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical rain forest ,Asia (insular) ,,,350 (280-520) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515353 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical moist deciduous forest ,Africa ,,,260 (160-430) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515354 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical moist deciduous forest ,North and South America ,,,220 (210-280) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515355 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical moist deciduous forest ,Asia (continental) ,,,180 (10-560) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515356 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical moist deciduous forest ,Asia (insular) ,,,290 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515357 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical dry forest ,Africa ,,,120 (120-130) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515358 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical dry forest ,North and South America ,,,210 (200-410) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515359 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical dry forest ,Asia (continental) ,,,130 (100-160) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515360 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical dry forest ,Asia (insular) ,,,160 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515361 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical shrubland ,Africa ,,,70 (20-200) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515362 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical shrubland ,North and South America ,,,80 (40-90) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515363 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical shrubland ,Asia (continental) ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515364 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical shrubland ,Asia (insular) ,,,70 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515365 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical mountain systems ,Africa ,,,40-190 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515366 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical mountain systems ,North and South America ,,,60-230 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515367 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical mountain systems ,Asia (continental) ,,,50-220 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515368 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Tropical mountain systems ,Asia (insular) ,,,50-360 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515369 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical humid forest ,North and South America ,,,220 (210-280) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515370 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical humid forest ,Asia (continental) ,,,180 (10-560) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515371 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical humid forest ,Asia (insular) ,,,290 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515372 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical dry forest ,Africa ,,,140 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Sebei et al., 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515373 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical dry forest ,North and South America ,,,210 (200-410) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515374 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical dry forest ,Asia (continental) ,,,130 (100-160) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515375 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical dry forest ,Asia (insular) ,,,160 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515376 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical steppe ,Africa ,,,70 (20-200) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515377 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical steppe ,North and South America ,,,80 (40-90) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515378 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical steppe ,Asia (continental) ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515379 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical steppe ,Asia (insular) ,,,70 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515380 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical mountain systems ,Africa ,,,50 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515381 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical mountain systems ,North and South America ,,,60-230 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515382 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical mountain systems ,Asia (continental) ,,,50-220 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515383 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Subtropical mountain systems ,Asia (insular) ,,,50-360 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515384 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate oceanic forest ,Europe ,,,120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,- ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515385 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate oceanic forest ,North America ,,,660 (80-1200) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hessl et al., 2004; Smithwick et al., 2002 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515386 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate oceanic forest ,New Zealand ,,,360 (210-430) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hall et al., 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515387 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate oceanic forest ,South America ,,,180 (90-310) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Gayoso and Schlegel, 2003; Battles et al., 2002 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515388 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate continental forest ,"Asia, Europe (=20 y) ",,,20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515389 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate continental forest ,"Asia, Europe (>20 y) ",,,120 (20-320) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515390 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate continental forest ,North and South America (=20 y) ,,,60 (10-130) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515391 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate continental forest ,North and South America (>20 y) ,,,130 (50-200) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515392 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate mountain systems ,"Asia, Europe (=20 y) ",,,100 (20-180) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515393 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate mountain systems ,"Asia, Europe (>20 y) ",,,130 (20-600) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515394 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate mountain systems ,North and South America (=20 y) ,,,50 (20-110) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515395 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Temperate mountain systems ,North and South America (>20 y) ,,,130 (40-280) ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515396 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Boreal coniferous forest ,"Asia, Europe, North America ",,,10-90 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Gower et al., 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515397 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Boreal tundra woodland ,"Europe, North America (=20 y) ",,,3-4 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515398 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Boreal tundra woodland ,"Asia, Europe, North America (>20 y) ",,,15-20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515399 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Boreal mountain systems ,"Asia, Europe, North America (=20 y) ",,,12-15 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515400 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forests ,,Boreal mountain systems ,"Asia, Europe, North America (>20 y) ",,,40-50 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.7 Above-ground biomass in forests; pages 4.53-4.54 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515401 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Africa broadleaf > 20 y ,,,300 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515402 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Africa broadleaf = 20 y ,,,100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515403 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Africa Pinus sp. > 20 y ,,,200 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515404 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Africa Pinus sp. = 20 y ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515405 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Americas Eucalyptus sp. ,,,200 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515406 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Americas Pinus sp. ,,,300 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515407 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Americas Tectona grandis ,,,240 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Kraenzel et al., 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515408 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Americas other broadleaf ,,,150 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515409 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Asia broadleaf ,,,220 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515410 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical rain forest ,Asia other ,,,130 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515411 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Africa broadleaf > 20 y ,,,150 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515412 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Africa broadleaf = 20 y ,,,80 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515413 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Africa Pinus sp. > 20 y ,,,120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515414 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Africa Pinus sp. = 20 y ,,,40 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515415 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Americas Eucalyptus sp. ,,,90 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Stape et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515416 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Americas Pinus sp. ,,,270 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515417 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Americas Tectona grandis ,,,120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515418 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Americas other broadleaf ,,,100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515419 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Asia broadleaf ,,,180 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515420 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical moist deciduous forest ,Asia other ,,,100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515421 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Africa broadleaf > 20 y ,,,70 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515422 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Africa broadleaf = 20 y ,,,30 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515423 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Africa Pinus sp. > 20 y ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515424 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Africa Pinus sp. = 20 y ,,,20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515425 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Americas Eucalyptus sp. ,,,90 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Stape et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515426 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Americas Pinus sp. ,,,110 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515427 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Americas Tectona grandis ,,,90 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515428 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Americas other broadleaf ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515429 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Asia broadleaf ,,,90 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515430 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical dry forest ,Asia other ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515431 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Africa broadleaf ,,,20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515432 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Africa Pinus sp. > 20 y ,,,20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515433 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Africa Pinus sp. = 20 y ,,,15 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515434 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Americas Eucalyptus sp. ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515435 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Americas Pinus sp. ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515436 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Americas Tectona grandis ,,,50 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515437 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Americas other broadleaf ,,,30 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515438 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Asia broadleaf ,,,40 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515439 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical shrubland ,Asia other ,,,30 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515440 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Africa broadleaf > 20 y ,,,60-150 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515441 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Africa broadleaf = 20 y ,,,40-100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515442 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Africa Pinus sp. > 20 y ,,,30-100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515443 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Africa Pinus sp. = 20 y ,,,10-40 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515444 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Americas Eucalyptus sp. ,,,30-120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515445 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Americas Pinus sp. ,,,60-170 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515446 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Americas Tectona grandis ,,,30-130 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515447 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Americas other broadleaf ,,,30-80 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515448 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Asia broadleaf ,,,40-150 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515449 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Tropical mountain systems ,Asia other ,,,25-80 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515450 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical humid forest ,Americas Eucalyptus sp. ,,,140 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515451 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical humid forest ,Americas Pinus sp. ,,,270 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515452 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical humid forest ,Americas Tectona grandis ,,,120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515453 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical humid forest ,Americas other broadleaf ,,,100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515454 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical humid forest ,Asia broadleaf ,,,180 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515455 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical humid forest ,Asia other ,,,100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515456 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Africa broadleaf > 20 y ,,,70 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515457 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Africa broadleaf = 20 y ,,,30 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515458 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Africa Pinus sp. > 20 y ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515459 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Africa Pinus sp. = 20 y ,,,20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515460 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Americas Eucalyptus sp. ,,,110 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515461 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Americas Pinus sp. ,,,110 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515462 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Americas Tectona grandis ,,,90 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515463 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Americas other broadleaf ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515464 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Asia broadleaf ,,,90 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515465 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical dry forest ,Asia other ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515466 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Africa broadleaf ,,,20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515467 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Africa Pinus sp. > 20 y ,,,20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515468 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Africa Pinus sp. = 20 y ,,,15 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515469 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Americas Eucalyptus sp. ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515470 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Americas Pinus sp. ,,,60 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515471 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Americas Tectona grandis ,,,50 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515472 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Americas other broadleaf ,,,30 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515473 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Asia broadleaf > 20 y ,,,80 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515474 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Asia broadleaf = 20 y ,,,10 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515475 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Asia coniferous > 20 y ,,,20 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515476 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical steppe ,Asia coniferous = 20 y ,,,100-120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515477 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Africa broadleaf > 20 y ,,,60-150 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515478 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Africa broadleaf = 20 y ,,,40-100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515479 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Africa Pinus sp. > 20 y ,,,30-100 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515480 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Africa Pinus sp. = 20 y ,,,10-40 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515481 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Americas Eucalyptus sp. ,,,30-120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515482 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Americas Pinus sp. ,,,60-170 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515483 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Americas Tectona grandis ,,,30-130 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515484 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Americas other broadleaf ,,,30-80 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515485 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Asia broadleaf ,,,40-150 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515486 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Subtropical mountain systems ,Asia other ,,,25-80 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515487 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate oceanic forest ,"Asia, Europe, broadleaf > 20 y ",,,200 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515488 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate oceanic forest ,"Asia, Europe, broadleaf = 20 y ",,,30 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515489 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate oceanic forest ,"Asia, Europe, coniferous > 20 y ",,,150-250 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515490 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate oceanic forest ,"Asia, Europe, coniferous = 20 y ",,,40 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515491 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate oceanic forest ,North America ,,,50-300 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515492 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate oceanic forest ,New Zealand ,,,150-350 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hinds and Reid, 1957; Hall and Hollinger, 1997; Hall, 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515493 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate oceanic forest ,South America ,,,90-120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515494 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate continental forest and mountain systems ,"Asia, Europe, broadleaf > 20 y ",,,200 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515495 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate continental forest and mountain systems ,"Asia, Europe, broadleaf = 20 y ",,,15 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515496 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate continental forest and mountain systems ,"Asia, Europe, coniferous > 20 y ",,,150-200 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515497 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate continental forest and mountain systems ,"Asia, Europe, coniferous = 20 y ",,,25-30 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515498 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate continental forest and mountain systems ,North America ,,,50-300 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515499 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Temperate continental forest and mountain systems ,South America ,,,90-120 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515500 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Boreal coniferous forest and mountain systems ,"Asia, Europe > 20 y ",,,40 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515501 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Boreal coniferous forest and mountain systems ,"Asia, Europe = 20 y ",,,5 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515502 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Boreal coniferous forest and mountain systems ,North America ,,,40-50 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515503 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Boreal tundra woodland ,"Asia, Europe > 20 y ",,,25 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515504 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Boreal tundra woodland ,"Asia, Europe = 20 y ",,,5 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515505 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Boreal tundra woodland ,North America ,,,25 ,tonnes dry matter/ha ,Equations 2.9 and 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.8 Above-ground biomass in forest plantations; pages 4.54-4.56 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515506 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,Africa (=20 y) ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515507 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,Africa (>20 y) ,,,3.1 (2.3-3.8) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515508 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,North America ,,,0.9-18 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Clark et al., 2003 ; Hughes et al., 1999 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515509 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,South America (=20 y) ,,,11 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Feldpausch et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515510 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,South America (>20 y) ,,,3.1 (1.5-5.5) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Malhi et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515511 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,Asia (continental =20 y) ,,,7.0 (3.0-11.0) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515512 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,Asia (continental >20 y) ,,,2.2 (1.3-3.0) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515513 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,Asia (insular =20 y) ,,,13 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515514 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical rain forest ,Asia (insular >20 y) ,,,3.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515515 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical moist deciduous forest ,Africa (=20 y) ,,,5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Harmand et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515516 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical moist deciduous forest ,Africa (>20 y) ,,,1.3 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515517 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical moist deciduous forest ,North and South America (=20 y) ,,,7.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515518 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical moist deciduous forest ,North and South America (>20 y) ,,,2.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515519 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical moist deciduous forest ,Asia (continental =20 y) ,,,9.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515520 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical moist deciduous forest ,Asia (continental >20 y) ,,,2.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515521 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical moist deciduous forest ,Asia (insular =20 y) ,,,11 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515522 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical moist deciduous forest ,Asia (insular >20 y) ,,,3.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515523 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical dry forest ,Africa (=20 y) ,,,2.4 (2.3-2.5) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515524 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical dry forest ,Africa (>20 y) ,,,1.8 (0.6-3.0) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515525 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical dry forest ,North and South America (=20 y) ,,,4.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515526 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical dry forest ,North and South America (>20 y) ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515527 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical dry forest ,Asia (continental =20 y) ,,,6.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515528 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical dry forest ,Asia (continental >20 y) ,,,1.5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515529 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical dry forest ,Asia (insular =20 y) ,,,7.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515530 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical dry forest ,Asia (insular >20 y) ,,,2.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515531 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical shrubland ,Africa (=20 y) ,,,0.2-0.7 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515532 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical shrubland ,Africa (>20 y) ,,,0.9 (0.2-1.6) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515533 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical shrubland ,North and South America (=20 y) ,,,4.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515534 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical shrubland ,North and South America (>20 y) ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515535 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical shrubland ,Asia (continental =20 y) ,,,5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515536 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical shrubland ,Asia (continental >20 y) ,,,1.3 (1.0-2.2) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515537 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical shrubland ,Asia (insular =20 y) ,,,2.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515538 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical shrubland ,Asia (insular >20 y) ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515539 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical mountain systems ,Africa (=20 y) ,,,2.0-5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515540 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical mountain systems ,Africa (>20 y) ,,,1.0-1.5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515541 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical mountain systems ,North and South America (=20 y) ,,,1.8-5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515542 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical mountain systems ,North and South America (>20 y) ,,,0.4-1.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515543 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical mountain systems ,Asia (continental =20 y) ,,,1.0-5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515544 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical mountain systems ,Asia (continental >20 y) ,,,0.5-1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515545 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical mountain systems ,Asia (insular =20 y) ,,,3.0-12 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515546 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Tropical mountain systems ,Asia (insular >20 y) ,,,1.0-3.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515547 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical humid forest ,North and South America (=20 y) ,,,7.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515548 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical humid forest ,North and South America (>20 y) ,,,2.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515549 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical humid forest ,Asia (continental =20 y) ,,,9.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515550 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical humid forest ,Asia (continental >20 y) ,,,2.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515551 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical humid forest ,Asia (insular =20 y) ,,,11 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515552 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical humid forest ,Asia (insular >20 y) ,,,3.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515553 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical dry forest ,Africa (=20 y) ,,,2.4 (2.3-2.5) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515554 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical dry forest ,Africa (>20 y) ,,,1.8 (0.6-3.0) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515555 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical dry forest ,North and South America (=20 y) ,,,4.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515556 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical dry forest ,North and South America (>20 y) ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515557 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical dry forest ,Asia (continental =20 y) ,,,6.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515558 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical dry forest ,Asia (continental >20 y) ,,,1.5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515559 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical dry forest ,Asia (insular =20 y) ,,,7.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515560 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical dry forest ,Asia (insular >20 y) ,,,2.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515561 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical steppe ,Africa (=20 y) ,,,1.2 (0.8-1.5) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515562 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical steppe ,Africa (>20 y) ,,,0.9 (0.2-1.6) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515563 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical steppe ,North and South America (=20 y) ,,,4.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515564 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical steppe ,North and South America (>20 y) ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515565 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical steppe ,Asia (continental =20 y) ,,,5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515566 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical steppe ,Asia (continental >20 y) ,,,1.3 (1.0-2.2) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515567 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical steppe ,Asia (insular =20 y) ,,,2.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515568 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical steppe ,Asia (insular >20 y) ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515569 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical mountain systems ,Africa (=20 y) ,,,2.0-5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515570 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical mountain systems ,Africa (>20 y) ,,,1.0-1.5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515571 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical mountain systems ,North and South America (=20 y) ,,,1.8-5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515572 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical mountain systems ,North and South America (>20 y) ,,,0.4-1.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515573 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical mountain systems ,Asia (continental =20 y) ,,,1.0-5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515574 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical mountain systems ,Asia (continental >20 y) ,,,0.5-1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515575 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical mountain systems ,Asia (insular =20 y) ,,,3.0-12 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515576 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Subtropical mountain systems ,Asia (insular >20 y) ,,,1.0-3.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515577 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Temperate oceanic forest ,Europe ,,,2.3 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515578 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Temperate oceanic forest ,North America ,,,15 (1.2-105) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Hessl et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515579 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Temperate oceanic forest ,New Zealand ,,,3.5 (3.2-3.8) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Coomes et al., 2002 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515580 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Temperate oceanic forest ,South America ,,,2.4-8.9 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Echevarria and Lara, 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515581 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Temperate continental forest ,"Asia, Europe, North America (=20 y) ",,,4.0 (0.5-8.0) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515582 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Temperate continental forest ,"Asia, Europe, North America (>20 y) ",,,4.0 (0.5-7.5) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515583 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Temperate mountain systems ,"Asia, Europe, North America ",,,3.0 (0.5-6.0) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515584 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Boreal coniferous forest ,"Asia, Europe, North America ",,,0.1-2.1 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Gower et al., 2001 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515585 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Boreal tundra woodland ,"Asia, Europe, North America ",,,0.4 (0.2-0.5) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515586 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Boreal mountain systems ,"Asia, Europe, North America (=20 y) ",,,1.0-1.1 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515587 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Boreal mountain systems ,"Asia, Europe, North America (>20 y) ",,,1.1-1.5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.9 Above-ground net biomass growth in natural forests; pages 4.57-4.58 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515588 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical rain forest ,Africa Pinus sp. = 20 y ,,,20 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515589 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical rain forest ,Africa other = 20 y ,,,6 (5-8) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515590 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical rain forest ,Americas Eucalyptus sp. ,,,20 (6-40) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515591 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical rain forest ,Americas Pinus sp. ,,,20 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515592 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical rain forest ,Americas Tectona grandis ,,,15 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515593 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical rain forest ,Americas other broadleaf ,,,20 (5-35) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515594 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical rain forest ,Asia Eucalyptus sp. ,,,5 (4-8) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515595 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical rain forest ,Asia other ,,,5 (2-8) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515596 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Africa Eucalyptus sp. >20 y ,,,25 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515597 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Africa Eucalyptus sp. =20 y ,,,20 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515598 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Africa Pinus sp. > 20 y ,,,15 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515599 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Africa Pinus sp. = 20 y ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515600 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Africa other = 20 y ,,,9 (3-15) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515601 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Americas Eucalyptus sp. ,,,16 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Stape et al., 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515602 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Americas Pinus sp. ,,,7 (4-10) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515603 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Americas Tectona grandis ,,,8 (4-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515604 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Americas other broadleaf ,,,6-20 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","Lugo et al., 1990 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515605 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical moist deciduous forest ,Asia ,,,8 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515606 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Africa Eucalyptus sp. =20 y ,,,13 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515607 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Africa Pinus sp. > 20 y ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515608 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Africa Pinus sp. = 20 y ,,,8 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515609 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Africa other = 20 y ,,,10 (4-20) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515610 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Americas Eucalyptus sp. ,,,20 (6-30) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515611 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Americas Pinus sp. ,,,7 (4-10) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515612 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Americas Tectona grandis ,,,8 (4-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515613 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Americas other broadleaf ,,,10 (3-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515614 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Asia Eucalyptus sp. ,,,15 (5-25) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515615 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical dry forest ,Asia other ,,,7 (2-13) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515616 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Africa Eucalyptus sp. >20 y ,,,8 (5-14) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515617 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Africa Eucalyptus sp. =20 y ,,,5 (3-7) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515618 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Africa Pinus sp. > 20 y ,,,2.5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515619 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Africa Pinus sp. = 20 y ,,,3 (0.5-6) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515620 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Africa other > 20 y ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515621 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Africa other = 20 y ,,,15 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515622 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Americas Eucalyptus sp. ,,,20 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515623 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Americas Pinus sp. ,,,5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515624 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical shrubland ,Asia ,,,6 (1-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515625 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical mountain systems ,Africa ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515626 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical mountain systems ,Americas Eucalyptus sp. ,,,10 (8-18) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515627 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical mountain systems ,Americas Pinus sp. ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515628 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical mountain systems ,Americas Tectona grandis ,,,2 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515629 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical mountain systems ,Americas other broadleaf ,,,4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515630 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical mountain systems ,Asia Eucalyptus sp. ,,,3 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515631 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Tropical mountain systems ,Asia other ,,,5 (1-10) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515632 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical humid forest ,Americas Eucalyptus sp. ,,,20 (6-32) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515633 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical humid forest ,Americas Pinus sp. ,,,7 (4-10) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515634 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical humid forest ,Americas Tectona grandis ,,,8 (4-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515635 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical humid forest ,Americas other broadleaf ,,,10 (3-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515636 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical humid forest ,Asia ,,,8 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515637 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Africa Eucalyptus sp. =20 y ,,,13 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515638 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Africa Pinus sp. > 20 y ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515639 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Africa Pinus sp. = 20 y ,,,8 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515640 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Africa other = 20 y ,,,10 (4-20) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515641 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Americas Eucalyptus sp. ,,,20 (6-30) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515642 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Americas Pinus sp. ,,,7 (4-10) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515643 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Americas Tectona grandis ,,,8 (4-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515644 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Americas other broadleaf ,,,10 (3-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515645 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Asia Eucalyptus sp. ,,,15 (5-25) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515646 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical dry forest ,Asia other ,,,7 (2-13) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515647 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Africa Eucalyptus sp. >20 y ,,,8 (5-14) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515648 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Africa Eucalyptus sp. =20 y ,,,5 (3-7) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515649 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Africa Pinus sp. > 20 y ,,,2.5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515650 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Africa Pinus sp. = 20 y ,,,3 (0.5-6) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515651 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Africa other > 20 y ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515652 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Africa other = 20 y ,,,15 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515653 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Americas Eucalyptus sp. ,,,20 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515654 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Americas Pinus sp. ,,,5 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515655 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical steppe ,Asia ,,,6 (1-12) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515656 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical mountain systems ,Africa ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515657 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical mountain systems ,Americas Eucalyptus sp. ,,,10 (8-18) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515658 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical mountain systems ,Americas Pinus sp. ,,,10 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515659 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical mountain systems ,Americas Tectona grandis ,,,2 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515660 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical mountain systems ,Americas other broadleaf ,,,4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515661 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical mountain systems ,Asia Eucalyptus sp. ,,,3 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515662 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in tropical and sub-tropical forest plantations ,,Subtropical mountain systems ,Asia other ,,,5 (1-10) ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ","IPCC, 2003 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.10 Above-ground net biomass growth in tropical and sub-tropical forest plantations, pages 4.59-4.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515663 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Acacia mellifera ,Africa ,,,2.2 (min); 4.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515664 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Acacia nilotica ,Africa ,,,15.0 (min); 20.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515665 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Acacia senegal ,Africa ,,,1.4 (min); 2.6 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515666 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Acacia seyal ,Africa ,,,2.0 (min); 6.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515667 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Ailanthus excelsa ,Africa ,,,6.6 (min); 9.4 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515668 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Bamboo bamboo ,Africa ,,,5.0 (min); 7.5 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515669 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Cupressus spp. ,Africa ,,,15.0 (min); 24.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515670 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Eucalyptus spp. ,Africa ,,,12.0 (min); 14.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515671 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Khaya spp. ,Africa ,,,8.5 (min); 12.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515672 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Tectona grandis ,Africa ,,,2.5 (min); 3.5 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515673 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Eucalyptus camaldulensis ,Asia ,,,21.0 (min); 43.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515674 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Pinus spp. ,Asia ,,,4.0 (min); 15.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515675 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Tectona grandis ,South America ,,,7.3 (min); 17.3 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515676 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Xylia xylocapa ,South America ,,,3.0 (min); 8.8 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515677 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Acacia spp. ,South America ,,,15.0 (min); 30.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515678 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Araucaria angustifolia ,South America ,,,15.0 (min); 30.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515679 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Eucalyptus spp. ,South America ,,,20.0 (min); 70.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515680 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Hevea brasiliensis ,South America ,,,10.0 (min); 20.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515681 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Mimosa scabrella ,South America ,,,10.0 (min); 25.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515682 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Pinus spp. ,South America ,,,25.0 (min); 40.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515683 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Populus spp. ,South America ,,,10.0 (min); 30.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515684 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Productive plantations ,Tree species: Tectona grandis ,South America ,,,15.0 (min); 35.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515685 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Acacia albida ,Africa ,,,4.0 (min); 6.1 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515686 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Acacia mellifera ,Africa ,,,1.9 (min); 3.5 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515687 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Acacia nilotica ,Africa ,,,12.5 (min); 20.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515688 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Acacia senegal ,Africa ,,,1.1 (min); 2.4 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515689 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Acacia seyal ,Africa ,,,1.8 (min); 3.2 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515690 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Acacia tortilis ,Africa ,,,1.2 (min); 3.7 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515691 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Acacia tortilis var siprocarpa ,Africa ,,,1.5 (min); 2.4 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515692 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Balanites aegyptiaca ,Africa ,,,1.2 (min); 1.5 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515693 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Sclerocarya birrea ,Africa ,,,1.5 (min); 1.7 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515694 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,"Productive, semi-natural forests ",Tree species: Ziziphus mauritiana ,Africa ,,,0.9 (min); 1.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515695 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Acacia mellifera ,Africa ,,,2.0 (min); 6.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515696 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Acacia nilotica ,Africa ,,,13.0 (min); 21.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515697 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Acacia senegal ,Africa ,,,1.4 (min); 2.8 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515698 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Acacia seyal ,Africa ,,,1.9 (min); 4.3 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515699 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Ailanthus spp. ,Africa ,,,6.0 (min); 12.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515700 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Bamboo bamboo ,Africa ,,,4.0 (min); 8.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515701 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Cupressus spp. ,Africa ,,,14.0 (min); 20.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515702 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Eucalyptus spp. ,Africa ,,,10.0 (min); 14.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515703 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Khaya spp. ,Africa ,,,7.0 (min); 16.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515704 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective plantations ,Tree species: Tectona grandis ,Africa ,,,5.0 (min); 8.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515705 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Acacia albida ,Africa ,,,4.0 (min); 6.2 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515706 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Acacia mellifera ,Africa ,,,1.7 (min); 3.2 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515707 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Acacia nilotica ,Africa ,,,12.0 (min); 15.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515708 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Acacia senegal ,Africa ,,,1.1 (min); 2.4 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515709 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Acacia seyal ,Africa ,,,1.8 (min); 3.3 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515710 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Acacia tortilis ,Africa ,,,1.3 (min); 3.5 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515711 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Acacia tortilis var siprocarpa ,Africa ,,,1.6 (min); 2.4 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515712 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Balanites aegyptiaca ,Africa ,,,1.2 (min); 1.5 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515713 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Sclerocarya birrea ,Africa ,,,1.5 (min); 1.7 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515714 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Mean annual increment (growth of merchantable volume) for some forest plantation species ,Protective Semi-natural plantations ,Tree species: Ziziphus mauritiana ,Africa ,,,0.9 (min); 1.0 (max) ,m3/ha/year ,Equation 2.10 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Source: FAO at http://www.fao.org/forestry/ ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.11B Mean annual increment (growth of merchantable volume) for some forest plantation species, pages 4.62-4.63 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515715 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Tropical rain forest ,Climate domain: Tropical ,,,300 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515716 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Tropical moist deciduous forest ,Climate domain: Tropical ,,,180 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515717 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Tropical dry forest ,Climate domain: Tropical ,,,130 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515718 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Tropical shrubland ,Climate domain: Tropical ,,,70 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515719 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Tropical mountain systems ,Climate domain: Tropical ,,,140 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515720 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Subtropical humid forest ,Climate domain: Sub- tropical ,,,220 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515721 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Subtropical dry forest ,Climate domain: Sub- tropical ,,,130 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515722 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Subtropical steppe ,Climate domain: Sub- tropical ,,,70 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515723 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Subtropical mountain systems ,Climate domain: Sub- tropical ,,,140 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515724 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Temperate oceanic forest ,Climate domain: Temperate ,,,180 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515725 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Temperate continental forest ,Climate domain: Temperate ,,,120 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515726 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: Temperate mountain systems ,Climate domain: Temperate ,,,100 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515727 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: ,Climate domain: Boreal ,,,50 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515728 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: ,Climate domain: Boreal ,,,15 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515729 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in natural forests ,,Ecological zone: ,Climate domain: Boreal ,,,30 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515730 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Tropical rain forest ,Climate domain: Tropical ,,,150 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515731 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Tropical moist deciduous forest ,Climate domain: Tropical ,,,120 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515732 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Tropical dry forest ,Climate domain: Tropical ,,,60 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515733 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Tropical shrubland ,Climate domain: Tropical ,,,30 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515734 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Tropical mountain systems ,Climate domain: Tropical ,,,90 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515735 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Subtropical humid forest ,Climate domain: Sub- tropical ,,,140 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515736 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Subtropical dry forest ,Climate domain: Sub- tropical ,,,60 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515737 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Subtropical steppe ,Climate domain: Sub- tropical ,,,30 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515738 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Subtropical mountain systems ,Climate domain: Sub- tropical ,,,90 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515739 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Temperate oceanic forest ,Climate domain: Temperate ,,,160 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515740 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Temperate continental forest ,Climate domain: Temperate ,,,100 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515741 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: Temperate mountain systems ,Climate domain: Temperate ,,,100 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515742 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: ,Climate domain: Boreal ,,,40 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515743 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: ,Climate domain: Boreal ,,,15 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515744 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass in forest plantations ,,Ecological zone: ,Climate domain: Boreal ,,,30 ,tonnes dry matter/ha ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515745 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Tropical rain forest ,Climate domain: Tropical ,,,7.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515746 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Tropical moist deciduous forest ,Climate domain: Tropical ,,,5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515747 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Tropical dry forest ,Climate domain: Tropical ,,,2.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515748 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Tropical shrubland ,Climate domain: Tropical ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515749 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Tropical mountain systems ,Climate domain: Tropical ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515750 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Subtropical humid forest ,Climate domain: Sub- tropical ,,,5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515751 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Subtropical dry forest ,Climate domain: Sub- tropical ,,,2.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515752 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Subtropical steppe ,Climate domain: Sub- tropical ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515753 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Subtropical mountain systems ,Climate domain: Sub- tropical ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515754 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Temperate oceanic forest ,Climate domain: Temperate ,,,4.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515755 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Temperate continental forest ,Climate domain: Temperate ,,,4.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515756 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: Temperate mountain systems ,Climate domain: Temperate ,,,3.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515757 ,5A3b - Coniferous,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: ,Climate domain: Boreal ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515758 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in natural forests ,,Ecological zone: ,Climate domain: Boreal ,,,0.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515760 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Tropical rain forest ,Climate domain: Tropical ,,,15.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515761 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Tropical moist deciduous forest ,Climate domain: Tropical ,,,10.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515762 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Tropical dry forest ,Climate domain: Tropical ,,,8.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515763 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Tropical shrubland ,Climate domain: Tropical ,,,5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515764 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Tropical mountain systems ,Climate domain: Tropical ,,,5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515765 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Subtropical humid forest ,Climate domain: Sub- tropical ,,,10.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515766 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Subtropical dry forest ,Climate domain: Sub- tropical ,,,8.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515767 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Subtropical steppe ,Climate domain: Sub- tropical ,,,5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515768 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Subtropical mountain systems ,Climate domain: Sub- tropical ,,,5.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515769 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Temperate oceanic forest ,Climate domain: Temperate ,,,4.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515770 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Temperate continental forest ,Climate domain: Temperate ,,,4.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515771 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Temperate mountain systems ,Climate domain: Temperate ,,,3.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515772 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Boreal coniferous forest ,Climate domain: Boreal ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515773 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Boreal tundra woodland ,Climate domain: Boreal ,,,0.4 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515774 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground net biomass growth in forest plantations ,,Ecological zone: Boreal mountain systems ,Climate domain: Boreal ,,,1.0 ,tonnes dm/ha/year ,"Equations 2.9, 2.10, and 2.21 of Volume 4 (AFOLU) of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 4, Category Code 3B1a, Page A1.9 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515775 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.1 - Forest land,CARBON DIOXIDE,,,2006 IPCC default ,Basic Wood Density of Stemwood ,,Species or genus: Pinus radiata ,Climate domain: Temperate and Boreal ,,,0.38 (0.33 - 0.45) ,tonnes dm/m3 fresh volume ,"Equations 3.2.3, 3.2.5, 3.2.7and 3.2.8 of the IPCC Good Practice Guidance for LULUCF Equations 2.13 and 2.22 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 3 of 4, Category Code 3B1a, Page A1.11 of Volume 4 of the 2006 IPCC Guidelines ","Beets, P.N., Gilchrist, K. and Jeffreys, M.P. (2001). Wood density of radiata pine: Effect of nitrogen supply. Forest Ecology and Management 145: 173-180. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 4.14 Basic wood density (D) of selected temperate and boreal tree taxa, on page 4.71 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515776 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Agrosilvicultural ,Eco-region: Humid tropical high ,Africa ,,,41 (29-53) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515777 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Agrosilvicultural ,Eco-region: Humid tropical low ,South America ,,,70.5 (39-102) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515778 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Agrosilvicultural ,Eco-region: Dry lowlands ,South America ,,,117.0 (39-195) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515779 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Agrosilvicultural ,Eco-region: Humid tropical ,Southeast Asia ,,,120.0 (12-228) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515780 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Agrosilvicultural ,Eco-region: Dry lowlands ,Southeast Asia ,,,75.0 (68-81) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515781 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Silvopastoral ,Eco-region: Humid tropical ,Australia ,,,39.5 (28-51) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515782 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Silvopastoral ,Eco-region: Humid tropical high ,North America ,,,143.5 (133-154) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515783 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Silvopastoral ,Eco-region: Humid tropical low ,North America ,,,151.0 (104-198) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515784 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Silvopastoral ,Eco-region: Dry lowlands ,North America ,,,132.5 (90-175) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515785 ,5A - Changes in Forest and Other Woody Biomass Stocks,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,System: Silvopastoral ,Eco-region: Humid tropical low ,Asia ,,,16.5 (15-18) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.2 - Potential C storage for agroforestry systems in different ecoregions of the world , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515786 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Oil Palm ,,Southeast Asia ,,,136 (62-202) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515787 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Mature rubber ,,Southeast Asia ,,,178 ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Palm, C.A., Woomer, P.L., Alegre, J., Arevalo, L., Castilla, C., Cordeiro, D.G., Feigl, B., Hairiah, K., Kotto-Same, J., Mendes, A., Maukam, A., Murdiyarso, D., Njomgang, R., Parton, W.J., Ricse, A., Rodrigues, V., Sitompus, S.M. and van Noordwijk, M. (1999). Carbon sequestration and trace gas emissions in slash-and-burn and alternative land-uses in the Humid Tropics. ACB Climate Change Working Group. Final Report Phase II, Nairobi, Kenya. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515788 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Young rubber ,,Southeast Asia ,,,48.0 (16-80) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Wasrin, U.R., Rohiani, A, Putera, A.E. and Hidayat, A. (2000). Assessment of above-ground C-stock using remote sensing and GIS technique. Final Report, Seameo Biotrop, Bogor, 28p. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515789 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Young cinnamon (7 years) ,,Southeast Asia ,,,68 ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Siregar, C.A. and Gintings, Ng. (2000). Research activities related to ground biomass measurement at Forestry Research Development Agency. Paper presented at the Workshop on LUCC and Greenhouse Gas Emissions Biophysical Data. Institut Pertanian Bogor. Indonesia, 16 December 2000. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515790 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Coconut ,,Southeast Asia ,,,196 ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Lasco, R.D., Lales, J.S., Arnuevo, M.T., Guillermo, I.Q., de Jesus, A.C., Medrano, R., Bajar, O.F. and Mendoza, C.V. (2002). Carbon dioxide (CO2) storage and sequestration of land cover in the Leyte Geothermal Reservation. Renewable Energy 25: 307-315. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515791 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Improved fallow (2-year fallow) ,,East Africa ,,,35.0 (27-44) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515792 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Improved fallow (1-year fallow) ,,East Africa ,,,12.0 (7-21) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Albrecht, A. and Kandji, S.T. (2003). Carbon sequestration in tropical agroforestry systems. Agriculture, Ecosytems and Environment 99: 15-27. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515793 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Improved fallow (6-year fallow; average) ,,Southeast Asia ,,,16.0 (4-64) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Lasco, R.D. and Suson, P.D. (1999). A Leucaena Leucocephala -based indigenous fallow system in central Philippines: the Naalad system. Intl Tree Crops Journal 10: 161-174. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515794 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Improved fallow (alley cropping) ,,Southeast Asia ,,,2.9 (1.5-4.5) ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Lasco, R.D., Sales, R.F., Estrella, R., Saplaco, S.R., Castillo, A.S.A., Cruz, R.V.O. and Pulhin, F.B. (2001). Carbon stocks assessment of two agroforestry systems in the Makiling Forest Reserve, Philippines. Philippine Agricultural Scientist 84: 401-407. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515795 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Multistory system (jungle rubber) ,,Southeast Asia ,,,304 ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Tomich, T.P., van Noordwijk, M., Budidarsono, S., Gillison, A., Kusumanto, T., Murdiyarso, D., Stolle, T. and Fagi, A.M. (1998). Alternative to slash and burn in Indonesia. Summary Report and Synthesis of Phase II. ASB-Indonesia, Report No. 8, ICRAF, Bogor, Indonesia. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515796 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Above-ground biomass ,Cropland type: Multistorey system (Gmelina-cacao) ,,Southeast Asia ,,,116 ,tonnes C/ha ,"Equations 2.7 and 2.8 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 1, Category Code 3B2a, Page A1.21 of Volume 4 of the 2006 IPCC Guidelines ","Lasco, R.D., Sales, R.F., Estrella, R., Saplaco, S.R., Castillo, A.S.A., Cruz, R.V.O. and Pulhin, F.B. (2001). Carbon stocks assessment of two agroforestry systems in the Makiling Forest Reserve, Philippines. Philippine Agricultural Scientist 84: 401-407. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.3 - Default above-ground biomass for various types of perennial croplands , on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515797 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,,Moisture regime: Dry ,Temperature regime: Temperate/Boreal ,,,0.8 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515798 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,,Moisture regime: Moist ,Temperature regime: Temperate/Boreal ,,,0.69 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515799 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,,Moisture regime: Dry ,Temperature regime: Tropical ,,,0.58 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515800 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,,Moisture regime: Moist/Wet ,Temperature regime: Tropical ,,,0.48 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515801 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,,,Temperature regime: Tropical montane ,,,0.64 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515802 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,"Level: Paddy rice: Long-term (> 20 year) annual cropping of wetlands (paddy rice). Can include double-cropping with non-flooded crops. For paddy rice, tillage and input factors are not used. ",Moisture regime: Dry and Moist/wet ,Temperature regime: All ,,,1.1 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515803 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,"Level: Perennial/tree crop. Long-term perennial tree crops such as fruit and nut trees, coffee and cacao. ",Moisture regime: Dry and Moist/wet ,Temperature regime: All ,,,1 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515804 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,"Level: Set aside (<20 yrs). Represents temporary set aside of annually cropland (e.g., conservation reserves) or other idle cropland that has been revegetated with perennial grasses. ",Moisture regime: Dry ,Temperature regime: Temperate/Boreal and Tropical ,,,0.93 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515805 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,"Level: Set aside (<20 yrs). Represents temporary set aside of annually cropland (e.g., conservation reserves) or other idle cropland that has been revegetated with perennial grasses. ",Moisture regime: Moist/wet ,Temperature regime: Temperate/Boreal and Tropical ,,,0.82 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515806 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,"Level: Set aside (<20 yrs). Represents temporary set aside of annually cropland (e.g., conservation reserves) or other idle cropland that has been revegetated with perennial grasses. ",,Temperature regime: Tropical montane ,,,0.88 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515807 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,"Level: Full. Substantial soil disturbance with full inversion and/or frequent (within year) tillage operations. At planting time, little (e.g., <30%) of the surface is covered by residues. ",Moisture regime: Dry and Moist/wet ,Temperature regime: All ,,,1 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515808 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,Level: Reduced. Primary and/or secondary tillage but with reduced soil disturbance (usually shallow and without full soil inversion). Normally leaves surface with >30% coverage by residues at planting. ,Moisture regime: Dry ,Temperature regime: Temperate/Boreal ,,,1.02 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515809 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,Level: Reduced. Primary and/or secondary tillage but with reduced soil disturbance (usually shallow and without full soil inversion). Normally leaves surface with >30% coverage by residues at planting. ,Moisture regime: Moist ,Temperature regime: Temperate/Boreal ,,,1.08 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515810 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,Level: Reduced. Primary and/or secondary tillage but with reduced soil disturbance (usually shallow and without full soil inversion). Normally leaves surface with >30% coverage by residues at planting. ,Moisture regime: Dry ,Temperature regime: Tropical ,,,1.09 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515811 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,Level: Reduced. Primary and/or secondary tillage but with reduced soil disturbance (usually shallow and without full soil inversion). Normally leaves surface with >30% coverage by residues at planting. ,Moisture regime: Moist/Wet ,Temperature regime: Tropical ,,,1.15 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515812 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,Level: Reduced. Primary and/or secondary tillage but with reduced soil disturbance (usually shallow and without full soil inversion). Normally leaves surface with >30% coverage by residues at planting. ,,Temperature regime: Tropical montane ,,,1.09 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515813 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,"Level: No-till. Direct seeding without primary tillage, with only minimal soil disturbance in the seeding zone. Herbicides are typically used for weed control. ",Moisture regime: Dry ,Temperature regime: Temperate/Boreal ,,,1.1 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515814 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,"Level: No-till. Direct seeding without primary tillage, with only minimal soil disturbance in the seeding zone. Herbicides are typically used for weed control. ",Moisture regime: Moist ,Temperature regime: Temperate/Boreal ,,,1.15 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515815 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for tillage (FMG) ,"Level: No-till. Direct seeding without primary tillage, with only minimal soil disturbance in the seeding zone. Herbicides are typically used for weed control. ",Moisture regime: Dry ,Temperature regime: Tropical ,,,1.17 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515816 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,"Level: No-till. Direct seeding without primary tillage, with only minimal soil disturbance in the seeding zone. Herbicides are typically used for weed control. ",Moisture regime: Moist/Wet ,Temperature regime: Tropical ,,,1.22 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515817 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for land use or land-use change type (FLU) ,"Level: No-till. Direct seeding without primary tillage, with only minimal soil disturbance in the seeding zone. Herbicides are typically used for weed control. ",,Temperature regime: Tropical montane ,,,1.16 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515818 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: Low. Low residue return occurs when there is due to removal of residues (via collection or burning), frequent bare-fallowing, production of crops yielding low residues (e.g., vegetables, tobacco, cotton), no mineral fertilization or N-fixing crops. ",Moisture regime: Dry ,Temperature regime: Temperate/Boreal ,,,0.95 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515819 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: Low. Low residue return occurs when there is due to removal of residues (via collection or burning), frequent bare-fallowing, production of crops yielding low residues (e.g., vegetables, tobacco, cotton), no mineral fertilization or N-fixing crops. ",Moisture regime: Moist ,Temperature regime: Temperate/Boreal ,,,0.92 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515820 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: Low. Low residue return occurs when there is due to removal of residues (via collection or burning), frequent bare-fallowing, production of crops yielding low residues (e.g., vegetables, tobacco, cotton), no mineral fertilization or N-fixing crops. ",Moisture regime: Dry ,Temperature regime: Tropical ,,,0.95 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515821 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: Low. Low residue return occurs when there is due to removal of residues (via collection or burning), frequent bare-fallowing, production of crops yielding low residues (e.g., vegetables, tobacco, cotton), no mineral fertilization or N-fixing crops. ",Moisture regime: Moist/Wet ,Temperature regime: Tropical ,,,0.92 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515822 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: Low. Low residue return occurs when there is due to removal of residues (via collection or burning), frequent bare-fallowing, production of crops yielding low residues (e.g., vegetables, tobacco, cotton), no mineral fertilization or N-fixing crops. ",,Temperature regime: Tropical montane ,,,0.94 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515823 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: Medium. Representative for annual cropping with cereals where all crop residues are returned to the field. If residues are removed then supplemental organic matter (e.g., manure) is added. Also requires mineral fertilization or N-fixing crop in rotation. ",Moisture regime: Dry and Moist/wet ,Temperature regime: All ,,,1 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515824 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: High without manure. Represents significantly greater crop residue inputs over medium C input cropping systems due to additional practices, such as production of high residue yielding crops, use of green manures, cover crops, improved vegetated fallows, irrigation, frequent use of perennial grasses in annual crop rotations, but without manure applied (see row below). ",Moisture regime: Dry ,Temperature regime: Temperate/Boreal and Tropical ,,,1.04 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515825 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: High without manure. Represents significantly greater crop residue inputs over medium C input cropping systems due to additional practices, such as production of high residue yielding crops, use of green manures, cover crops, improved vegetated fallows, irrigation, frequent use of perennial grasses in annual crop rotations, but without manure applied (see row below). ",Moisture regime: Moist/Wet ,Temperature regime: Temperate/Boreal and Tropical ,,,1.11 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515826 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,"Level: High without manure. Represents significantly greater crop residue inputs over medium C input cropping systems due to additional practices, such as production of high residue yielding crops, use of green manures, cover crops, improved vegetated fallows, irrigation, frequent use of perennial grasses in annual crop rotations, but without manure applied (see row below). ",,Temperature regime: Tropical montane ,,,1.08 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515827 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,Level: High with manure. Represents significantly higher C input over medium C input cropping systems due to an additional practice of regular addition of animal manure. ,Moisture regime: Dry ,Temperature regime: Temperate/Boreal and Tropical ,,,1.37 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515828 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,Level: High with manure. Represents significantly higher C input over medium C input cropping systems due to an additional practice of regular addition of animal manure. ,Moisture regime: Moist/Wet ,Temperature regime: Temperate/Boreal and Tropical ,,,1.44 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515829 ,5-CL - Cropland,3.B.2 - Cropland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for input(FI) ,Level: High with manure. Represents significantly higher C input over medium C input cropping systems due to an additional practice of regular addition of animal manure. ,,Temperature regime: Tropical Montane ,,,1.41 ,No dimension ,"Equation 2.25 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3B2a, Page A1.22 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.5 - Relative stock change factors (FLU, FMG, and FI) (over 20 years) for different management activities on cropland, on page 5.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415830 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,Default methane baseline emission factor ,"Assuming no flooding for less than 180 days prior to rice cultivation, and continuously flooded during rice cultivation without organic amendments ",,Temperature regime: Tropical Montane ,,,1.3 (0.80 - 2.20) ,kg CH4/ha/day ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.11 - Default CH4 baseline emission factor assuming no flooding for less than 180 days prior to rice cultivation, and continuously flooded during rice cultivation without organic amendments, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415831 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, disaggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Fields are never flooded for a significant period of time. ,Water regime: Upland ,,,Rice ecosystem: Upland ,0 ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415832 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, disaggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Continuously flooded: Fields have standing water throughout the rice growing season and may only dry out for harvest (end-season drainage). ,Water regime: Continuously flooded ,,,Rice ecosystem: Irrigated ,1 (0.79 - 1.26) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415833 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, disaggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Intermittently flooded : Fields have at least one aeration period of more than 3 days during the cropping season. Single aeration: Fields have a single aeration during the cropping season at any growth stage (except for end-season drainage). ,Water regime: Intermittently flooded - single aeration ,,,Rice ecosystem: Irrigated ,0.60 (0.46 - 0.80) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415834 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, disaggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Intermittently flooded : Fields have at least one aeration period of more than 3 days during the cropping season. Multiple aeration: Fields have more than one aeration period during the cropping season (except for end-season drainage). ,Water regime: Intermittently flooded - multiple aeration ,,,Rice ecosystem: Irrigated ,0.52 (0.41 - 0.66) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415835 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, disaggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Regular rainfed: The water level may rise up to 50 cm during the cropping season. ,Water regime: Regular rainfed ,,,Rice ecosystem: Rainfed and Deepwater ,0.28 (0.21 - 0.37) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415836 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, disaggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Drought prone: Drought periods occur during every cropping season. ,Water regime: Drought prone ,,,Rice ecosystem: Rainfed and Deepwater ,0.25 (0.18 - 0.36) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415837 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, disaggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Deep water rice: Floodwater rises to more than 50 cm for a significant period of time during the cropping season. ,Water regime: Deepwater ,,,Rice ecosystem: Rainfed and Deepwater ,0.31 ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415838 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, aggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Fields are flooded for a significant period of time and water regime is fully controlled. ,,,,Rice ecosystem: Irrigated ,0.78 (0.62 - 0.98) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415839 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFw, aggregated case) for water regimes during the cultivation period relative to continuously flooded fields ",Fields are flooded for a significant period of time and water regime depends solely on precipitation. ,,,,Rice ecosystem: Rainfed and Deepwater ,0.27 (0.21 - 0.34) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.12 - Default CH4 emission scaling factors for water regimes during the cultivation period relative to continuously flooded fields, on page 5.49 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415840 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFp, disaggregated case) for water regimes before the cultivation period ",,Water regime prior to rice cultivation: non flooded pre-season <180 days ,,,,1 (0.88 - 1.14) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.13 - Default CH4 emission scaling factors for water regimes before the cultivation period, on page 5.50 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415841 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFp, disaggregated case) for water regimes before the cultivation period ",,Water regime prior to rice cultivation: non flooded pre-season >180 days ,,,,0.68 (0.58 - 0.80) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.13 - Default CH4 emission scaling factors for water regimes before the cultivation period, on page 5.50 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415842 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFp, disaggregated case) for water regimes before the cultivation period ",,Water regime prior to rice cultivation: flooded pre-season (>30 days) ,,,,1.90 (1.65 - 2.18) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.13 - Default CH4 emission scaling factors for water regimes before the cultivation period, on page 5.50 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415843 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,"Default CH4 emission scaling factors (SFp, aggregated case) for water regimes before the cultivation period ",,,,,,1.22 (1.07 - 1.40) ,No dimension ,"Equation 5.2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.13 - Default CH4 emission scaling factors for water regimes before the cultivation period, on page 5.50 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415844 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,Default conversion factor for different types of organic amendment ,"Organic amendment: Straw incorporated shortly (<30 days) before cultivation. Straw application means that straw is incorporated into the soil, it does not include case that straw just placed on the soil surface, nor that straw was burnt on the field. ",,,,,1 (0.97 - 1.04) ,No dimension ,"Equation 5.3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.14 - Default conversion factor for different types of organic amendment, on page 5.51 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415845 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,Default conversion factor for different types of organic amendment ,"Organic amendment: Straw incorporated long (>30 days) before cultivation. Straw application means that straw is incorporated into the soil, it does not include case that straw just placed on the soil surface, nor that straw was burnt on the field. ",,,,,0.29 (0.20 - 0.40) ,No dimension ,"Equation 5.3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.14 - Default conversion factor for different types of organic amendment, on page 5.51 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415846 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,Default conversion factor for different types of organic amendment ,Organic amendment: Compost ,,,,,0.05 (0.01 - 0.08) ,No dimension ,"Equation 5.3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.14 - Default conversion factor for different types of organic amendment, on page 5.51 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415847 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,Default conversion factor for different types of organic amendment ,Organic amendment: Farm yard manure ,,,,,0.14 (0.07 - 0.20) ,No dimension ,"Equation 5.3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.14 - Default conversion factor for different types of organic amendment, on page 5.51 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415848 ,4C - Rice Cultivation,3.C.7 - Rice cultivations,METHANE,,,2006 IPCC default ,Default conversion factor for different types of organic amendment ,Organic amendment: Green manure ,,,,,0.50 (0.30 - 0.60) ,No dimension ,"Equation 5.3 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4 ","Sheet 1 of 2, Category Code 3C7, Page A1.63 of Volume 4 of the 2006 IPCC Guidelines ","Yan, X., Yagi, K., Akiyama, H. and Akimoto, H. (2005). Statistical analysis of the major variables controlling methane emission from rice fields. Global Change Biology 11, 1131-1141, doi: 10/1111/j.1365-2486.2005.00976.x. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 5.14 - Default conversion factor for different types of organic amendment, on page 5.51 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515849 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for Management (FMG) ,"Level: Moderately degraded grassland; Definition: Represents overgrazed or moderately degraded grassland, with somewhat reduced productivity (relative to the native or nominally managed grassland) and receiving no management inputs. ",,Climate regime: Tropical Montane ,,,0.96 ,No dimension ,,"Sheet 1 of 2, Category Code 3B3a, Page A1.28 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 6.2 - Relative stock change factors for grassland management, on page 6.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515850 ,5-GL - Grassland,3.B.3 - Grassland,CARBON DIOXIDE,,,2006 IPCC default ,Stock change factor for Management (FMG) ,"Level: Improved grassland; Definition: Represents grassland which is sustainably managed with moderate grazing pressure and that receive at least one improvement (e.g., fertilization, species improvement, irrigation). ",,Climate regime: Tropical Montane ,,,1.16 ,No dimension ,,"Sheet 1 of 2, Category Code 3B3a, Page A1.28 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 6.2 - Relative stock change factors for grassland management, on page 6.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515851 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,2006 IPCC default ,Conversion factor for CO2-C for volume production data (Cfraction) ,,Peat type: Nutrient poor ,Climate zone: Boreal and Temperate ,,,0.07 ,tonnes C/tonne air-dry peat ,,,,,IPCC  +,,,,,,,,,,,,,,,,,,, +515852 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,2006 IPCC default ,Conversion factor for CO2-C for volume production data (Cfraction) ,,Peat type: Nutrient rich ,Climate zone: Boreal and Temperate ,,,0.24 ,tonnes C/tonne air-dry peat ,,,,,IPCC  +,,,,,,,,,,,,,,,,,,, +515853 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,2006 IPCC default ,Conversion factor for CO2-C for volume production data (Cfraction) ,,Peat type: Tropical humus ,Climate zone: Tropical ,,,0.26 ,tonnes C/tonne air-dry peat ,,,,,IPCC  +,,,,,,,,,,,,,,,,,,, +515854 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,2006 IPCC default ,Conversion factor for CO2-C for weight production data (Cfraction) ,,Peat type: Nutrient poor ,Climate zone: Boreal and Temperate ,,,0.45 ,tonnes C/tonne air-dry peat ,,"Sheet 3 of 3, Category Code 3B4ai, Page A1.36 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515855 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,2006 IPCC default ,Conversion factor for CO2-C for weight production data (Cfraction) ,,Peat type: Nutrient rich ,Climate zone: Boreal and Temperate ,,,0.4 ,tonnes C/tonne air-dry peat ,,"Sheet 3 of 3, Category Code 3B4ai, Page A1.36 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515856 ,5-WL - Wetlands,3.B.4 - Wetlands,CARBON DIOXIDE,,,2006 IPCC default ,Conversion factor for CO2-C for weight production data (Cfraction) ,,Peat type: Tropical humus ,Climate zone: Tropical ,,,0.34 ,tonnes C/tonne air-dry peat ,,"Sheet 3 of 3, Category Code 3B4ai, Page A1.36 of Volume 4 of the 2006 IPCC Guidelines ",,,IPCC  +,,,,,,,,,,,,,,,,,,, +515857 ,5-WL - Wetlands,3.B.4 - Wetlands,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for N2O emissions from managed peatlands ,,Peat type: Nutrient-rich organic soil ,Climate zone: Boreal and Temperate ,,,1.8 ,kg N2O-N/ha/yr ,,"Sheet 1 of 1, Category Code 3B4ai, Page A1.37 of Volume 4 of the 2006 IPCC Guidelines ","Alm et al., 1999; Laine et al., 1996; Martikainen et al., 1995; Minkkinen et al., 2002; Regina et al., 1996 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 7.6 - Default emission factors for N2O emissions from managed peatlands, on page 7.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515858 ,5-WL - Wetlands,3.B.4 - Wetlands,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for N2O emissions from managed peatlands ,,,Climate zone: Tropical climate ,,,3.6 ,kg N2O-N/ha/yr ,,"Sheet 1 of 1, Category Code 3B4ai, Page A1.37 of Volume 4 of the 2006 IPCC Guidelines ","Alm et al., 1999; Laine et al., 1996; Martikainen et al., 1995; Minkkinen et al., 2002; Regina et al., 1996 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 7.6 - Default emission factors for N2O emissions from managed peatlands, on page 7.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515859 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,,United States (global default) ,,,2.9 ,tonnes C/ha crown cover/yr ,,,"Nowak, D. and Crane, D. (2002). Carbon storage and sequestration by urban trees in the United States. Environmental Pollution 116:381-389. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.1 - Tier 2a default crown cover area-based growth rates (CRW) for urban tree crown cover by region, on page 8.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515860 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,,Australia ,,,3.6 ,tonnes C/ha crown cover/yr ,,,"Brack, C.L. (2002). Pollution mitigation and carbon sequestration by an urban forest. Environmental Pollution 116:S195-S200. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.1 - Tier 2a default crown cover area-based growth rates (CRW) for urban tree crown cover by region, on page 8.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515861 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Aspen ,,,,0.0096 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515862 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Soft maple ,,,,0.0118 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515863 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Mixed hardwood ,,,,0.01 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515864 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Hardwood maple ,,,,0.0142 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515865 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Juniper ,,,,0.0033 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515866 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Cedar/larch ,,,,0.0072 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515867 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Douglas fir ,,,,0.0122 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515868 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: True fir/Hemlock ,,,,0.0104 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515869 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Pine ,,,,0.0087 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515870 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Default annual carbon accumulation per ha tree crown cover ,,Broad species class: Spruce ,,,,0.0092 ,tonne C/year ,,,D. Nowak (2002; personal communication) ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.2 - Tier 2b Default average annual carbon accumulation per tree in urban trees by species classes, on page 8.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515871 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent tree cover ,,Potential Natural Vegetation (PNV): Forest ,,,,31.1 (+/- 2.6) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515872 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent tree cover ,,Potential Natural Vegetation (PNV): Grassland ,,,,18.9 (+/- 1.5) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515873 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent tree cover ,,Potential Natural Vegetation (PNV): Desert ,,,,9.9 (+/- 2.4) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515874 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent total greenspace ,,Potential Natural Vegetation (PNV): Forest ,,,,58.4 (+/- 2.9) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515875 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent total greenspace ,,Potential Natural Vegetation (PNV): Grassland ,,,,54.8 (+/- 2.1) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515876 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent total greenspace ,,Potential Natural Vegetation (PNV): Desert ,,,,64.8 (+/- 4.2) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515877 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent canopy greenspace ,,Potential Natural Vegetation (PNV): Forest ,,,,50.9 (+/- 3.3) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515878 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent canopy greenspace ,,Potential Natural Vegetation (PNV): Grassland ,,,,32.9 (+/- 2.3) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +515879 ,5-SL - Settlements,3.B.5 - Settlements,CARBON DIOXIDE,,,2006 IPCC default ,Percent canopy greenspace ,,Potential Natural Vegetation (PNV): Desert ,,,,16.9 (+/- 4.6) ,% ,,,"Nowak, D.J., Rowntree, R.A., McPherson, E.G., Sisinni, S.M., Kerkmann, E.R. and Stevens, J.C. (1996). Measuring and analyzing urban tree cover. Landscape and Urban Planning 36:49-57. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 8.3- Default activity data by potential natural vegetation (PNV) type (Kuchler, 1969) for percent tree cover, on page 8.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415880 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Mature swine - confinement ,Main category: Swine ,,,,70 - 80 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415881 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Growing swine - confinement ,Main category: Swine ,,,,80 - 90 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415882 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Swine - free range ,Main category: Swine ,,,,50 - 70 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415883 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Feedlot animals fed with >90% concentrate diet ,Main category: Cattle and other ruminants ,,,,75 - 85 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415884 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Pasture fed animals ,Main category: Cattle and other ruminants ,,,,55 - 75 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415885 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Animals fed - low quality forage ,Main category: Cattle and other ruminants ,,,,45 - 55 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415886 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Broiler Chickens - confinement ,Main category: Poultry ,,,,85 - 93 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415887 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Layer Hens - confinement ,Main category: Poultry ,,,,70 - 80 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415888 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Poultry - free range ,Main category: Poultry ,,,,55 - 90 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415889 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Turkeys - confinement ,Main category: Poultry ,,,,85 - 93 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415890 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Representative feed digestability (DE%) ,Class: Geese - confinement ,Main category: Poultry ,,,,80 - 90 ,% ,,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.2- Representative feed digestibility for various livestock categories, on page 10.14 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415891 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Coefficients for calculating net energy for maintenance ( NEm ) ,,"Animal category: Cattle/Buffalo (non-lactating cows, steers and juveniles) ",,,,0.322 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.4 - Coefficients for calculating net energy for maintenance ( NEm ), on page 10.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415892 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Coefficients for calculating net energy for maintenance ( NEm ) ,,Animal category: Cattle/buffalo (lactating cows) ,,,,0.386 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.4 - Coefficients for calculating net energy for maintenance ( NEm ), on page 10.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415893 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Coefficients for calculating net energy for maintenance ( NEm ) ,,Animal category: Cattle/buffalo (bulls) ,,,,0.37 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.4 - Coefficients for calculating net energy for maintenance ( NEm ), on page 10.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415894 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Coefficients for calculating net energy for maintenance ( NEm ) ,,Animal category: Sheep (lamb to 1 year) ,,,,0.236 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.4 - Coefficients for calculating net energy for maintenance ( NEm ), on page 10.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415895 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Coefficients for calculating net energy for maintenance ( NEm ) ,,Animal category: Sheep (older than 1 year) ,,,,0.217 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.4 - Coefficients for calculating net energy for maintenance ( NEm ), on page 10.16 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415896 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Activity coefficients corresponding to animal`s feeding situation (Ca) ,"Situation: Stall - Animals are confined to a small area (i.e., tethered, pen, barn) with the result that they expend very little or no energy to acquire feed. ",Animal category: Cattle and Buffalo ,,,,0 ,No dimension ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.5 - Activity coefficients corresponding to animal`s feeding situation, on page 10.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415897 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Activity coefficients corresponding to animal`s feeding situation (Ca) ,Situation: Pasture - Animals are confined in areas with sufficient forage requiring modest energy expense to acquire feed. ,Animal category: Cattle and Buffalo ,,,,0.17 ,No dimension ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.5 - Activity coefficients corresponding to animal`s feeding situation, on page 10.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415898 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Activity coefficients corresponding to animal`s feeding situation (Ca) ,Situation: Grazing large areas - Animals graze in open range land or hilly terrain and expend significant energy to acquire feed. ,Animal category: Cattle and Buffalo ,,,,0.36 ,No dimension ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.5 - Activity coefficients corresponding to animal`s feeding situation, on page 10.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415899 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Activity coefficients corresponding to animal`s feeding situation (Ca) ,Situation: Housed ewes - Animals are confined due to pregnancy in final trimester (50 days). ,Animal category: Sheep ,,,,0.009 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.5 - Activity coefficients corresponding to animal`s feeding situation, on page 10.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415900 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Activity coefficients corresponding to animal`s feeding situation (Ca) ,Situation: Grazing flat pasture - Animals walk up to 1000 meters per day and expend very little energy to acquire feed. ,Animal category: Sheep ,,,,0.0107 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.5 - Activity coefficients corresponding to animal`s feeding situation, on page 10.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415901 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Activity coefficients corresponding to animal`s feeding situation (Ca) ,"Situation: Grazing hilly pasture - Animals walk up to 5,000 meters per day and expend significant energy to acquire feed. ",Animal category: Sheep ,,,,0.024 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.5 - Activity coefficients corresponding to animal`s feeding situation, on page 10.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415902 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Activity coefficients corresponding to animal`s feeding situation (Ca) ,Situation: Housed fattening lambs - Animals are housed for fattening. ,Animal category: Sheep ,,,,0.0067 ,MJ/d/kg ,,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.5 - Activity coefficients corresponding to animal`s feeding situation, on page 10.17 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415903 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,"Constants ""a"" for use in calculating NEg for Sheep ",,Animal category: Sheep (intact males) ,,,,2.5 ,MJ/kg ,Equation 10.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.6 - Constants for use in calculating NEg for Sheep, on page 10.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415904 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,"Constants ""a"" for use in calculating NEg for Sheep ",,Animal category: Sheep (castrates) ,,,,4.4 ,MJ/kg ,Equation 10.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.6 - Constants for use in calculating NEg for Sheep, on page 10.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415905 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,"Constants ""a"" for use in calculating NEg for Sheep ",,Animal category: Sheep (females) ,,,,2.1 ,MJ/kg ,Equation 10.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.6 - Constants for use in calculating NEg for Sheep, on page 10.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415906 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,"Constants ""b"" for use in calculating NEg for Sheep ",,Animal category: Sheep (intact males) ,,,,0.35 ,MJ/kg^2 ,Equation 10.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.6 - Constants for use in calculating NEg for Sheep, on page 10.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415907 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,"Constants ""b"" for use in calculating NEg for Sheep ",,Animal category: Sheep (castrates) ,,,,0.32 ,MJ/kg^2 ,Equation 10.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.6 - Constants for use in calculating NEg for Sheep, on page 10.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415908 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,"Constants ""b"" for use in calculating NEg for Sheep ",,Animal category: Sheep (females) ,,,,0.45 ,MJ/kg^2 ,Equation 10.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.6 - Constants for use in calculating NEg for Sheep, on page 10.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415909 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Constants for use in calculating NEp in Equation 10.13 (Cpregnancy) ,,Animal category: Cattle and Buffalo ,,,,0.1 ,No dimension ,Equation 10.13 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.7 - Constants for use in calculating NEp in Equation 10.13, on page 10.20 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415910 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Constants for use in calculating NEp in Equation 10.13 (Cpregnancy) ,,Animal category: Sheep - Single birth ,,,,0.077 ,No dimension ,Equation 10.13 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.7 - Constants for use in calculating NEp in Equation 10.13, on page 10.20 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415911 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Constants for use in calculating NEp in Equation 10.13 (Cpregnancy) ,,Animal category: Sheep - Double birth (twins) ,,,,0.126 ,No dimension ,Equation 10.13 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.7 - Constants for use in calculating NEp in Equation 10.13, on page 10.20 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415912 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Constants for use in calculating NEp in Equation 10.13 (Cpregnancy) ,,Animal category: Sheep - Triple birth or more (triplets) ,,,,0.15 ,No dimension ,Equation 10.13 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC Agricultural and Food Research Council (AFRC) Technical Committee on Responses to Nutrients (1993). Energy and Protein Requirements of Ruminants. 24-159, CAB International, Wallingford, U.K. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.7 - Constants for use in calculating NEp in Equation 10.13, on page 10.20 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415913 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,NEma content of typical diets fed to Cattle for estimation of dry matter intake in Equations 10.17 and 10.18 of 2006 Guidelines ,Diet type: High grain diet > 90% ,Animal category: Cattle ,,,,7.5 - 8.5 ,MJ/kg d.m. ,Equations 10.17 and 10.18 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.8 - Examples of NEma content of typical diets fed to Cattle for estimation of dry matter intake in Equations 10.17 and 10.18, on page 10.23 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415914 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,NEma content of typical diets fed to Cattle for estimation of dry matter intake in Equations 10.17 and 10.18 of 2006 Guidelines ,"Diet type: High quality forage (e.g., vegetative legumes & grasses ) ",Animal category: Cattle ,,,,6.5 - 7.5 ,MJ/kg d.m. ,Equations 10.17 and 10.18 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.8 - Examples of NEma content of typical diets fed to Cattle for estimation of dry matter intake in Equations 10.17 and 10.18, on page 10.23 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415915 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,NEma content of typical diets fed to Cattle for estimation of dry matter intake in Equations 10.17 and 10.18 of 2006 Guidelines ,"Diet type: Moderate quality forage (e.g., mid season legume & grasses) ",Animal category: Cattle ,,,,5.5 - 6.5 ,MJ/kg d.m. ,Equations 10.17 and 10.18 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.8 - Examples of NEma content of typical diets fed to Cattle for estimation of dry matter intake in Equations 10.17 and 10.18, on page 10.23 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415916 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,NEma content of typical diets fed to Cattle for estimation of dry matter intake in Equations 10.17 and 10.18 of 2006 Guidelines ,"Diet type: Low quality forage (e.g., straws, mature grasses) ",Animal category: Cattle ,,,,3.5 - 5.5 ,MJ/kg d.m. ,Equations 10.17 and 10.18 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"National Research Council (NRC) (1996). Nutrient Requirements of Beef Cattle, 7th Revised Ed., Nat. Acad. Press, Washington., DC ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.8 - Examples of NEma content of typical diets fed to Cattle for estimation of dry matter intake in Equations 10.17 and 10.18, on page 10.23 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415917 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Buffalo (liveweight = 300 kg) ,Country type: Developed country ,,,55 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Gibbs, M.J. and Johnson, D.E. (1993). ""Livestock Emissions."" In: International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415918 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Sheep (liveweight = 65 kg) ,Country type: Developed country ,,,8 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415919 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Goats (liveweight = 40 kg) ,Country type: Developed country ,,,5 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415920 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Camels (liveweight = 570 kg) ,Country type: Developed country ,,,46 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Gibbs, M.J. and Johnson, D.E. (1993). ""Livestock Emissions."" In: International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415921 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Horses (liveweight = 550 kg) ,Country type: Developed country ,,,18 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415922 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Mules and Asses (liveweight = 245 kg) ,Country type: Developed country ,,,10 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415923 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Deer (liveweight = 120 kg) ,Country type: Developed country ,,,20 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Clark, H., Brookes, I. and Walcroft, A. (2003). Enteric methane emissions from New Zealand ruminants 1999-2001 calculated using an IPCC Tier 2 approach. http://www.climatechange.govt.nz/resources/reports/nir-apr03/. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415924 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Alpacas (liveweight = 65 kg) ,Country type: Developed country ,,,8 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Pinares-Patino, C.S., Ulyatt, M.J., Waghorn, G.C., Lassey, K.R., Barry, T.N., Holmes, C.W. and Johnson, D.E. (2003). Methane emission by alpaca and sheep fed on Lucerne hay or grazed on pastures of perennial ryegrass/white clover or birds foot trefoil. J. Agric. Sci. 140:215-226. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415925 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Swine ,Country type: Developed country ,,,1.5 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415926 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Buffalo (liveweight = 300 kg) ,Country type: Developing country ,,,55 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Gibbs, M.J. and Johnson, D.E. (1993). ""Livestock Emissions."" In: International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415927 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Sheep (liveweight = 45 kg) ,Country type: Developing country ,,,5 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415928 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Goats (liveweight = 40 kg) ,Country type: Developing country ,,,5 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415929 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Camels (liveweight = 570 kg) ,Country type: Developing country ,,,46 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Gibbs, M.J. and Johnson, D.E. (1993). ""Livestock Emissions."" In: International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415930 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Horses (liveweight = 550 kg) ,Country type: Developing country ,,,18 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415931 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Mules and Asses (liveweight = 245 kg) ,Country type: Developing country ,,,10 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415932 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Deer (liveweight = 120 kg) ,Country type: Developing country ,,,20 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Clark, H., Brookes, I. and Walcroft, A. (2003). Enteric methane emissions from New Zealand ruminants 1999-2001 calculated using an IPCC Tier 2 approach. http://www.climatechange.govt.nz/resources/reports/nir-apr03/. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415933 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Alpacas (liveweight = 65 kg) ,Country type: Developing country ,,,8 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Pinares-Patino, C.S., Ulyatt, M.J., Waghorn, G.C., Lassey, K.R., Barry, T.N., Holmes, C.W. and Johnson, D.E. (2003). Methane emission by alpaca and sheep fed on Lucerne hay or grazed on pastures of perennial ryegrass/white clover or birds foot trefoil. J. Agric. Sci. 140:215-226. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415934 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Enteric fermentation emission factors for Tier 1 method ,,Animal category: Swine ,Country type: Developing country ,,,1 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Crutzen, P.J., Aselmann, I. and Seiler, W. (1986). ""Methane Production by Domestic Animals, Wild Ruminants, Other Herbivorous Fauna, and Humans,"" Tellus 38B:271-284. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.10 - Enteric fermentation emission factors for Tier 1 method, on page 10.28 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415935 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Highly productive commercialized dairy sector feeding high quality forage and grain. Separate beef cow herd, primarily grazing with feed supplements seasonally. Fast-growing beef steers/heifers finished in feedlots on grain. Dairy cows are a small part of the population. ",Animal category: Cattle (Dairy) ,Region: North America ,,"Average milk production of 8,400 kg head-1 yr-1. ",128 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415936 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Highly productive commercialized dairy sector feeding high quality forage and grain. Separate beef cow herd, primarily grazing with feed supplements seasonally. Fast-growing beef steers/heifers finished in feedlots on grain. Dairy cows are a small part of the population. ",Animal category: Cattle (Other Cattle) ,Region: North America ,,"Includes beef cows, bulls, calves, growing steers/heifers, and feedlot cattle. ",53 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415937 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,Highly productive commercialised dairy sector feeding high quality forage and grain. Dairy cows also used for beef calf production. Very small dedicated beef cow herd. Minor amount of feedlot feeding with grains. ,Animal category: Cattle (Dairy) ,Region: Western Europe ,,"Average milk production of 6,000 kg head-1 yr-1. ",117 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415938 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,Highly productive commercialised dairy sector feeding high quality forage and grain. Dairy cows also used for beef calf production. Very small dedicated beef cow herd. Minor amount of feedlot feeding with grains. ,Animal category: Cattle (Other Cattle) ,Region: Western Europe ,,"Includes bulls, calves, and growing steers/heifers. ",57 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415939 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Commercialised dairy sector feeding mostly forages. Separate beef cow herd, primarily grazing. Minor amount of feedlot feeding with grains. ",Animal category: Cattle (Dairy) ,Region: Eastern Europe ,,"Average milk production of 2,550 kg head-1 yr-1. ",99 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415940 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Commercialised dairy sector feeding mostly forages. Separate beef cow herd, primarily grazing. Minor amount of feedlot feeding with grains. ",Animal category: Cattle (Other Cattle) ,Region: Eastern Europe ,,"Includes beef cows, bulls, and young. ",58 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415941 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Commercialised dairy sector based on grazing. Separate beef cow herd, primarily grazing rangelands of widely varying quality. Growing amount of feedlot feeding with grains. Dairy cows are a small part of the population. ",Animal category: Cattle (Dairy) ,Region: Oceania ,,"Average milk production of 2,200 kg head-1 yr-1. ",100 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415942 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Commercialised dairy sector based on grazing. Separate beef cow herd, primarily grazing rangelands of widely varying quality. Growing amount of feedlot feeding with grains. Dairy cows are a small part of the population. ",Animal category: Cattle (Other Cattle) ,Region: Oceania ,,"Includes beef cows, bulls, and young. ",60 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415943 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,Commercialised dairy sector based on grazing. Separate beef cow herd grazing pastures and rangelands. Minor amount of feedlot feeding with grains. Growing non-dairy cattle comprise a large portion of the population. ,Animal category: Cattle (Dairy) ,Region: Latin America ,,Average milk production of 800 kg head-1 yr-1 ,72 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415944 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,Commercialised dairy sector based on grazing. Separate beef cow herd grazing pastures and rangelands. Minor amount of feedlot feeding with grains. Growing non-dairy cattle comprise a large portion of the population. ,Animal category: Cattle (Other Cattle) ,Region: Latin America ,,"Includes beef cows, bulls, and young. ",56 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415945 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Small commercialised dairy sector. Most cattle are multi-purpose, providing draft power and some milk within farming regions. Small grazing population. Cattle of all types are smaller than those found in most other regions. ",Animal category: Cattle (Dairy) ,Region: Asia ,,"Average milk production of 1,650 kg head-1 yr-1 ",68 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415946 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Small commercialised dairy sector. Most cattle are multi-purpose, providing draft power and some milk within farming regions. Small grazing population. Cattle of all types are smaller than those found in most other regions. ",Animal category: Cattle (Other Cattle) ,Region: Asia ,,"Includes multi-purpose cows, bulls, and young ",47 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415947 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Commercialised dairy sector based on grazing with low production per cow. Most cattle are multi-purpose, providing draft power and some milk within farming regions. Some cattle graze over very large areas. Cattle are smaller than those found in most other regions. ",Animal category: Cattle (Dairy) ,Region: Africa and Middle East ,,Average milk production of 475 kg head-1 yr-1 ,46 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415948 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,"Commercialised dairy sector based on grazing with low production per cow. Most cattle are multi-purpose, providing draft power and some milk within farming regions. Some cattle graze over very large areas. Cattle are smaller than those found in most other regions. ",Animal category: Cattle (Other Cattle) ,Region: Africa and Middle East ,,"Includes multi-purpose cows, bulls, and young ",31 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415949 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,Commercialised dairy sector based on crop by-product feeding with low production per cow. Most bullocks provide draft power and cows provide some milk in farming regions. Small grazing population. Cattle in this region are the smallest compared to cattle found in all other regions. ,Animal category: Cattle (Dairy) ,Region: Indian Subcontinent ,,Average milk production of 900 kg head-1 yr-1 ,58 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415950 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Tier 1 enteric fermentation emission factors for Cattle ,Commercialised dairy sector based on crop by-product feeding with low production per cow. Most bullocks provide draft power and cows provide some milk in farming regions. Small grazing population. Cattle in this region are the smallest compared to cattle found in all other regions. ,Animal category: Cattle (Other Cattle) ,Region: Indian Subcontinent ,,"Includes cows, bulls, and young. Young comprise a large portion of the population ",27 ,kg CH4/head/yr ,Equation 10.19 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A1, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.11 - Tier 1 enteric fermentation emission factors for Cattle, on page 10.29 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415951 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Cattle/buffalo methane conversion factor (Ym ) ,Feedlot fed cattle (when fed diets contain 90 percent or more concentrates). ,Animal category: Cattle/Bufallo ,,,,3.0 +/- 1.0 ,% ,Equation 10.21 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,IPCC Expert Group ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.12 - Cattle/buffalo CH4 conversion factors (Ym ), on page 10.30 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415952 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Cattle/buffalo methane conversion factor (Ym ) ,Dairy Cows (Cattle and Buffalo) and their young ,Animal category: Cattle/Bufallo ,,,,6.5 +/- 1.0 ,% ,Equation 10.21 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,IPCC Expert Group ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.12 - Cattle/buffalo CH4 conversion factors (Ym ), on page 10.30 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415953 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Cattle/buffalo methane conversion factor (Ym ) ,Other Cattle and Buffaloes that are primarily fed low quality crop residues and by-products ,Animal category: Cattle/Bufallo ,,,,6.5 +/- 1.0 ,% ,Equation 10.21 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,IPCC Expert Group ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.12 - Cattle/buffalo CH4 conversion factors (Ym ), on page 10.30 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415954 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Cattle/buffalo methane conversion factor (Ym ) ,,Animal category: Cattle/Bufallo ,,,,6.5 +/- 1.0 ,% ,Equation 10.21 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,IPCC Expert Group ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.12 - Cattle/buffalo CH4 conversion factors (Ym ), on page 10.30 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415955 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Sheep methane conversion factor (Ym ) ,,Animal category: Sheep - Lambs (<1 year old) ,,,,4.5 +/- 1.0 ,% ,Equation 10.21 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,IPCC Expert Group ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.13 - Sheep CH4 conversion factors (Ym ), on page 10.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415956 ,4A - Enteric Fermentation,3.A.1 - Enteric Fermentation,METHANE,,,2006 IPCC default ,Sheep methane conversion factor (Ym ) ,,Animal category: Mature Sheep ,,,,6.5 +/- 1.0 ,% ,Equation 10.21 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,IPCC Expert Group ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.13 - Sheep CH4 conversion factors (Ym ), on page 10.31 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415957 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,48 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415958 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,50 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415959 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,53 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415960 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,55 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415961 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,58 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415962 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,63 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415963 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,65 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415964 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,68 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415965 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,71 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415966 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,74 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415967 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,78 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415968 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,81 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415969 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,85 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415970 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,89 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415971 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,93 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415972 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,98 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415973 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,105 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415974 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,110 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415975 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Dairy Cows ,,,,112 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415976 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415977 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415978 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415979 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415980 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415981 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415982 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415983 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415984 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415985 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415986 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415987 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415988 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415989 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415990 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415991 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415992 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415993 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415994 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415995 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415996 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415997 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415998 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +415999 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416000 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416001 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416002 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,14 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416003 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416004 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416005 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416006 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416007 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,18 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416008 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,18 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416009 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416010 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,20 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416011 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,22 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416012 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416013 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Market Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416014 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416015 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,20 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416016 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416017 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,22 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416018 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416019 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416020 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,26 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416021 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,27 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416022 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,28 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416023 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,29 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416024 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,31 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416025 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,32 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416026 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,34 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416027 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,35 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416028 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,37 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416029 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,39 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416030 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,41 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416031 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,44 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416032 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid-based systems are commonly used for dairy cows and swine manure. Other cattle manure is usually managed as a solid and deposited on pastures or ranges. ,Animal category: Breeding Swine ,,,,45 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416033 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416034 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416035 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,25 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416036 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,27 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416037 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,29 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416038 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,34 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416039 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,37 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416040 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,40 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416041 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,43 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416042 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,47 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416043 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,51 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416044 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,55 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416045 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,59 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416046 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,64 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416047 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,70 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416048 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,75 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416049 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,83 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416050 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,90 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416051 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Dairy Cows ,,,,92 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416052 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416053 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416054 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416055 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416056 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416057 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416058 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416059 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416060 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416061 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,14 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416062 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416063 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416064 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416065 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,18 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416066 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,20 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416067 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416068 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416069 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,25 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416070 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Other Cattle ,,,,26 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416071 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416072 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416073 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416074 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416075 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416076 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416077 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416078 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416079 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416080 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416081 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416082 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416083 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,14 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416084 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416085 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416086 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,18 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416087 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416088 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416089 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Market Swine ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416090 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416091 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416092 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416093 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416094 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416095 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416096 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,14 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416097 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416098 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416099 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416100 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416101 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,20 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416102 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,22 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416103 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416104 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,25 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416105 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,27 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416106 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,29 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416107 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,32 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416108 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Breeding Swine ,,,,33 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416109 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416110 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416111 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416112 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416113 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416114 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416115 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416116 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416117 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416118 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416119 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416120 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416121 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416122 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416123 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416124 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,14 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416125 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416126 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416127 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Liquid/slurry and pit storage systems are commonly used for cattle and swine manure. Limited cropland is available for spreading manure. ,Animal category: Buffalo ,,,,17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416128 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416129 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416130 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416131 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,14 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416132 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416133 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,20 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416134 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416135 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,22 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416136 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416137 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,25 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416138 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,27 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416139 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,28 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416140 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,30 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416141 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,33 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416142 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,35 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416143 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,37 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416144 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,42 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416145 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,45 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416146 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Dairy Cows ,,,,46 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416147 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416148 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416149 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416150 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416151 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416152 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416153 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416154 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416155 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416156 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416157 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416158 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,14 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416159 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416160 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416161 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,18 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416162 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416163 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416164 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416165 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Other Cattle ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416166 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416167 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416168 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416169 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416170 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416171 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416172 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416173 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416174 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416175 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416176 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416177 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416178 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416179 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416180 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416181 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416182 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416183 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416184 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Market Swine ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416185 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416186 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416187 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416188 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416189 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416190 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416191 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416192 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416193 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416194 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416195 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416196 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416197 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416198 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416199 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416200 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416201 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416202 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416203 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Breeding Swine ,,,,17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416204 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416205 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416206 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416207 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416208 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416209 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416210 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416211 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,8 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416212 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416213 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416214 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416215 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416216 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416217 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416218 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416219 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416220 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416221 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416222 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Solid based systems are used for the majority of manure. About one-third of livestock manure is managed in liquid-based systems. ,Animal category: Buffalo ,,,,19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416223 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416224 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416225 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,25 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416226 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,26 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416227 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,26 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416228 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,27 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416229 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,28 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416230 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,28 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416231 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,28 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416232 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,29 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416233 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,29 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416234 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,29 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416235 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,29 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416236 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,29 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416237 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,30 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416238 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,30 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416239 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,31 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416240 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,31 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416241 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Dairy Cows ,,,,31 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416242 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416243 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416244 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416245 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416246 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416247 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416248 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416249 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416250 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416251 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416252 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416253 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416254 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416255 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416256 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416257 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416258 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416259 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416260 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416261 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416262 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416263 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416264 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416265 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416266 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416267 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416268 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416269 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416270 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416271 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416272 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416273 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416274 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416275 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416276 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416277 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416278 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416279 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Market Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Market Swine ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416280 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,20 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416281 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,20 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416282 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416283 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416284 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,22 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416285 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,22 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416286 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416287 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416288 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416289 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416290 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416291 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416292 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416293 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416294 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416295 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416296 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416297 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416298 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Breeding Swine ,"Most cattle manure is managed as a solid on pastures and ranges, except dairy cows where there is some usage of lagoons. About half of the swine manure is managed in anaerobic lagoons. ",Animal category: Breeding Swine ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416299 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416300 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416301 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416302 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416303 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416304 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416305 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416306 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416307 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416308 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416309 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416310 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416311 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416312 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416313 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416314 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416315 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416316 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416317 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416318 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416319 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416320 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416321 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416322 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416323 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416324 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416325 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416326 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416327 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416328 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416329 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416330 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416331 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416332 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416333 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416334 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416335 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416336 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416337 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416338 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416339 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416340 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416341 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416342 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416343 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416344 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416345 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416346 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416347 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416348 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416349 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416350 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416351 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416352 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416353 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416354 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416355 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416356 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416357 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416358 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416359 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416360 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416361 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416362 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416363 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416364 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416365 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416366 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416367 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416368 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416369 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416370 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416371 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416372 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416373 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416374 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Almost all livestock manure is managed as a solid on pastures and ranges. Buffalo manure is deposited on pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416375 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416376 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416377 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416378 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416379 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416380 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416381 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416382 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416383 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416384 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416385 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416386 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416387 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416388 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416389 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416390 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416391 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416392 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416393 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Dairy Cows ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416394 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,0 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416395 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,0 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416396 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,0 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416397 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,0 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416398 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,0 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416399 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416400 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416401 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416402 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416403 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416404 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416405 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416406 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416407 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416408 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416409 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416410 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416411 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416412 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416413 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,0 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416414 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,0 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416415 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,0 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416416 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416417 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416418 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416419 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416420 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416421 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416422 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416423 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416424 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416425 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416426 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416427 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416428 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416429 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416430 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416431 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,"Most livestock manure is managed as a solid on pastures and ranges. A smaller, but significant fraction is burned as fuel. ",Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416432 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416433 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416434 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416435 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416436 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416437 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416438 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416439 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416440 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416441 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416442 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416443 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416444 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416445 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416446 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416447 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416448 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416449 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416450 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Dairy Cows ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416451 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416452 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416453 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416454 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416455 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416456 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416457 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416458 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416459 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416460 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416461 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416462 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416463 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416464 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416465 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416466 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416467 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416468 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416469 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416470 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416471 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416472 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416473 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416474 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416475 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416476 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416477 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416478 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416479 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416480 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416481 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416482 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416483 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416484 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416485 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416486 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416487 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416488 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416489 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416490 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416491 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416492 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416493 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416494 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416495 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416496 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416497 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416498 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416499 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416500 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416501 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416502 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416503 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416504 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416505 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416506 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416507 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,Over two-thirds of cattle manure is deposited on pastures and ranges. About one-third of swine manure is managed in liquid-based systems. Buffalo manure is burned for fuel or managed as a solid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416508 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416509 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416510 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,10 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416511 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416512 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,12 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416513 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416514 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,14 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416515 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416516 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,16 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416517 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416518 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,18 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416519 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,20 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416520 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,21 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416521 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,23 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416522 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,24 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416523 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,26 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416524 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,28 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416525 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,31 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416526 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Dairy Cows ,,,,31 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416527 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416528 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416529 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416530 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416531 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416532 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416533 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416534 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416535 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416536 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416537 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416538 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416539 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416540 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416541 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416542 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416543 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416544 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416545 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Other Cattle ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416546 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416547 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416548 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416549 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416550 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416551 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416552 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416553 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416554 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416555 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416556 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416557 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416558 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416559 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416560 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416561 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416562 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416563 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416564 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Swine ,,,,7 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416565 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416566 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416567 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416568 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416569 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416570 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416571 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416572 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416573 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416574 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416575 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416576 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416577 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416578 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416579 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416580 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416581 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416582 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416583 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle manure is used for fuel with the remainder managed in dry systems. Almost 40% of swine manure is managed as a liquid. Buffalo manure is managed in drylots and deposited in pastures and ranges. ,Animal category: Buffalo ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416584 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416585 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416586 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416587 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416588 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416589 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416590 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416591 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416592 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416593 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416594 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416595 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416596 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416597 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416598 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416599 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416600 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416601 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416602 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Dairy Cows ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Dairy Cows ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416603 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416604 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416605 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416606 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416607 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416608 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416609 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416610 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416611 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416612 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416613 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416614 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416615 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416616 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416617 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416618 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416619 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416620 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416621 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Other Cattle ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Other Cattle ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416622 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416623 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416624 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416625 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416626 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416627 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416628 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416629 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,3 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416630 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416631 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416632 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416633 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416634 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416635 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416636 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416637 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416638 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416639 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416640 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Swine ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Swine ,,,,6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416641 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416642 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416643 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416644 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416645 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416646 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416647 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416648 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416649 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416650 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416651 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416652 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416653 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416654 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416655 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416656 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416657 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416658 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416659 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for Buffalo ,About half of cattle and buffalo manure is used for fuel with the remainder managed in dry systems. About one-third of swine manure is managed as a liquid. ,Animal category: Buffalo ,,,,5 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.2, Tables 10A-4 to 10A-8, Volume 4 of 2006 Guidelines, for derivation of these emission factors ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.14 - Manure management methane emission factors by temperature for Cattle, Swine, and Buffalo, on page 10.38 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416660 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for sheep ,,Animal category: Sheep ,,,,0.19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416661 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for sheep ,,Animal category: Sheep ,,,,0.28 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416662 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for sheep ,,Animal category: Sheep ,,,,0.37 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416663 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for sheep ,,Animal category: Sheep ,,,,0.1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416664 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for sheep ,,Animal category: Sheep ,,,,0.15 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416665 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for sheep ,,Animal category: Sheep ,,,,0.2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416666 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for goats ,,Animal category: Goats ,,,,0.13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416667 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for goats ,,Animal category: Goats ,,,,0.2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416668 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for goats ,,Animal category: Goats ,,,,0.26 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416669 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for goats ,,Animal category: Goats ,,,,0.11 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416670 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for goats ,,Animal category: Goats ,,,,0.17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416671 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for goats ,,Animal category: Goats ,,,,0.22 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416672 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for camels ,,Animal category: Camels ,,,,1.58 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416673 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for camels ,,Animal category: Camels ,,,,2.37 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416674 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for camels ,,Animal category: Camels ,,,,3.17 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416675 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for camels ,,Animal category: Camels ,,,,1.28 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416676 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for camels ,,Animal category: Camels ,,,,1.92 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416677 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for camels ,,Animal category: Camels ,,,,2.56 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416678 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for horses ,,Animal category: Horses ,,,,1.56 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416679 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for horses ,,Animal category: Horses ,,,,2.34 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416680 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for horses ,,Animal category: Horses ,,,,3.13 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416681 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for horses ,,Animal category: Horses ,,,,1.09 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416682 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for horses ,,Animal category: Horses ,,,,1.64 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416683 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for horses ,,Animal category: Horses ,,,,2.19 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416684 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for mules and asses ,,Animal category: Mules and Asses ,,,,0.76 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416685 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for mules and asses ,,Animal category: Mules and Asses ,,,,1.1 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416686 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for mules and asses ,,Animal category: Mules and Asses ,,,,1.52 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416687 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for mules and asses ,,Animal category: Mules and Asses ,,,,0.6 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416688 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for mules and asses ,,Animal category: Mules and Asses ,,,,0.9 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416689 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for mules and asses ,,Animal category: Mules and Asses ,,,,1.2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","See Annex 10A.1, Volume 4 of 2006 Guidelines, as the basis of developing these emission factors Woodbury, J.W. and Hashimoto, A. (1993). Methane Emissions from Livestock Manure. In International Methane Emissions, US Environmental Protection Agency, Climate Change Division, Washington, D.C., U.S.A. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416690 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for layers (dry) ,"Layers (dry) represent layers in a ""without bedding"" waste management system. Layer operations that manage dry manure ",Animal category: Poultry (layers - dry) ,,,,0.03 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For layers, volatile solids (VS) are values reported in USDA (1996); typical animal mass values are from ASAE (1999); and Bo values for Layers are values reported by Hill (1982) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416691 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for layers (dry) ,"Layers (dry) represent layers in a ""without bedding"" waste management system. Layer operations that manage dry manure ",Animal category: Poultry (layers - dry) ,,,,0.03 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For layers, volatile solids (VS) are values reported in USDA (1996); typical animal mass values are from ASAE (1999); and Bo values for Layers are values reported by Hill (1982) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416692 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for layers (dry) ,"Layers (dry) represent layers in a ""without bedding"" waste management system. Layer operations that manage dry manure ",Animal category: Poultry (layers - dry) ,,,,0.03 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For layers, volatile solids (VS) are values reported in USDA (1996); typical animal mass values are from ASAE (1999); and Bo values for Layers are values reported by Hill (1982) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416693 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for layers (wet) ,"Layers (wet) represent layers in an anaerobic lagoon waste management system. Layer operations that manage manure as a liquid, such as stored in an anaerobic lagoon. ",Animal category: Poultry (layers - wet) ,,,,1.2 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For layers, volatile solids (VS) are values reported in USDA (1996); typical animal mass values are from ASAE (1999); and Bo values for Layers are values reported by Hill (1982) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416694 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for layers (wet) ,"Layers (wet) represent layers in an anaerobic lagoon waste management system. Layer operations that manage manure as a liquid, such as stored in an anaerobic lagoon. ",Animal category: Poultry (layers - wet) ,,,,1.4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For layers, volatile solids (VS) are values reported in USDA (1996); typical animal mass values are from ASAE (1999); and Bo values for Layers are values reported by Hill (1982) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416695 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for layers (wet) ,"Layers (wet) represent layers in an anaerobic lagoon waste management system. Layer operations that manage manure as a liquid, such as stored in an anaerobic lagoon. ",Animal category: Poultry (layers - wet) ,,,,1.4 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For layers, volatile solids (VS) are values reported in USDA (1996); typical animal mass values are from ASAE (1999); and Bo values for Layers are values reported by Hill (1982) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416696 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for broilers ,,Animal category: Poultry (broilers) ,,,,0.02 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For broilers, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416697 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for broilers ,,Animal category: Poultry (broilers) ,,,,0.02 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For broilers, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416698 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for broilers ,,Animal category: Poultry (broilers) ,,,,0.02 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For broilers, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416699 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for turkeys ,,Animal category: Poultry (turkeys) ,,,,0.09 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416700 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for turkeys ,,Animal category: Poultry (turkeys) ,,,,0.09 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416701 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for turkeys ,,Animal category: Poultry (turkeys) ,,,,0.09 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416702 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for ducks ,,Animal category: Poultry (ducks) ,,,,0.02 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416703 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for ducks ,,Animal category: Poultry (ducks) ,,,,0.03 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416704 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for ducks ,,Animal category: Poultry (ducks) ,,,,0.03 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416705 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for poultry ,,Animal category: Poultry ,,,,0.01 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416706 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for poultry ,,Animal category: Poultry ,,,,0.02 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416707 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factors by temperature for poultry ,,Animal category: Poultry ,,,,0.02 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","For turkeys, Bo values are from Hill (1984); typical animal mass values are from ASAE (1999); and VS values are those reported in USDA (1996). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.15 - Manure management methane emission factors by temperature for sheep, goats, camels, horses, mules and asses, and poultry, on page 10.40 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416708 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factor for deer ,,Animal category: Deer ,,,,0.22 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Sneath, R.W., Phillips, V.R., Demmers, G.M., Burgess, L.R. and Short, J.L. (1997). Long Term Measurements of Greenhouse Gas Emissions from UK Livestock Buildings. Bio-Engineering Division, Silsoe Research Institute, Wrest Park, Silsoe, Bedford, MK45 4HS. Livestock Environment: Proceedings of the Fifth International Symposium. Bloomington MN. May 29-31, 1997. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.16 - Manure management methane emission factors for Deer, Reindeer, Rabbits, and fur-bearing animals, on page 10.41 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416709 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factor for reindeer ,,Animal category: Reindeer ,,,,0.36 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Estimations of Agricultural University of Norway, Institute of Chemistry and Biotechnology, Section for Microbiology. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.16 - Manure management methane emission factors for Deer, Reindeer, Rabbits, and fur-bearing animals, on page 10.41 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416710 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Manure management methane emission factor for rabbits ,,Animal category: Rabbits ,,,,0.08 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ",Judgement of the IPCC Expert Group ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.16 - Manure management methane emission factors for Deer, Reindeer, Rabbits, and fur-bearing animals, on page 10.41 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416711 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,"Manure management methane emission factor for Fur-bearing animals (e.g., fox, mink) ",,"Animal category: Fur-bearing animals (e.g., fox, mink) ",,,,0.68 ,kg CH4/head/yr ,Equation 10.22 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.7 of Volume 4 of the 2006 IPCC Guidelines ","Estimations of Agricultural University of Norway, Institute of Chemistry and Biotechnology, Section for Microbiology. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.16 - Manure management methane emission factors for Deer, Reindeer, Rabbits, and fur-bearing animals, on page 10.41 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416712 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416713 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416714 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416715 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416716 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416717 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416718 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416719 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416720 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416721 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416722 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416723 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416724 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416725 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416726 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416727 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416728 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416729 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416730 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The manure from pasture and range grazing animals is allowed to lie as deposited, and is not managed. ",Manure management system: Pasture/range/paddock ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416731 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416732 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416733 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416734 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416735 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416736 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416737 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416738 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416739 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416740 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416741 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416742 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416743 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416744 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416745 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416746 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416747 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416748 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416749 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. ,Manure management system: Daily spread ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Hashimoto, A. and Steed, J. (1993). Methane emissions from typical U.S. livestock manure management systems. Draft report prepared for ICF Incorporated under contract to the Global Change Division of the Office of Air and Radiation, US Environmental Protection Agency, Washington, D.C. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416750 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416751 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416752 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416753 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416754 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416755 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416756 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416757 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416758 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416759 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416760 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416761 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416762 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416763 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416764 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416765 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,4 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416766 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416767 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416768 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions of approximately 2% in winter and 4% in summer. Warm climate is based on judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. Amon, B., Amon, Th., Boxberger, J. and Alt, Ch. (2001). Emissions of NH3, N2O, and CH4 from dairy cows housed in a farmyard manure tying stall (Housing, Manure Storage, Manure Spreading). Nutrient Cycling in Agroecosystems, 60: pp. 103-113. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416769 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416770 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416771 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416772 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416773 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416774 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416775 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416776 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416777 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416778 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416779 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416780 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416781 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416782 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416783 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416784 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416785 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416786 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416787 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. ,Manure management system: Dry lot ,,,,2 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Hashimoto and Steed (1994). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416788 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416789 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,11 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416790 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,13 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416791 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,14 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416792 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,15 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416793 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,17 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416794 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,18 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416795 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,20 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416796 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,22 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416797 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,24 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416798 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,26 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416799 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,29 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416800 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,31 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416801 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,34 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416802 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,37 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416803 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,41 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416804 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,44 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416805 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,48 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416806 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (With natural crust cover) ,,,,50 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Mangino et al. (2001) and Sommer (2000). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416807 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,17 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416808 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,19 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416809 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,20 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416810 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,22 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416811 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,25 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416812 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,27 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416813 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,29 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416814 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,32 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416815 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,35 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416816 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,39 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416817 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,42 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416818 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,46 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416819 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,50 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416820 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,55 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416821 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,60 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416822 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,65 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416823 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,71 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416824 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,78 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416825 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Manure is stored as excreted or with some minimal addition of water in either tanks or earthen ponds outside the animal housing, usually for periods less than one year. ",Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,80 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416826 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,66 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416827 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,68 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416828 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,70 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416829 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,71 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416830 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,73 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416831 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,74 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416832 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,75 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416833 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,76 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416834 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,77 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416835 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,77 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416836 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,78 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416837 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,78 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416838 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,78 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416839 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,79 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416840 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,79 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416841 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,79 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416842 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,79 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416843 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,80 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416844 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"A type of liquid storage system designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,80 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416845 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416846 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416847 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416848 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416849 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416850 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416851 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416852 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416853 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416854 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416855 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416856 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416857 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416858 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416859 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416860 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416861 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,30 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416862 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,30 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416863 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (<1 month) ,,,,30 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004) and Zeeman (1994). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. Zeeman, G. (1994). Methane production/emission in storages for animal manure. Fertilizer Research 37: 207-211, 1994. Kluwer Academic Publishers, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416864 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,17 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416865 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,19 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416866 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,20 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416867 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,22 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416868 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,25 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416869 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,27 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416870 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,29 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416871 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,32 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416872 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,35 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416873 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,39 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416874 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,42 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416875 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,46 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416876 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,50 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416877 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,55 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416878 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,60 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416879 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,65 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416880 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,71 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416881 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,78 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416882 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility, usually for periods less than one year. ",Manure management system: Pit storage below animal confinements (>1 month) ,,,,80 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416883 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416884 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416885 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416886 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416887 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416888 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416889 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416890 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416891 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416892 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416893 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416894 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416895 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416896 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416897 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416898 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416899 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416900 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416901 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Animal excreta with or without straw are collected and anaerobically digested in a large containment vessel or covered lagoon. Digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CO2 and CH4, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0-100 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416902 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416903 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416904 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416905 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416906 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416907 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416908 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416909 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416910 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416911 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416912 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416913 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416914 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416915 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416916 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416917 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416918 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416919 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416920 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,The dung and urine are excreted on fields. The sun dried dung cakes are burned for fuel. ,Manure management system: Burned for fuel ,,,,10 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Safley et al. (1992). Safley, L.M., Casada, M.E., Woodbury, J.W. and Roos, K.F. (1992). Global Methane Emissions from Livestock and Poultry Manure. US Environmental Protection Agency, Global Change Division, Washington, D.C., February 1992, EPA/400/1091/048. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416921 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Moller et al. (2004). Moller, H.B., Sommer, S.G. and Ahring, B. (2004). Biological degradation and greenhouse gas emissions during pre-storage of liquid animal manure. Journal of Environmental Quality, 33: pp. 27-36. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416922 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416923 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416924 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416925 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416926 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416927 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416928 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416929 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416930 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416931 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416932 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416933 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416934 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416935 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416936 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,3 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416937 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,30 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416938 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,30 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416939 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (<1 month) ,,,,30 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group in combination with Moller et al. (2004). ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416940 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,17 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416941 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,19 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416942 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,20 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416943 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,22 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416944 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,25 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416945 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,27 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416946 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,29 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416947 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,32 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416948 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,35 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416949 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,39 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416950 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,42 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416951 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,46 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416952 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,50 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416953 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,55 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416954 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,60 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416955 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,65 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416956 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,71 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416957 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,78 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416958 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and Swine deep bedding (>1 month) ,,,,80 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group in combination with Mangino et al. (2001). Mangino, J., Bartram, D. and Brazy, A. (2001). Development of a methane conversion factor to estimate emissions from animal waste lagoons. Presented at U.S. EPA`s 17th Annual Emission Inventory Conference, Atlanta GA, April 16-18, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416959 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416960 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416961 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416962 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416963 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416964 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416965 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416966 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416967 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416968 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416969 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416970 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416971 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416972 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416973 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416974 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416975 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416976 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416977 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-vessel ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416978 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416979 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416980 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416981 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416982 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416983 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416984 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416985 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416986 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416987 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416988 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416989 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416990 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416991 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416992 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416993 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416994 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416995 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416996 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static pile ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416997 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416998 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +416999 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417000 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417001 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417002 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417003 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417004 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417005 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417006 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417007 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417008 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417009 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417010 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417011 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417012 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417013 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417014 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417015 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with regular (at least daily) turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive windrow ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417016 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417017 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417018 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417019 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417020 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,0.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417021 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417022 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417023 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417024 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417025 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417026 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417027 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417028 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417029 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417030 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417031 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417032 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417033 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417034 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group and Amon et al. (1998). Amon, B., Amon, Th., Boxberger, J. and Pollinger, A. (1998). Emissions of NH3, N2O, and CH4 from composted and anaerobically stored farmyard manure. Pages 209-216 in Martinez J, Maudet M-N (eds) Ramiran 98, Proc. 8th Int. Conf. on the FAO ESCORENA Network on Recycling of Agricultural, Municipal and Industrial Residues in Agriculture. Rennes, France. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417035 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417036 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417037 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417038 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417039 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417040 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417041 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417042 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417043 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417044 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417045 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417046 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417047 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417048 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417049 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417050 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417051 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417052 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417053 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,Similar to cattle and swine deep bedding except usually not combined with a dry lot or pasture. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417054 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417055 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417056 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417057 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417058 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417059 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417060 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417061 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417062 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417063 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417064 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417065 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417066 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417067 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417068 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417069 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417070 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417071 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417072 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,1.5 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,Judgement of IPCC Expert Group. ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417073 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417074 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417075 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417076 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417077 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417078 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417079 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417080 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417081 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417082 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417083 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417084 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417085 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417086 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417087 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417088 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417089 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417090 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417091 ,4B - Manure Management,3.A.2 - Manure Management,METHANE,,,2006 IPCC default ,Methane conversion factor by average annual temperature ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment ,,,,0 ,% ,Equation 10.23 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.17 - MCF values by temperature for manure management systems, on pages 10.44 - 10.47 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417092 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Dairy Cattle ,Region: North America ,,,0.44 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417093 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Cattle ,Region: North America ,,,0.31 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417094 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine ,Region: North America ,,,0.40 (0.4) ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417095 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Market) ,Region: North America ,,,0.42 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417096 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Breeding) ,Region: North America ,,,0.24 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417097 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Poultry ,Region: North America ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417098 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Hens (equal or > 1 yr) ,Region: North America ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417099 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Pullets ,Region: North America ,,,0.62 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417100 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Chickens ,Region: North America ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417101 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Broilers ,Region: North America ,,,1.1 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417102 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Turkeys ,Region: North America ,,,0.74 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417103 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Ducks ,Region: North America ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417104 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Sheep ,Region: North America ,,,0.42 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417105 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Goats ,Region: North America ,,,0.45 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417106 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,"Animal category: Horses (and mules, asses) ",Region: North America ,,,0.3 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417107 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Camels ,Region: North America ,,,0.38 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417108 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Buffalo ,Region: North America ,,,0.32 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417109 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Mink and Polecat ,Region: North America ,,,4.59 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417110 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Rabbits ,Region: North America ,,,8.1 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417111 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Fox and Racoon ,Region: North America ,,,12.09 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417112 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Dairy Cattle ,Region: Western Europe ,,,0.48 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417113 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Cattle ,Region: Western Europe ,,,0.33 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417114 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine ,Region: Western Europe ,,,0.50 (0.5) ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417115 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Market) ,Region: Western Europe ,,,0.51 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417116 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Breeding) ,Region: Western Europe ,,,0.42 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417117 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Poultry ,Region: Western Europe ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417118 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Hens (equal or > 1 yr) ,Region: Western Europe ,,,0.96 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417119 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Pullets ,Region: Western Europe ,,,0.55 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417120 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Chickens ,Region: Western Europe ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417121 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Broilers ,Region: Western Europe ,,,1.1 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417122 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Turkeys ,Region: Western Europe ,,,0.74 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417123 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Ducks ,Region: Western Europe ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417124 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Sheep ,Region: Western Europe ,,,0.85 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417125 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Goats ,Region: Western Europe ,,,1.28 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417126 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,"Animal category: Horses (and mules, asses) ",Region: Western Europe ,,,0.26 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417127 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Camels ,Region: Western Europe ,,,0.38 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417128 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Buffalo ,Region: Western Europe ,,,0.32 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417129 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Mink and Polecat ,Region: Western Europe ,,,4.59 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417130 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Rabbits ,Region: Western Europe ,,,8.1 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417131 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Fox and Racoon ,Region: Western Europe ,,,12.09 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417132 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Dairy Cattle ,Region: Eastern Europe ,,,0.35 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417133 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Cattle ,Region: Eastern Europe ,,,0.35 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417134 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine ,Region: Eastern Europe ,,,0.54 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417135 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Market) ,Region: Eastern Europe ,,,0.55 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417136 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Breeding) ,Region: Eastern Europe ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417137 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Poultry ,Region: Eastern Europe ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417138 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Hens (equal or > 1 yr) ,Region: Eastern Europe ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417139 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Pullets ,Region: Eastern Europe ,,,0.6 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417140 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Chickens ,Region: Eastern Europe ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417141 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Broilers ,Region: Eastern Europe ,,,1.1 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417142 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Turkeys ,Region: Eastern Europe ,,,0.74 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417143 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Ducks ,Region: Eastern Europe ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417144 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Sheep ,Region: Eastern Europe ,,,0.9 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417145 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Goats ,Region: Eastern Europe ,,,1.28 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417146 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,"Animal category: Horses (and mules, asses) ",Region: Eastern Europe ,,,0.3 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417147 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Camels ,Region: Eastern Europe ,,,0.38 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417148 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Buffalo ,Region: Eastern Europe ,,,0.32 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417149 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Mink and Polecat ,Region: Eastern Europe ,,,4.59 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417150 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Rabbits ,Region: Eastern Europe ,,,8.1 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417151 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Fox and Racoon ,Region: Eastern Europe ,,,12.09 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417152 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Dairy Cattle ,Region: Oceania ,,,0.44 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417153 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Cattle ,Region: Oceania ,,,0.5 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417154 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine ,Region: Oceania ,,,0.52 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417155 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Market) ,Region: Oceania ,,,0.53 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417156 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Breeding) ,Region: Oceania ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417157 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Poultry ,Region: Oceania ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417158 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Hens (equal or > 1 yr) ,Region: Oceania ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417159 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Pullets ,Region: Oceania ,,,0.6 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417160 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Chickens ,Region: Oceania ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417161 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Broilers ,Region: Oceania ,,,1.1 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417162 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Turkeys ,Region: Oceania ,,,0.74 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417163 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Ducks ,Region: Oceania ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417164 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Sheep ,Region: Oceania ,,,1.13 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417165 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Goats ,Region: Oceania ,,,1.42 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417166 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,"Animal category: Horses (and mules, asses) ",Region: Oceania ,,,0.3 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417167 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Camels ,Region: Oceania ,,,0.38 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417168 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Buffalo ,Region: Oceania ,,,0.32 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417169 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Mink and Polecat ,Region: Oceania ,,,4.59 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417170 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Rabbits ,Region: Oceania ,,,8.1 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417171 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Fox and Racoon ,Region: Oceania ,,,12.09 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417172 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Dairy Cattle ,Region: Latin America ,,,0.48 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417173 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Cattle ,Region: Latin America ,,,0.36 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417174 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine ,Region: Latin America ,,,1.47 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417175 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Market) ,Region: Latin America ,,,1.57 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417176 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Breeding) ,Region: Latin America ,,,0.55 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417177 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Poultry ,Region: Latin America ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417178 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Hens (equal or > 1 yr) ,Region: Latin America ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417179 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Pullets ,Region: Latin America ,,,0.6 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417180 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Chickens ,Region: Latin America ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417181 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Broilers ,Region: Latin America ,,,1.1 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417182 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Turkeys ,Region: Latin America ,,,0.74 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417183 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Ducks ,Region: Latin America ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417184 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Sheep ,Region: Latin America ,,,1.17 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417185 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Goats ,Region: Latin America ,,,1.37 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417186 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,"Animal category: Horses (and mules, asses) ",Region: Latin America ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417187 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Camels ,Region: Latin America ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417188 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Buffalo ,Region: Latin America ,,,0.32 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417189 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Mink and Polecat ,Region: Latin America ,,,4.59 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417190 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Rabbits ,Region: Latin America ,,,8.1 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417191 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Fox and Racoon ,Region: Latin America ,,,12.09 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417192 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Dairy Cattle ,Region: Africa ,,,0.6 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417193 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Cattle ,Region: Africa ,,,0.63 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417194 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine ,Region: Africa ,,,1.47 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417195 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Market) ,Region: Africa ,,,1.57 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417196 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Breeding) ,Region: Africa ,,,0.55 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417197 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Poultry ,Region: Africa ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417198 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Hens (equal or > 1 yr) ,Region: Africa ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417199 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Pullets ,Region: Africa ,,,0.6 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417200 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Chickens ,Region: Africa ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417201 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Broilers ,Region: Africa ,,,1.1 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417202 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Turkeys ,Region: Africa ,,,0.74 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417203 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Ducks ,Region: Africa ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417204 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Sheep ,Region: Africa ,,,1.17 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417205 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Goats ,Region: Africa ,,,1.37 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417206 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,"Animal category: Horses (and mules, asses) ",Region: Africa ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417207 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Camels ,Region: Africa ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417208 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Buffalo ,Region: Africa ,,,0.32 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417209 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Mink and Polecat ,Region: Africa ,,,4.59 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417210 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Rabbits ,Region: Africa ,,,8.1 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417211 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Fox and Racoon ,Region: Africa ,,,12.09 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417212 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Dairy Cattle ,Region: Middle East ,,,0.7 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417213 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Cattle ,Region: Middle East ,,,0.79 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417214 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine ,Region: Middle East ,,,1.47 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417215 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Market) ,Region: Middle East ,,,1.57 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417216 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Breeding) ,Region: Middle East ,,,0.55 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417217 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Poultry ,Region: Middle East ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417218 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Hens (equal or > 1 yr) ,Region: Middle East ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417219 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Pullets ,Region: Middle East ,,,0.6 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417220 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Chickens ,Region: Middle East ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417221 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Broilers ,Region: Middle East ,,,1.1 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417222 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Turkeys ,Region: Middle East ,,,0.74 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417223 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Ducks ,Region: Middle East ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417224 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Sheep ,Region: Middle East ,,,1.17 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417225 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Goats ,Region: Middle East ,,,1.37 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417226 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,"Animal category: Horses (and mules, asses) ",Region: Middle East ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417227 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Camels ,Region: Middle East ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417228 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Buffalo ,Region: Middle East ,,,0.32 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417229 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Mink and Polecat ,Region: Middle East ,,,4.59 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417230 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Rabbits ,Region: Middle East ,,,8.1 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417231 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Fox and Racoon ,Region: Middle East ,,,12.09 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417232 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Dairy Cattle ,Region: Asia ,,,0.47 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417233 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Cattle ,Region: Asia ,,,0.34 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417234 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine ,Region: Asia ,,,0.40 (0.4) ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417235 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Market) ,Region: Asia ,,,0.42 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417236 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Swine (Breeding) ,Region: Asia ,,,0.24 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417237 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Poultry ,Region: Asia ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417238 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Hens (equal or > 1 yr) ,Region: Asia ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417239 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Pullets ,Region: Asia ,,,0.6 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417240 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Other Chickens ,Region: Asia ,,,0.82 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417241 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Broilers ,Region: Asia ,,,1.1 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417242 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Turkeys ,Region: Asia ,,,0.74 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417243 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Ducks ,Region: Asia ,,,0.83 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417244 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Sheep ,Region: Asia ,,,1.17 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417245 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Goats ,Region: Asia ,,,1.37 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417246 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,"Animal category: Horses (and mules, asses) ",Region: Asia ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417247 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Camels ,Region: Asia ,,,0.46 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417248 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Buffalo ,Region: Asia ,,,0.32 ,kg N/1000 kg animal mass/day ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Modified from European Environmental Agency, 2002. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417249 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Mink and Polecat ,Region: Asia ,,,4.59 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417250 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Rabbits ,Region: Asia ,,,8.1 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Summarized from 1996 IPCC Guidelines, 1997; European Environmental Agency, 2002; USA EPA National NH3 Inventory Draft Report, 2004; and data of GHG inventories of Annex I Parties submitted to the Secretariat UNFCCC in 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417251 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen excretion rate ,,Animal category: Fox and Racoon ,Region: Asia ,,,12.09 ,kg N/head/yr ,"Equations 10.25, 10.26, and 10.28 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Data of Hutchings et al., 2001. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.19 - Default values for nitrogen excretion rate, on page 10.59 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417252 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Dairy Cows ,,,,0.2 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417253 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Other Cattle ,,,,0.07 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417254 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Buffalo ,,,,0.07 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417255 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Sheep ,,,,0.1 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417256 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Goats ,,,,0.1 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417257 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Camels ,,,,0.07 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417258 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Swine ,,,,0.3 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417259 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Horses ,,,,0.07 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417260 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for the fraction of nitrogen in feed intake of livestock that is retained by the different livestock species/categories ,,Animal category: Poultry ,,,,0.3 ,[kg N retained/animal/yr]/[kg N intake/animal/yr] ,Equation 10.31 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Judgement of IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.20 - Default values for nitrogen excretion rate, on page 10.60 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417261 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,Manure is routinely removed from a confinement facility and is applied to cropland or pasture within 24 hours of excretion. N2O emissions during storage and treatment are assumed to be zero. N2O emissions from land application are covered under the Agricultural Soils category. ,Manure management system: Daily spread ,,,,0 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement by IPCC Expert Group (see Co-chairs, Editors and Experts; N2O emissions from Manure Management, Volume 4, Chapter 11 of 2006 Guidelines). Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417262 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,"The storage of manure, typically for a period of several months, in unconfined piles or stacks. Manure is able to be stacked due to the presence of a sufficient amount of bedding material or loss of moisture by evaporation. ",Manure management system: Solid storage ,,,,0.005 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group in combination with Amon et al. (2001), which shows emissions ranging from 0.0027 to 0.01 kg N2O-N (kg N)-1. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417263 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,A paved or unpaved open confinement area without any significant vegetative cover where accumulating manure may be removed periodically. Dry lots are most typically found in dry climates but also are used in humid climates. ,Manure management system: Dry lot ,,,,0.02 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group in combination with Kulling (2003). Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417264 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,Manure is stored as excreted or with some minimal addition of water to facilitate handling and is stored in either tanks or earthen ponds. ,Manure management system: Liquid/Slurry (With natural crust cover) ,,,,0.005 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group in combination with Sommer et al. (2000). Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417265 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,Manure is stored as excreted or with some minimal addition of water to facilitate handling and is stored in either tanks or earthen ponds. ,Manure management system: Liquid/Slurry (Without natural crust cover) ,,,,0 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group in combination with the following studies: Harper et al. (2000), Lague et al. (2004), Monteny et al. (2001), and Wagner-Riddle and Marinier (2003). Emissions are believed negligible based on the absence of oxidized forms of nitrogen entering systems in combination with low potential for nitrification and denitrification in the system. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417266 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,"Anaerobic lagoons are designed and operated to combine waste stabilization and storage. Lagoon supernatant is usually used to remove manure from the associated confinement facilities to the lagoon. Anaerobic lagoons are designed with varying lengths of storage (up to a year or greater), depending on the climate region, the volatile solids loading rate, and other operational factors. The water from the lagoon may be recycled as flush water or used to irrigate and fertilise fields. ",Manure management system: Uncovered anaerobic lagoon ,,,,0 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group in combination with the following studies: Harper et al. (2000), Lague et al. (2004), Monteny et al. (2001), and Wagner-Riddle and Marinier (2003). Emissions are believed negligible based on the absence of oxidized forms of nitrogen entering systems in combination with low potential for nitrification and denitrification in the system. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417267 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,Collection and storage of manure usually with little or no added water typically below a slatted floor in an enclosed animal confinement facility. ,Manure management system: Pit storage below animal confinements ,,,,0.002 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group in combination with the following studies: Amon et al. (2001), Kulling (2003), and Sneath et al. (1997). Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417268 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,"Anaerobic digesters are designed and operated for waste stabilization by the microbial reduction of complex organic compounds to CH4 and CO2, which is captured and flared or used as a fuel. ",Manure management system: Anaerobic digester ,,,,0 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group in combination with the following studies: Harper et al. (2000), Lague et al. (2004) Monteny et al. (2001), and Wagner-Riddle and Marinier (2003). Emissions are believed negligible based on the absence of oxidized forms of nitrogen entering systems in combination with low potential for nitrification and denitrification in the system. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417269 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and swine deep bedding (No mixing) ,,,,0.01 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Average value based on Sommer and Moller (2000), Sommer (2000), Amon et al. (1998), and Nicks et al. (2003). Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417270 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,"As manure accumulates, bedding is continually added to absorb moisture over a production cycle and possibly for as long as 6 to 12 months. This manure management system also is known as a bedded pack manure management system and may be combined with a dry lot or pasture. ",Manure management system: Cattle and swine deep bedding (Active mixing) ,,,,0.07 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Average value based on Nicks et al. (2003) and Moller et al. (2000). Some literature cites higher values to 20% for well maintained, active mixing, but those systems included treatment for ammonia which is not typical. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417271 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,"Composting, typically in an enclosed channel, with forced aeration and continuous mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ",Manure management system: Composting - In-Vessel ,,,,0.006 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group. Expected to be similar to static piles. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417272 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,Composting in piles with forced aeration but no mixing. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Static Pile ,,,,0.006 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Hao et al. (2001). Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417273 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,Composting in windrows with regular turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Intensive Windrow ,,,,0.1 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group. Expected to be greater than passive windrows and intensive composting operations, as emissions are a function of the turning frequency. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417274 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,Composting in windrows with infrequent turning for mixing and aeration. Definition: Composting is the biological oxidation of a solid waste including manure usually with bedding or another organic carbon source typically at thermophilic temperatures produced by microbial heat production. ,Manure management system: Composting - Passive Windrow ,,,,0.01 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Hao et al. (2001). Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417275 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,Similar to deep bedding systems. Typically used for all poultry breeder flocks and for the production of meat type chickens (broilers) and other fowl. ,Manure management system: Poultry manure with litter ,,,,0.001 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group based on the high loss of ammonia from these systems, which limits the availability of nitrogen for nitrification/denitrification. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417276 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,May be similar to open pits in enclosed animal confinement facilities or may be designed and operated to dry the manure as it accumulates. The latter is known as a high-rise manure management system and is a form of passive windrow composting when designed and operated properly. ,Manure management system: Poultry manure without litter ,,,,0.001 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group based on the high loss of ammonia from these systems, which limits the availability of nitrogen for nitrification/denitrification. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417277 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment (Natural aeration systems) ,,,,0.01 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group. Nitrification-denitrification is used widely for the removal of nitrogen in the biological treatment of municipal and industrial wastewaters with negligible N2O emissions. Limited oxidation may increase emissions compared to forced aeration systems. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417278 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default emission factors for direct N2O emissions from manure management ,"The biological oxidation of manure collected as a liquid with either forced or natural aeration. Natural aeration is limited to aerobic and facultative ponds and wetland systems and is due primarily to photosynthesis. Hence, these systems typically become anoxic during periods without sunlight. ",Manure management system: Aerobic treatment (Forced aeration systems) ,,,,0.005 ,kg N2O-N/kg N excreted ,Equation 10.25 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 1, Category Code 3A2, Page A1.8 of Volume 4 of the 2006 IPCC Guidelines ","Judgement of IPCC Expert Group. Nitrification-denitrification is used widely for the removal of nitrogen in the biological treatment of municipal and industrial wastewaters with negligible N2O emissions. Also see Dustan (2002), which compiled information from some of the original references cited. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.21 - Default emission factors for direct N2O emissions from manure management, on pages 10.62 - 10.64 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417279 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Swine Manure management system: Anaerobic lagoon ,,,,40 (25 - 75) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417280 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Swine Manure management system: Pit storage ,,,,25 (15 - 30) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417281 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Swine Manure management system: Deep bedding ,,,,40 (10 - 60) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417282 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Swine Manure management system: Liquid/slurry ,,,,48 (15 - 60) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417283 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Swine Manure management system: Solid storage ,,,,45 (10 - 65) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417284 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Dairy Cow Manure management system: Anaerobic lagoon ,,,,35 (20 - 80) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417285 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Dairy Cow Manure management system: Liquid/Slurry ,,,,40 (15 - 45) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417286 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Dairy Cow Manure management system: Pit storage ,,,,28 (10 - 40) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417287 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Dairy Cow Manure management system: Dry lot ,,,,20 (10 - 35) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417288 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Dairy Cow Manure management system: Solid storage ,,,,30 (10 - 40) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417289 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Dairy Cow Manure management system: Daily spread ,,,,7 (5 - 60) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417290 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Poultry Manure management system: Poultry without litter ,,,,55 (40 - 70) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417291 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Poultry Manure management system: Anaerobic lagoon ,,,,40 (25 - 75) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417292 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Poultry Manure management system: Poultry with litter ,,,,40 (10 - 60) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417293 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Other Cattle Manure management system: Dry lot ,,,,30 (20 - 50) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417294 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Other Cattle Manure management system: Solid storage ,,,,45 (10 - 65) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417295 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,Animal category: Other Cattle Manure management system: Deep bedding ,,,,30 (20 - 40) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417296 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,"Animal category: Other (includes sheep, horses, and fur-bearing animals) Manure management system: Deep bedding ",,,,25 (10 - 30) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417297 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management (FracgasMS) ,,"Animal category: Other (includes sheep, horses, and fur-bearing animals) Manure management system: Solid storage ",,,,12 (5 - 20) ,% ,Equation 10.26 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Volatilization rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.22 - Default values for nitrogen loss due to volatilisation of NH3 and NOx from manure management, on page 10.65 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417298 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Swine Manure management system: Anaerobic lagoon ,,,,78 (55 - 99) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417299 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Swine Manure management system: Pit storage ,,,,25 (15 - 30) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417300 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Swine Manure management system: Deep bedding ,,,,50 (10 - 60) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417301 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Swine Manure management system: Liquid/Slurry ,,,,48 (15 - 60) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417302 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Swine Manure management system: Solid storage ,,,,50 (20 - 70) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417303 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Dairy Cow Manure management system: Anaerobic lagoon ,,,,77 (55 - 99) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417304 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Dairy Cow Manure management system: Liquid/Slurry ,,,,40 (15 - 45) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417305 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Dairy Cow Manure management system: Pit storage ,,,,28 (10 - 40) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417306 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Dairy Cow Manure management system: Dry lot ,,,,30 (10 - 35) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417307 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Dairy Cow Manure management system: Solid storage ,,,,40 (10 - 65) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417308 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Dairy Cow Manure management system: Daily spread ,,,,22 (15 - 60) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417309 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Poultry Manure management system: Poultry without litter ,,,,55 (40 - 70) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417310 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Poultry Manure management system: Anaerobic lagoon ,,,,77 (50 - 99) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417311 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Poultry Manure management system: Poultry with litter ,,,,50 (20 - 80) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417312 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Other Cattle Manure management system: Dry lot ,,,,40 (20 - 50) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417313 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Other Cattle Manure management system: Solid storage ,,,,50 (20 - 70) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417314 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,Animal category: Other Cattle Manure management system: Deep bedding ,,,,40 (10 - 50) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417315 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,"Animal category: Other (includes sheep, horses, and fur-bearing animals) Manure management system: Deep bedding ",,,,35 (15 - 40) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417316 ,4B - Manure Management,3.A.2 - Manure Management,NITROUS OXIDE,,,2006 IPCC default ,Total N loss from manure management system (FracLossMS) ,,"Animal category: Other (includes sheep, horses, and fur-bearing animals) Manure management system: Solid storage ",,,,15 (5 - 20) ,% ,Equation 10.34 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Total N loss rates based on judgement of IPCC Expert Group and following sources: Rotz ( 2003), Hutchings et al. (2001), and U.S EPA (2004). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 10.23 - Default values for total nitrogen loss from manure management, on page 10.67 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417317 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor for N additions from mineral fertilisers, organic amendments and crop residues, and N mineralised from mineral soil as a result of loss of soil carbon (EF1) ",,,,,,0.01(0.003 - 0.03) ,kg N2O-N/kg N input ,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 2, Category Code 3C4, Page A1.57 of Volume 4 of the 2006 IPCC Guidelines ","Bouwman et al. 2002a,b; Stehfest & Bouwman, 2006; Novoa & Tejeda, 2006 in press ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417318 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Default emission factor to estimate direct N2O emissions from flooded rice fields (EF1FR) ,,,,,,0.003 (0.000 - 0.006) ,kg N2O-N/kg N input ,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 2, Category Code 3C4, Page A1.57 of Volume 4 of the 2006 IPCC Guidelines ","Akiyama et al., 2005 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417319 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor to estimate direct N2O emissions from temperate organic crop and grassland soils (EF2 CG, Temp) ",,,,,,8 (2 - 24) ,,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C4, Page A1.58 of Volume 4 of the 2006 IPCC Guidelines ","Klemedtsson et al., 1999, IPCC Good Practice Guidance, 2000; ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417320 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor to estimate direct N2O emissions from tropical organic crop and grassland soils (EF2 CG, Trop ) ",,,,,,16 (5 - 48) ,,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C4, Page A1.58 of Volume 4 of the 2006 IPCC Guidelines ","Alm et al., 1999; Laine et al., 1996; Martikainen et al., 1995; Minkkinen et al., 2002: Regina et al., 1996; Klemedtsson et al., 2002 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417321 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor to estimate direct N2O emissions from temperate and boreal organic nutrient rich forest soils (EF2F, Temp, Org, R ) ",,,,,,0.6 (0.16 - 2.4) ,,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C4, Page A1.58 of Volume 4 of the 2006 IPCC Guidelines ","Alm et al., 1999; Laine et al., 1996; Martikainen et al., 1995; Minkkinen et al., 2002: Regina et al., 1996; Klemedtsson et al., 2002 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417322 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor to estimate direct N2O emissions from temperate and boreal organic nutrient poor forest soils (EF2F, Temp, Org, P) ",,,,,,0.1 (0.02 - 0.3) ,,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C4, Page A1.58 of Volume 4 of the 2006 IPCC Guidelines ","Alm et al., 1999; Laine et al., 1996; Martikainen et al., 1995; Minkkinen et al., 2002: Regina et al., 1996; Klemedtsson et al., 2002 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417323 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor to estimate direct N2O emissions from tropical organic forest soils (EF2F, Trop) ",,,,,,8 (0 - 24) ,,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C4, Page A1.58 of Volume 4 of the 2006 IPCC Guidelines ","Alm et al., 1999; Laine et al., 1996; Martikainen et al., 1995; Minkkinen et al., 2002: Regina et al., 1996; Klemedtsson et al., 2002 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417324 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor to estimate direct N2O emissions for cattle (dairy, non-dairy and buffalo), poultry and pigs (EF3PRP, CPP) ",,,,,,0.02 (0.007 - 0.06) ,kg N2O-N/kg N input ,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C4, Page A1.58 of Volume 4 of the 2006 IPCC Guidelines ","de Klein, 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417325 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,,,,,,,0.01 (0.003 0.03) ,kg N2O-N/kg N input ,Equation 11.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C4, Page A1.58 of Volume 4 of the 2006 IPCC Guidelines ","de Klein, 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.1 - Default emission factors to estimate direct N2O emissions from managed soils, on page 11.11 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417326 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Grains ,,,,0.88 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417327 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Beans and pulses ,,,,0.91 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417328 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Tubers ,,,,0.22 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417329 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,"Crop: Root crops, other ",,,,0.94 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417330 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: N-fixing forages ,,,,0.9 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417331 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Non-N-fixing forages ,,,,0.9 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417332 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Perennial grasses ,,,,0.9 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417333 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Grass-clover mixtures ,,,,0.9 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417334 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Maize ,,,,0.87 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417335 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Wheat ,,,,0.89 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417336 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Winter wheat ,,,,0.89 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417337 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Spring wheat ,,,,0.89 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417338 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Rice ,,,,0.89 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417339 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Barley ,,,,0.89 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417340 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Oats ,,,,0.89 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417341 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Millet ,,,,0.9 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417342 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Sorghum ,,,,0.89 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417343 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Rye ,,,,0.88 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417344 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Soyabean ,,,,0.91 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417345 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Dry bean ,,,,0.9 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417346 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Potato ,,,,0.22 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417347 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Peanut (with pod) ,,,,0.94 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417348 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Alfalfa ,,,,0.9 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417349 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Dry matter fraction of harvested product (DRY) ,,Crop: Non-legume hay ,,,,0.9 ,kg d.m./kg fresh weight ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417350 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Grains ,,,,0.006 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417351 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Beans and pulses ,,,,0.008 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417352 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Tubers ,,,,0.019 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417353 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,"Crop: Root crops, other ",,,,0.016 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417354 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: N-fixing forages ,,,,0.027 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417355 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Non-N-fixing forages ,,,,0.015 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417356 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Perennial grasses ,,,,0.015 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417357 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Grass-clover mixtures ,,,,0.025 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417358 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Maize ,,,,0.006 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417359 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Wheat ,,,,0.006 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417360 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Winter wheat ,,,,0.006 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417361 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Spring wheat ,,,,0.006 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417362 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Rice ,,,,0.007 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417363 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Barley ,,,,0.007 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417364 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Oats ,,,,0.007 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417365 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Millet ,,,,0.007 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417366 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Sorghum ,,,,0.007 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417367 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Rye ,,,,0.005 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417368 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Soyabean ,,,,0.008 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417369 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Dry bean ,,,,0.01 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417370 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Potato ,,,,0.019 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417371 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Peanut (with pod) ,,,,0.016 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417372 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Alfalfa ,,,,0.027 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417373 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of above-ground residues (NAG) ,,Crop: Non-legume hay ,,,,0.015 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417374 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Grains ,,,,0.22 (+/- 16%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417375 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Beans and pulses ,,,,0.19 (+/- 45%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417376 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Tubers ,,,,0.20 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417377 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,"Crop: Root crops, other ",,,,0.20 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417378 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: N-fixing forages ,,,,0.40 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417379 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Non-N-fixing forages ,,,,0.54 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417380 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Perennial grasses ,,,,0.80 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417381 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Grass-clover mixtures ,,,,0.80 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417382 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Maize ,,,,0.22 (+/- 26%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417383 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Wheat ,,,,0.24 (+/- 32%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417384 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Winter wheat ,,,,0.23 (+/- 41%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417385 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Spring wheat ,,,,0.28 (+/- 26%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417386 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Rice ,,,,0.16 (+/- 35%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417387 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Barley ,,,,0.22 (+/- 33%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417388 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Oats ,,,,0.25 (+/- 120%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417389 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Soyabean ,,,,0.19 (+/- 45%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417390 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Potato ,,,,0.20 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417391 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Alfalfa ,,,,0.40 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417392 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Ratio of below-ground residues to above-ground biomass (RBG-BIO) ,,Crop: Non-legume hay ,,,,0.54 (+/- 50%) ,kg d.m./kg d.m. ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417393 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Grains ,,,,0.009 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417394 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Beans and pulses ,,,,0.008 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417395 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Tubers ,,,,0.014 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417396 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,"Crop: Root crops, other ",,,,0.014 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417397 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: N-fixing forages ,,,,0.022 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417398 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Non-N-fixing forages ,,,,0.012 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417399 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Perennial grasses ,,,,0.012 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417400 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Grass-clover mixtures ,,,,0.016 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417401 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Maize ,,,,0.007 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417402 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Wheat ,,,,0.009 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417403 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Winter wheat ,,,,0.009 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417404 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Spring wheat ,,,,0.009 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417405 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Barley ,,,,0.014 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417406 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Oats ,,,,0.008 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417407 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Sorghum ,,,,0.006 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417408 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Rye ,,,,0.011 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417409 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Soyabean ,,,,0.008 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417410 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Dry bean ,,,,0.01 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417411 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Potato ,,,,0.014 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417412 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Alfalfa ,,,,0.019 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417413 ,4D - Agricultural Soils,3.C.4 - Direct N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,N content of below-ground residues (NBG) ,,Crop: Non-legume hay ,,,,0.012 ,kg N/kg of dry biomass ,Equation 11.7 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Literature review by Stephen A. Williams, Natural Resource Ecology Laboratory, Colorado State University. (Email: stevewi@warnercnr.colostate.edu) for CASMGS (http://www.casmgs.colostate.edu/). A list of the original references is given in Annex 11A.1 of Volume 4, 2006 Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.2 - Default factors for estimation of N added to soils from crop residues, on pages 11.17 - 11.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417414 ,4D - Agricultural Soils,3.C.5 - Indirect N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Default emission factor for indirect N2O emissions from N volatilisation and re-deposition (EF4) ,,,,,,0.01 (0.002 - 0.05) ,,Equations 11.9 and 11.11 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 2, Category Code 3C5, Page A1.59 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.3 - Default emission, volatilisation and leaching factors for indirect soil N2O emissions, on page 11.24 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417415 ,4D - Agricultural Soils,3.C.5 - Indirect N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Default emission factor for indirect N2O emissions from leaching/runoff (EF5) ,,,,,,0.0075 (0.0005 - 0.025) ,Kg N2O-N/kg N leaching/runoff ,Equation 11.10 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C5, Page A1.60 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.3 - Default emission, volatilisation and leaching factors for indirect soil N2O emissions, on page 11.24 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417416 ,4D - Agricultural Soils,3.C.5 - Indirect N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,Default emission factor for indirect N2O emissions from volatilisation of synthetic fertiliser (FracGASF) ,,,,,,0.10 (0.03 - 0.3) ,,Equations 11.9 and 11.11 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 2, Category Code 3C5, Page A1.59 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.3 - Default emission, volatilisation and leaching factors for indirect soil N2O emissions, on page 11.24 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417417 ,4D - Agricultural Soils,3.C.5 - Indirect N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor for indirect N2O emissions from volatilisation of all organic N fertilisers applied , and dung and urine deposited by grazing animals (FracGASM) ",,,,,,0.20 (0.05 - 0.5) ,,Equations 11.9 and 11.11 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 1 of 2, Category Code 3C5, Page A1.59 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.3 - Default emission, volatilisation and leaching factors for indirect soil N2O emissions, on page 11.24 ",IPCC  +,,,,,,,,,,,,,,,,,,, +417418 ,4D - Agricultural Soils,3.C.5 - Indirect N2O Emissions from managed soils,NITROUS OXIDE,,,2006 IPCC default ,"Default emission factor for indirect N2O emissions from N losses by leaching/runoff for regions where S(rain in rainy season) - S(PE in same period) > soil water holding capacity, OR where irrigation (except drip irrigation) is employed (FracLEACH-(H)) ",,,,,,0.30 (0.1 - 0.8) ,kg N/[kg N additions or deposition by grazing animals] ,Equation 11.10 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"Sheet 2 of 2, Category Code 3C5, Page A1.60 of Volume 4 of the 2006 IPCC Guidelines ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 11.3 - Default emission, volatilisation and leaching factors for indirect soil N2O emissions, on page 11.24 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517419 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Default half-life for solidwood products ,,,,,,30 ,years ,Equation 12.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Based on values used in previous studies summarized in HWP Appendix Table 3a.1.3 of the IPCC report on GPG- LULUCF (IPCC, 2003). Table 3a.1.3 gives values for more product categories. ",,IPCC  +,,,,,,,,,,,,,,,,,,, +517420 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Default half-life for paper products ,,,,,,2 ,years ,Equation 12.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Based on values used in previous studies summarized in HWP Appendix Table 3a.1.3 of the IPCC report on GPG- LULUCF (IPCC, 2003). Table 3a.1.3 gives values for more product categories. ",,IPCC  +,,,,,,,,,,,,,,,,,,, +517421 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Default decay rate (k) for solidwood products ,,,,,,0.023 ,per year ,Equation 12.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Based on values used in previous studies summarized in HWP Appendix Table 3a.1.3 of the IPCC report on GPG- LULUCF (IPCC, 2003). Table 3a.1.3 gives values for more product categories. ",,IPCC  +,,,,,,,,,,,,,,,,,,, +517422 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Default decay rate (k) for paper products ,,,,,,0.347 ,per year ,Equation 12.1 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Based on values used in previous studies summarized in HWP Appendix Table 3a.1.3 of the IPCC report on GPG- LULUCF (IPCC, 2003). Table 3a.1.3 gives values for more product categories. ",,IPCC  +,,,,,,,,,,,,,,,,,,, +517423 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Estimated annual rates of increase (U) for industrial roundwood production (harvest) by world region for the period 1900 to 1961 ,,,Word ,,,0.0148 ,per year ,Equation 12.6 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"See Table 3a.1.2 in HWP Appendix of GPG-LULUCF (IPCC, 2003). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 12.3 - Estimated annual rates of increase for industrial roundwood production (harvest) by world region for the period 1900 to 1961, page 12.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517424 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Estimated annual rates of increase (U) for industrial roundwood production (harvest) by world region for the period 1900 to 1961 ,,,Europe ,,,0.0151 ,per year ,Equation 12.6 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"See Table 3a.1.2 in HWP Appendix of GPG-LULUCF (IPCC, 2003). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 12.3 - Estimated annual rates of increase for industrial roundwood production (harvest) by world region for the period 1900 to 1961, page 12.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517425 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Estimated annual rates of increase (U) for industrial roundwood production (harvest) by world region for the period 1900 to 1961 ,,,USSR ,,,0.0160 ,per year ,Equation 12.6 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"See Table 3a.1.2 in HWP Appendix of GPG-LULUCF (IPCC, 2003). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 12.3 - Estimated annual rates of increase for industrial roundwood production (harvest) by world region for the period 1900 to 1961, page 12.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517426 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Estimated annual rates of increase (U) for industrial roundwood production (harvest) by world region for the period 1900 to 1961 ,,,North America ,,,0.0143 ,per year ,Equation 12.6 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"See Table 3a.1.2 in HWP Appendix of GPG-LULUCF (IPCC, 2003). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 12.3 - Estimated annual rates of increase for industrial roundwood production (harvest) by world region for the period 1900 to 1961, page 12.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517427 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Estimated annual rates of increase (U) for industrial roundwood production (harvest) by world region for the period 1900 to 1961 ,,,Latin America ,,,0.0220 ,per year ,Equation 12.6 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"See Table 3a.1.2 in HWP Appendix of GPG-LULUCF (IPCC, 2003). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 12.3 - Estimated annual rates of increase for industrial roundwood production (harvest) by world region for the period 1900 to 1961, page 12.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517428 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Estimated annual rates of increase (U) for industrial roundwood production (harvest) by world region for the period 1900 to 1961 ,,,Africa ,,,0.0287 ,per year ,Equation 12.6 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"See Table 3a.1.2 in HWP Appendix of GPG-LULUCF (IPCC, 2003). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 12.3 - Estimated annual rates of increase for industrial roundwood production (harvest) by world region for the period 1900 to 1961, page 12.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517429 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Estimated annual rates of increase (U) for industrial roundwood production (harvest) by world region for the period 1900 to 1961 ,,,Asia ,,,0.0217 ,per year ,Equation 12.6 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"See Table 3a.1.2 in HWP Appendix of GPG-LULUCF (IPCC, 2003). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 12.3 - Estimated annual rates of increase for industrial roundwood production (harvest) by world region for the period 1900 to 1961, page 12.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517430 ,5E - Other (please specify),3.D.1 - Harvested Wood Products,CARBON DIOXIDE,,,2006 IPCC default ,Estimated annual rates of increase (U) for industrial roundwood production (harvest) by world region for the period 1900 to 1961 ,,,Oceania ,,,0.0231 ,per year ,Equation 12.6 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"See Table 3a.1.2 in HWP Appendix of GPG-LULUCF (IPCC, 2003). ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Table 12.3 - Estimated annual rates of increase for industrial roundwood production (harvest) by world region for the period 1900 to 1961, page 12.18 ",IPCC  +,,,,,,,,,,,,,,,,,,, +517431 ,5E - Other (please specify),3.B.4.b.ii - Land converted to flooded land,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Diffusive emissions (ice-free period) from flooded land (Ef(CO2)diff) ,,,Climate: Polar/Boreal wet ,,,11.8 ,kg CO2/ha/day ,Equation 2A.2 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 2, Table 2a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517432 ,5E - Other (please specify),3.B.4.b.ii - Land converted to flooded land,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Diffusive emissions (ice-free period) from flooded land (Ef(CO2)diff) ,,,"Climate: Cold temperate, moist ",,,15.2 ,kg CO2/ha/day ,Equation 2A.2 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 2, Table 2a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517433 ,5E - Other (please specify),3.B.4.b.ii - Land converted to flooded land,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Diffusive emissions (ice-free period) from flooded land (Ef(CO2)diff) ,,,"Climate: Warm temperate, moist ",,,8.1 ,kg CO2/ha/day ,Equation 2A.2 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 2, Table 2a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517434 ,5E - Other (please specify),3.B.4.b.ii - Land converted to flooded land,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Diffusive emissions (ice-free period) from flooded land (Ef(CO2)diff) ,,,"Climate: Warm temperate, dry ",,,5.2 ,kg CO2/ha/day ,Equation 2A.2 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 2, Table 2a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517435 ,5E - Other (please specify),3.B.4.b.ii - Land converted to flooded land,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Diffusive emissions (ice-free period) from flooded land (Ef(CO2)diff) ,,,"Climate: Tropical, wet ",,,44.9 ,kg CO2/ha/day ,Equation 2A.2 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 2, Table 2a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517436 ,5E - Other (please specify),3.B.4.b.ii - Land converted to flooded land,CARBON DIOXIDE,,,2006 IPCC default ,CO2 Diffusive emissions (ice-free period) from flooded land (Ef(CO2)diff) ,,,"Climate: Tropical, dry ",,,39.1 ,kg CO2/ha/day ,Equation 2A.2 in Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 2, Table 2a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517437 ,5E - Other (please specify),3.B.4.a.ii - Flooded land remaining flooded land,METHANE,,,2006 IPCC default ,CH4 Diffusive emissions (ice-free period) from flooded land (Ef(CH4)diff) ,,,"Climate: Polar/Boreal, wet ",,,0.086 ,kg CH4/ha/day ,"Equation 3A.1, Appendix 3,Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 3, Table 3a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517438 ,5E - Other (please specify),3.B.4.a.ii - Flooded land remaining flooded land,METHANE,,,2006 IPCC default ,CH4 Diffusive emissions (ice-free period) from flooded land (Ef(CH4)diff) ,,,"Climate: Cold temperate, moist ",,,0.061 ,kg CH4/ha/day ,"Equation 3A.1, Appendix 3,Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 3, Table 3a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517439 ,5E - Other (please specify),3.B.4.a.ii - Flooded land remaining flooded land,METHANE,,,2006 IPCC default ,CH4 Diffusive emissions (ice-free period) from flooded land (Ef(CH4)diff) ,,,"Climate: Warm temperate, moist ",,,0.150 ,kg CH4/ha/day ,"Equation 3A.1, Appendix 3,Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 3, Table 3a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517440 ,5E - Other (please specify),3.B.4.a.ii - Flooded land remaining flooded land,METHANE,,,2006 IPCC default ,CH4 Diffusive emissions (ice-free period) from flooded land (Ef(CH4)diff) ,,,"Climate: Warm temperate, dry ",,,0.044 ,kg CH4/ha/day ,"Equation 3A.1, Appendix 3,Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 3, Table 3a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517441 ,5E - Other (please specify),3.B.4.a.ii - Flooded land remaining flooded land,METHANE,,,2006 IPCC default ,CH4 Diffusive emissions (ice-free period) from flooded land (Ef(CH4)diff) ,,,"Climate: Tropical, wet ",,,0.630 ,kg CH4/ha/day ,"Equation 3A.1, Appendix 3,Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 3, Table 3a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +517442 ,5E - Other (please specify),3.B.4.a.ii - Flooded land remaining flooded land,METHANE,,,2006 IPCC default ,CH4 Diffusive emissions (ice-free period) from flooded land (Ef(CH4)diff) ,,,"Climate: Tropical, dry ",,,0.295 ,kg CH4/ha/day ,"Equation 3A.1, Appendix 3,Volume 4 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 4, Appendix 3, Table 3a.2 ",See data source  +,,,,,,,,,,,,,,,,,,, +117443 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,42.3 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117444 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,27.5 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117445 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,44.2 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117446 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,44.3 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117447 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,44.3 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117448 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,44.3 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117449 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,44.1 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117450 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,43.8 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117451 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,38.1 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117452 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,43.0 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117453 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,43.0 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117454 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,40.4 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117455 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,47.3 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117456 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Ethane ,Ethane ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,46.4 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117457 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Naphtha ,Naphtha ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,44.5 ,TJ/Gg ,,"1A, Sheet 1 of 4 (page A1.6) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117458 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Bitumen ,Bitumen ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,40.2 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117459 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Lubricants ,Lubricants ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,40.2 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117460 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,32.5 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117461 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,43.0 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117462 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,49.5 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117463 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,40.2 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117464 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,40.2 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117465 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,40.2 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117466 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Anthracite ,Anthracite ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,26.7 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117467 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,28.2 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117468 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,25.8 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117469 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,18.9 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117470 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,11.9 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117471 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,8.9 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117472 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,20.7 ,TJ/Gg ,,"1A, Sheet 2 of 4 (page A1.7) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117473 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,20.7 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117474 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,28.2 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117475 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,28.2 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117476 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,28.0 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117477 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,38.7 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117478 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,38.7 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117479 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,2.47 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117480 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,7.06 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117481 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,48.0 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117482 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,10 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117483 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,40.2 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117484 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Peat ,Peat ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,9.76 ,TJ/Gg ,,"1A, Sheet 3 of 4 (page A1.8) and Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117485 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,15.6 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117486 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,11.8 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117487 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,11.6 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117488 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Charcoal ,Charcoal ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,29.5 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117489 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,27.0 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117490 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,27.0 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117491 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,27.4 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117492 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,50.4 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117493 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,50.4 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117494 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,50.4 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117495 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,Net Calorific Value (NCV) ,,,,,,11.6 ,TJ/Gg ,,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines, based on a statistical analysis of annual greenhouse gas inventory submissions of Annex I Parties to UNFCCC, the IPCC Emission Factor Database (EFDB), and the IEA Database. For details, see Section 1.4.1.2 and the footnotes of Table 1.2 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117496 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,Carbon Content ,,,,,,20 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117497 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,Carbon Content ,,,,,,21 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117498 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,Carbon Content ,,,,,,17.5 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117499 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Carbon Content ,,,,,,18.9 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117500 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,Carbon Content ,,,,,,19.1 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117501 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,Carbon Content ,,,,,,19.1 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117502 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,Carbon Content ,,,,,,19.5 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117503 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,Carbon Content ,,,,,,19.6 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117504 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,Carbon Content ,,,,,,20.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117505 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,Carbon Content ,,,,,,20.2 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117506 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Carbon Content ,,,,,,20.2 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117507 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Carbon Content ,,,,,,21.1 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117508 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Carbon Content ,,,,,,17.2 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117509 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Ethane ,Ethane ,2006 IPCC default ,Carbon Content ,,,,,,16.8 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117510 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Naphtha ,Naphtha ,2006 IPCC default ,Carbon Content ,,,,,,20.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117511 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Bitumen ,Bitumen ,2006 IPCC default ,Carbon Content ,,,,,,22.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117512 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Lubricants ,Lubricants ,2006 IPCC default ,Carbon Content ,,,,,,20.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117513 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,Carbon Content ,,,,,,26.6 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117514 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,Carbon Content ,,,,,,20.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117515 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,Carbon Content ,,,,,,15.7 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117516 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,Carbon Content ,,,,,,20.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117517 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,Carbon Content ,,,,,,20.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117518 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,Carbon Content ,,,,,,20.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117519 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Anthracite ,Anthracite ,2006 IPCC default ,Carbon Content ,,,,,,26.8 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117520 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,Carbon Content ,,,,,,25.8 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117521 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Carbon Content ,,,,,,25.8 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117522 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Carbon Content ,,,,,,26.2 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117523 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,Carbon Content ,,,,,,27.6 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117524 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,Carbon Content ,,,,,,29.1 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117525 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,Carbon Content ,,,,,,26.6 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117526 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,Carbon Content ,,,,,,26.6 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117527 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,Carbon Content ,,,,,,29.2 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117528 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,Carbon Content ,,,,,,29.2 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117529 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,Carbon Content ,,,,,,22.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117530 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,Carbon Content ,,,,,,12.1 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117531 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,Carbon Content ,,,,,,12.1 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117532 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,Carbon Content ,,,,,,70.8 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117533 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,Carbon Content ,,,,,,49.6 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117534 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Carbon Content ,,,,,,15.3 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117535 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,Carbon Content ,,,,,,25.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117536 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,Carbon Content ,,,,,,39.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117537 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,Carbon Content ,,,,,,20.0 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117538 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Peat ,Peat ,2006 IPCC default ,Carbon Content ,,,,,,28.9 ,kg/GJ ,,"1A, Sheet 2 of 3 for Reference Approach (page 1.16), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117539 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Carbon Content ,,,,,,30.5 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117540 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,Carbon Content ,,,,,,26.0 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117541 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,Carbon Content ,,,,,,27.3 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117542 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Charcoal ,Charcoal ,2006 IPCC default ,Carbon Content ,,,,,,30.5 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117543 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,Carbon Content ,,,,,,19.3 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117544 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,Carbon Content ,,,,,,19.3 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117545 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,Carbon Content ,,,,,,21.7 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117546 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,Carbon Content ,,,,,,14.9 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117547 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,Carbon Content ,,,,,,14.9 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117548 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,Carbon Content ,,,,,,14.9 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117549 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,Carbon Content ,,,,,,27.3 ,kg/GJ ,,,"Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see the footnotes of Table 1.3 in Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117550 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117551 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117552 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117553 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117554 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117555 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117556 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117557 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117558 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117559 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117560 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117561 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117562 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117563 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Ethane ,Ethane ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117564 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Naphtha ,Naphtha ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117565 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Bitumen ,Bitumen ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117566 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Lubricants ,Lubricants ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117567 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117568 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117569 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117570 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117571 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117572 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117573 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Anthracite ,Anthracite ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117574 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117575 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117576 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117577 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117578 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117579 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117580 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117581 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117582 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117583 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117584 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117585 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117586 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117587 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117588 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117589 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117590 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117591 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117592 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Peat ,Peat ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117593 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117594 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117595 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117596 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Charcoal ,Charcoal ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117597 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117598 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117599 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117600 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117601 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117602 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117603 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,Carbon Oxidation Factor ,,,,,,1 ,fraction ,,"1A, Sheet 3 of 3 for Reference Approach (page 1.17), in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 1.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117604 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117605 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,77000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117606 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,64200 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117607 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,69300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117608 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117609 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117610 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,71500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117611 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,71900 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117612 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117613 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,74100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117614 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,74100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117615 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,77400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117616 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,63100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117617 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Ethane ,Ethane ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,61600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117618 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Naphtha ,Naphtha ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117619 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Bitumen ,Bitumen ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,80700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117620 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Lubricants ,Lubricants ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117621 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117622 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117623 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,57600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117624 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117625 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117626 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117627 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Anthracite ,Anthracite ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,98300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117628 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,94600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117629 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,94600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117630 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,96100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117631 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,101000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117632 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117633 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117634 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117635 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117636 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117637 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,80700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117638 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,44400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117639 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,44400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117640 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,260000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117641 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,182000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117642 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,56100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117643 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,91700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117644 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,143000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117645 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117646 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Peat ,Peat ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,106000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117647 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,112000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117648 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,95300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117649 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,100000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117650 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Charcoal ,Charcoal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,112000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117651 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70800 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117652 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70800 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117653 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,79600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117654 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117655 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117656 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117657 ,1A1 - Energy Industries,1.A.1 - Energy Industries,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,100000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117658 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Crude Oil ,Crude Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117659 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Orimulsion ,Orimulsion ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117660 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117661 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117662 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117663 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117664 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117665 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117666 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Shale Oil ,Shale Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117667 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117668 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117669 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117670 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117671 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Ethane ,Ethane ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117672 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Naphtha ,Naphtha ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117673 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Bitumen ,Bitumen ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117674 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Lubricants ,Lubricants ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117675 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117676 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117677 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117678 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Paraffin Waxes ,Waxes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117679 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117680 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117681 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Anthracite ,Anthracite ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117682 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Coking Coal ,Coking Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117683 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117684 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117685 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117686 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117687 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117688 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117689 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117690 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117691 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117692 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117693 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117694 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117695 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117696 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117697 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117698 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117699 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117700 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Peat ,Peat ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117701 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117702 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117703 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117704 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Charcoal ,Charcoal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,200 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117705 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,(Unspecified) ,Biogasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117706 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,(Unspecified) ,Biodiesels ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117707 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117708 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117709 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117710 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Other Biogas ,Other Biogas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117711 ,1A1 - Energy Industries,1.A.1 - Energy Industries,METHANE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117712 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117713 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117714 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117715 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117716 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117717 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117718 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117719 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117720 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117721 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117722 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117723 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117724 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117725 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Ethane ,Ethane ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117726 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Naphtha ,Naphtha ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117727 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Bitumen ,Bitumen ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117728 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Lubricants ,Lubricants ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117729 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117730 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117731 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117732 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117733 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117734 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117735 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Anthracite ,Anthracite ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117736 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117737 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117738 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117739 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117740 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117741 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117742 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117743 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117744 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117745 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117746 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117747 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117748 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117749 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117750 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117751 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117752 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117753 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117754 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Peat ,Peat ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117755 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117756 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,2 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117757 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117758 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Charcoal ,Charcoal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117759 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117760 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117761 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117762 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117763 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117764 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117765 ,1A1 - Energy Industries,1.A.1 - Energy Industries,NITROUS OXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117766 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117767 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,77000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117768 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,64200 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117769 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,69300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117770 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117771 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117772 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,71500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117773 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,71900 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117774 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117775 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,74100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117776 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,74100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117777 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,77400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117778 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,63100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117779 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Ethane ,Ethane ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,61600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117780 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Naphtha ,Naphtha ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117781 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Bitumen ,Bitumen ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,80700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117782 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Lubricants ,Lubricants ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117783 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117784 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117785 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,57600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117786 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117787 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117788 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117789 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Anthracite ,Anthracite ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,98300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117790 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,94600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117791 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,94600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117792 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,96100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117793 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,101000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117794 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117795 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117796 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117797 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117798 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117799 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,80700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117800 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,44400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117801 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,44400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117802 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,260000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117803 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,182000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117804 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,56100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117805 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,91700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117806 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,143000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117807 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117808 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Peat ,Peat ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,106000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117809 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,112000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117810 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,95300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117811 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,100000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117812 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Charcoal ,Charcoal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,112000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117813 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70800 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117814 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70800 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117815 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,79600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117816 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117817 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117818 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117819 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,100000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117820 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Crude Oil ,Crude Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117821 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Orimulsion ,Orimulsion ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117822 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117823 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117824 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117825 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117826 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117827 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117828 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Shale Oil ,Shale Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117829 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117830 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117831 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117832 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117833 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Ethane ,Ethane ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117834 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Naphtha ,Naphtha ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117835 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Bitumen ,Bitumen ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117836 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Lubricants ,Lubricants ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117837 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117838 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117839 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117840 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Paraffin Waxes ,Waxes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117841 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117842 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117843 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Anthracite ,Anthracite ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117844 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Coking Coal ,Coking Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117845 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117846 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117847 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117848 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117849 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117850 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117851 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117852 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117853 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117854 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117855 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117856 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117857 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117858 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117859 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117860 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117861 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117862 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Peat ,Peat ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,2 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117863 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117864 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117865 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117866 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Charcoal ,Charcoal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,200 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117867 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,(Unspecified) ,Biogasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117868 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,(Unspecified) ,Biodiesels ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117869 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117870 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117871 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117872 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Biogas ,Other Biogas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117873 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,30 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117874 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117875 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117876 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117877 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117878 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117879 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117880 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117881 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117882 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117883 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117884 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117885 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117886 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117887 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Ethane ,Ethane ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117888 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Naphtha ,Naphtha ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117889 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Bitumen ,Bitumen ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117890 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Lubricants ,Lubricants ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117891 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117892 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117893 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117894 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117895 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117896 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117897 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Anthracite ,Anthracite ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117898 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117899 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117900 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117901 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117902 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117903 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117904 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117905 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117906 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117907 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117908 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117909 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117910 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117911 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117912 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117913 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117914 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117915 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117916 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Peat ,Peat ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117917 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117918 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,2 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117919 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117920 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Charcoal ,Charcoal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117921 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117922 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117923 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117924 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117925 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117926 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117927 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117928 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117929 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,77000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117930 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,64200 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117931 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,69300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117932 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117933 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117934 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,71500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117935 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,71900 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117936 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117937 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,74100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117938 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,74100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117939 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,77400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117940 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,63100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117941 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Ethane ,Ethane ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,61600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117942 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Naphtha ,Naphtha ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117943 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Bitumen ,Bitumen ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,80700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117944 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Lubricants ,Lubricants ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117945 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117946 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117947 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,57600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117948 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117949 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117950 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117951 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Anthracite ,Anthracite ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,98300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117952 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,94600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117953 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,94600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117954 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,96100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117955 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,101000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117956 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117957 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117958 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117959 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117960 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117961 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,80700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117962 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,44400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117963 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,44400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117964 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,260000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117965 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,182000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117966 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,56100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117967 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,91700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117968 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,143000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117969 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117970 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Peat ,Peat ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,106000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117971 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,112000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117972 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,95300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117973 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,100000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117974 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Charcoal ,Charcoal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,112000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117975 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70800 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117976 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70800 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117977 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,79600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117978 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117979 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117980 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117981 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,100000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117982 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Crude Oil ,Crude Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117983 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Orimulsion ,Orimulsion ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117984 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117985 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117986 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117987 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117988 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117989 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117990 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Shale Oil ,Shale Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117991 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117992 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117993 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117994 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117995 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Ethane ,Ethane ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117996 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Naphtha ,Naphtha ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117997 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Bitumen ,Bitumen ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117998 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Lubricants ,Lubricants ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +117999 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118000 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118001 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118002 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Paraffin Waxes ,Waxes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118003 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118004 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118005 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Anthracite ,Anthracite ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118006 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Coking Coal ,Coking Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118007 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118008 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118009 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118010 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118011 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118012 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118013 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118014 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118015 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118016 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118017 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118018 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118019 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118020 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118021 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118022 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118023 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118024 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Peat ,Peat ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118025 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118026 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118027 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118028 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Charcoal ,Charcoal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,200 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118029 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,(Unspecified) ,Biogasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118030 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,(Unspecified) ,Biodiesels ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118031 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118032 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118033 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118034 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Biogas ,Other Biogas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118035 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118036 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118037 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118038 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118039 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118040 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118041 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118042 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118043 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118044 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118045 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118046 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118047 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118048 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118049 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Ethane ,Ethane ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118050 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Naphtha ,Naphtha ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118051 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Bitumen ,Bitumen ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118052 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Lubricants ,Lubricants ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118053 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118054 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118055 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118056 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118057 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118058 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118059 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Anthracite ,Anthracite ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118060 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118061 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118062 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118063 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118064 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118065 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118066 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118067 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118068 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118069 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118070 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118071 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118072 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118073 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118074 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118075 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118076 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118077 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118078 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Peat ,Peat ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118079 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118080 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,2 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118081 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118082 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Charcoal ,Charcoal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118083 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118084 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118085 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118086 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118087 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118088 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118089 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118090 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118091 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,77000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118092 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,64200 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118093 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,69300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118094 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118095 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118096 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,71500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118097 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,71900 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118098 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118099 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,74100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118100 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,74100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118101 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,77400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118102 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,63100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118103 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Ethane ,Ethane ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,61600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118104 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Naphtha ,Naphtha ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118105 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Bitumen ,Bitumen ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,80700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118106 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Lubricants ,Lubricants ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118107 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118108 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118109 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,57600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118110 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118111 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118112 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118113 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Anthracite ,Anthracite ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,98300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118114 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,94600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118115 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,94600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118116 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,96100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118117 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,101000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118118 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118119 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118120 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,97500 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118121 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118122 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,107000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118123 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,80700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118124 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,44400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118125 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,44400 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118126 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,260000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118127 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,182000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118128 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,56100 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118129 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,91700 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118130 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,143000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118131 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,73300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118132 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Peat ,Peat ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,106000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118133 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,112000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118134 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,95300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118135 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,100000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118136 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Charcoal ,Charcoal ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,112000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118137 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70800 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118138 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,70800 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118139 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,79600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118140 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118141 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118142 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,54600 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118143 ,1A4b - Residential,1.A.4.b - Residential,CARBON DIOXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,CO2 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,100000 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Tables 1.4 and 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118144 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Crude Oil ,Crude Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118145 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Orimulsion ,Orimulsion ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118146 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118147 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118148 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118149 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118150 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118151 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118152 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Shale Oil ,Shale Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118153 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118154 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118155 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118156 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118157 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Ethane ,Ethane ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118158 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Naphtha ,Naphtha ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118159 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Bitumen ,Bitumen ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118160 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Lubricants ,Lubricants ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118161 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118162 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118163 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118164 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Paraffin Waxes ,Waxes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118165 ,1A4b - Residential,1.A.4.b - Residential,METHANE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118166 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118167 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Anthracite ,Anthracite ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118168 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Coking Coal ,Coking Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118169 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118170 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118171 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118172 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118173 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118174 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118175 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118176 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118177 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118178 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118179 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118180 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118181 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118182 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118183 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118184 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118185 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118186 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Peat ,Peat ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118187 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118188 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,3 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118189 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118190 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Charcoal ,Charcoal ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,200 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118191 ,1A4b - Residential,1.A.4.b - Residential,METHANE,(Unspecified) ,Biogasoline ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118192 ,1A4b - Residential,1.A.4.b - Residential,METHANE,(Unspecified) ,Biodiesels ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118193 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,10 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118194 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118195 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118196 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Biogas ,Other Biogas ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118197 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,CH4 Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,300 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118198 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Crude Oil ,Crude Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118199 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Orimulsion ,Orimulsion ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118200 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Natural Gas Liquids ,Natural Gas Liquids (NGLs) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118201 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118202 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118203 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118204 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118205 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118206 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118207 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118208 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118209 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118210 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118211 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Ethane ,Ethane ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118212 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Naphtha ,Naphtha ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118213 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Bitumen ,Bitumen ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118214 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Lubricants ,Lubricants ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118215 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Petroleum Coke ,Petroleum Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118216 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Refinery Feedstock ,Refinery Feedstocks ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118217 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Refinery Gas ,Refinery Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118218 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Paraffin Waxes ,Waxes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118219 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,White Spirit/Industrial spirits (SBP) ,White Spirit & SBP ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118220 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118221 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Anthracite ,Anthracite ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118222 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Coking Coal ,Coking Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118223 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118224 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118225 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118226 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Oil Shale ,Oil Shale and Tar Sands ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118227 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Brown Coal Briquettes ,Brown Coal Briquettes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118228 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Patent Fuel ,Patent Fuel ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118229 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Coke Oven Coke ,Coke Oven Coke and Lignite Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118230 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other cokes from solid fuels ,Gas Coke ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118231 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Coal-derived tars and oils ,Coal Tar ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.5 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118232 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Gas Works Gas ,Gas Works Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118233 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Coke Oven Gas ,Coke Oven Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118234 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Blast Furnace Gas ,Blast Furnace Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118235 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other gases and mixtures from coal-derived carbon ,Oxygen Steel Furnace Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118236 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118237 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (non-biomass fraction) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118238 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Industrial Waste ,Industrial Wastes ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118239 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other Wastes (specify nature) ,Waste Oils ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118240 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Peat ,Peat ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1.4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118241 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118242 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Sulphur Lies (Black Liquor) ,Sulphite Lyes (Black Liquor) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,2 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118243 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other solid biomass ,Other Primary Solid Biomass ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118244 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Charcoal ,Charcoal ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118245 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,(Unspecified) ,Biogasoline ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118246 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,(Unspecified) ,Biodiesels ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118247 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other liquid biomass ,Other Liquid Biofuels ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.6 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118248 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Landfill Gas ,Landfill Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118249 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Sludge Gas (Sewage Gas) ,Sludge Gas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118250 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other Biogas ,Other Biogas ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,0.1 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118251 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Municipal Solid Waste (Garbage) ,Municipal Wastes (biomass fraction) ,2006 IPCC default ,N2O Emission Factor for Stationary Combustion (kg/TJ on a net calorific basis) ,,,,,,4 ,kg/TJ ,Equation 2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 4 of 4 (page A1.9) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 2, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 2.3.2.1, Chapter 2, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.5 ",IPCC  +,1A4c1 - Stationary,1.A.4.c.i - Stationary,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +118415 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Residual Fuel Oil Boilers ,Configuration: Normal Firing ,,,,0.8 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118416 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Shale Oil ,Shale Oil ,2006 IPCC default ,Utility Source Emission Factor ,Shale Oil Boilers ,Configuration: Normal Firing ,,,,0.8 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118417 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Residual Fuel Oil Boilers ,Configuration: Tangential Firing ,,,,0.8 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118418 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Shale Oil ,Shale Oil ,2006 IPCC default ,Utility Source Emission Factor ,Shale Oil Boilers ,Configuration: Tangential Firing ,,,,0.8 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118419 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,Utility Source Emission Factor ,Gas/Diesel Oil Boilers ,Configuration: Normal Firing ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118420 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Gas/Diesel Oil Boilers ,Configuration: Normal Firing ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118421 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,Utility Source Emission Factor ,Gas/Diesel Oil Boilers ,Configuration: Tangential Firing ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118422 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Gas/Diesel Oil Boilers ,Configuration: Tangential Firing ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118423 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Large Diesel Oil Engines > 600hp (447kW) ,Large Diesel Oil Engines > 600hp (447kW) ,,,,4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118424 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Pulverised Bituminous Combustion Boilers ,"Configuration: Dry Bottom, wall fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118425 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Pulverised Bituminous Combustion Boilers ,"Configuration: Dry Bottom, tangentially fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118426 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Pulverised Bituminous Combustion Boilers ,Configuration: Wet Bottom ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118427 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Bituminous Spreader Stoker Boilers ,With and without re-injection ,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118428 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118429 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118430 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Bituminous Cyclone Furnace ,,,,,0.2 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118431 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Utility Source Emission Factor ,Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118432 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Utility Source Emission Factor ,Gas-fired Gas Turbines > 3MW ,,,,,4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118433 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Utility Source Emission Factor ,Large Dual-Fuel Engines ,,,,,258 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118434 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Utility Source Emission Factor ,Combined Cycle ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118435 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Peat ,Peat ,2006 IPCC default ,Utility Source Emission Factor ,Peat Fluidised Bed Combustor - Circulating Bed ,,,,,3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tsupari, E., Tormonen, K., Monni, S., Vahlman, T., Kolsi, A. and Linna, V. (2006). Emission factors for nitrous oxide (N2O) and methane (CH4) from Finnish power and heating plants and small-scale combustion. VTT, Espoo, Finland. VTT Working Papers 43. (In Finnish with Engllish summary). See website: http://www.vtt.fi/inf/pdf/workingpapers/2006/W43.pdf ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118436 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Peat ,Peat ,2006 IPCC default ,Utility Source Emission Factor ,Peat Fluidised Bed Combustor - Bubbling Bed ,,,,,3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tsupari, E., Tormonen, K., Monni, S., Vahlman, T., Kolsi, A. and Linna, V. (2006). Emission factors for nitrous oxide (N2O) and methane (CH4) from Finnish power and heating plants and small-scale combustion. VTT, Espoo, Finland. VTT Working Papers 43. (In Finnish with Engllish summary). See website: http://www.vtt.fi/inf/pdf/workingpapers/2006/W43.pdf ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118437 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Utility Source Emission Factor ,Wood/Wood Waste Boilers ,,,,,11 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118438 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Utility Source Emission Factor ,Wood Recovery Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118439 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Residual Fuel Oil Boilers ,Configuration: Normal Firing ,,,,0.3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118440 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,Utility Source Emission Factor ,Shale Oil Boilers ,Configuration: Normal Firing ,,,,0.3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118441 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Residual Fuel Oil Boilers ,Configuration: Tangential Firing ,,,,0.3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118442 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Shale Oil ,Shale Oil ,2006 IPCC default ,Utility Source Emission Factor ,Shale Oil Boilers ,Configuration: Tangential Firing ,,,,0.3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118443 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,Utility Source Emission Factor ,Gas/Diesel Oil Boilers ,Configuration: Normal Firing ,,,,0.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118444 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Gas/Diesel Oil Boilers ,Configuration: Normal Firing ,,,,0.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118445 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,Utility Source Emission Factor ,Gas/Diesel Oil Boilers ,Configuration: Tangential Firing ,,,,0.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118446 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Utility Source Emission Factor ,Gas/Diesel Oil Boilers ,Configuration: Tangential Firing ,,,,0.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118447 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Pulverised Bituminous Combustion Boilers ,"Configuration: Dry Bottom, wall fired ",,,,0.5 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118448 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Pulverised Bituminous Combustion Boilers ,"Configuration: Dry Bottom, tangentially fired ",,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118449 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Pulverised Bituminous Combustion Boilers ,Configuration: Wet Bottom ,,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118450 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Bituminous Spreader Stoker Boilers ,With and without re-injection ,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118451 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118452 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118453 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Utility Source Emission Factor ,Bituminous Cyclone Furnace ,,,,,1.6 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118454 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Lignite/Brown Coal ,Lignite ,2006 IPCC default ,Utility Source Emission Factor ,Lignite Atmospheric Fluidised Bed ,,,,,71 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118455 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Utility Source Emission Factor ,Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118456 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Utility Source Emission Factor ,Gas-fired Gas Turbines > 3MW ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118457 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Utility Source Emission Factor ,Combined Cycle ,,,,,3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118458 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Peat ,Peat ,2006 IPCC default ,Utility Source Emission Factor ,Peat Fluidised Bed Combustor - Circulating Bed ,,,,,7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tsupari, E., Tormonen, K., Monni, S., Vahlman, T., Kolsi, A. and Linna, V. (2006). Emission factors for nitrous oxide (N2O) and methane (CH4) from Finnish power and heating plants and small-scale combustion. VTT, Espoo, Finland. VTT Working Papers 43. (In Finnish with Engllish summary). See website: http://www.vtt.fi/inf/pdf/workingpapers/2006/W43.pdf ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118459 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Peat ,Peat ,2006 IPCC default ,Utility Source Emission Factor ,Peat Fluidised Bed Combustor - Bubbling Bed ,,,,,3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Tsupari, E., Tormonen, K., Monni, S., Vahlman, T., Kolsi, A. and Linna, V. (2006). Emission factors for nitrous oxide (N2O) and methane (CH4) from Finnish power and heating plants and small-scale combustion. VTT, Espoo, Finland. VTT Working Papers 43. (In Finnish with Engllish summary). See website: http://www.vtt.fi/inf/pdf/workingpapers/2006/W43.pdf ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118460 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Utility Source Emission Factor ,Wood/Wood Waste Boilers ,,,,,7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118461 ,1A - Fuel Combustion Activities,1.A - Fuel Combustion Activities,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Utility Source Emission Factor ,Wood Recovery Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118462 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Industrial Source Emission Factor ,Residual Fuel Oil Boilers ,,,,,3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118463 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,Industrial Source Emission Factor ,Gas/Diesel Oil Boilers ,,,,,0.2 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118464 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Industrial Source Emission Factor ,Gas/Diesel Oil Boilers ,,,,,0.2 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118465 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Industrial Source Emission Factor ,Large Stationary Diesel Oil Engines > 600hp (447kW) ,,,,,4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118466 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Industrial Source Emission Factor ,Liquefied Petroleum Gases Boilers ,,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118467 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Overfeed Stoker Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118468 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Overfeed Stoker Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118469 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Underfeed Stoker Boilers ,,,,,14 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118470 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Underfeed Stoker Boilers ,,,,,14 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118471 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, wall fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118472 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, wall fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118473 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, tangentially fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118474 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, tangentially fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118475 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,Configuration: Wet Bottom ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118476 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,Configuration: Wet Bottom ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118477 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous Spreader Stokers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118478 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118479 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118480 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118481 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118482 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Industrial Source Emission Factor ,Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118483 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Industrial Source Emission Factor ,Gas-fired Gas Turbines > 3MW ,,,,,4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118484 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Industrial Source Emission Factor ,Natural Gas-fired Reciprocating Engines ,Configuration: 2-Stroke Lean Burn ,,,,693 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118485 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Industrial Source Emission Factor ,Natural Gas-fired Reciprocating Engines ,Configuration: 4-Stroke Lean Burn ,,,,597 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118486 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Industrial Source Emission Factor ,Natural Gas-fired Reciprocating Engines ,Configuration: 4-Stroke Rich Burn ,,,,110 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118487 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Industrial Source Emission Factor ,Wood/Wood Waste Boilers ,,,,,11 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118488 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Industrial Source Emission Factor ,Residual Fuel Oil Boilers ,,,,,0.3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118489 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,Industrial Source Emission Factor ,Gas/Diesel Oil Boilers ,,,,,0.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118490 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Industrial Source Emission Factor ,Gas/Diesel Oil Boilers ,,,,,0.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118491 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Industrial Source Emission Factor ,Liquefied Petroleum Gases Boilers ,,,,,4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118492 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Overfeed Stoker Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118493 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Overfeed Stoker Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118494 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Underfeed Stoker Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118495 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Underfeed Stoker Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118496 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, wall fired ",,,,0.5 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118497 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, wall fired ",,,,0.5 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118498 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, tangentially fired ",,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118499 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, tangentially fired ",,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118500 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,Configuration: Wet Bottom ,,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118501 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,Configuration: Wet Bottom ,,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118502 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous Spreader Stokers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118503 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118504 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118505 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118506 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Industrial Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118507 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Industrial Source Emission Factor ,Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118508 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Industrial Source Emission Factor ,Gas-fired Gas Turbines > 3MW ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118509 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Industrial Source Emission Factor ,Wood/Wood Waste Boilers ,,,,,7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.7 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118510 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,"Kilns, Ovens, and Dryers Source Emisson Factor ","Industry: Cement, Lime; Source: Kilns - Natural Gas ",,,,,1.1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Radian Corporation (1990) ""Emissions and cost estimates for globally significant anthropogenic combustion sources of Nox, N2O, CH4, CO and CO2"" Prepared for the Office of Research and Development, U.S. EPA, Washington D.C., USA ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118511 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,"Kilns, Ovens, and Dryers Source Emisson Factor ","Industry: Cement, Lime; Source: Kilns - Oil ",,,,,1.0 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Radian Corporation (1990) ""Emissions and cost estimates for globally significant anthropogenic combustion sources of Nox, N2O, CH4, CO and CO2"" Prepared for the Office of Research and Development, U.S. EPA, Washington D.C., USA ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118512 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,"Kilns, Ovens, and Dryers Source Emisson Factor ","Industry: Cement, Lime; Source: Kilns - Coal ",,,,,1.0 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Radian Corporation (1990) ""Emissions and cost estimates for globally significant anthropogenic combustion sources of Nox, N2O, CH4, CO and CO2"" Prepared for the Office of Research and Development, U.S. EPA, Washington D.C., USA ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118513 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Coking Coal ,Coking Coal ,2006 IPCC default ,"Kilns, Ovens, and Dryers Source Emisson Factor ","Industry: Coking, Steel; Source: Kilns - Coke Oven ",,,,,1.0 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Radian Corporation (1990) ""Emissions and cost estimates for globally significant anthropogenic combustion sources of Nox, N2O, CH4, CO and CO2"" Prepared for the Office of Research and Development, U.S. EPA, Washington D.C., USA ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118514 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,"Kilns, Ovens, and Dryers Source Emisson Factor ","Industry: Chemical Processes, Wood, Asphalt, Copper, Phosphate; Source: Dryer - Natural Gas ",,,,,1.1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Radian Corporation (1990) ""Emissions and cost estimates for globally significant anthropogenic combustion sources of Nox, N2O, CH4, CO and CO2"" Prepared for the Office of Research and Development, U.S. EPA, Washington D.C., USA ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118515 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,"Kilns, Ovens, and Dryers Source Emisson Factor ","Industry: Chemical Processes, Wood, Asphalt, Copper, Phosphate; Source: Dryer - Oil ",,,,,1.0 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Radian Corporation (1990) ""Emissions and cost estimates for globally significant anthropogenic combustion sources of Nox, N2O, CH4, CO and CO2"" Prepared for the Office of Research and Development, U.S. EPA, Washington D.C., USA ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118516 ,1A2 - Manufacturing Industries and Construction (ISIC),1.A.2 - Manufacturing Industries and Construction,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,"Kilns, Ovens, and Dryers Source Emisson Factor ","Industry: Chemical Processes, Wood, Asphalt, Copper, Phosphate; Source: Dryer - Coal ",,,,,1.0 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Radian Corporation (1990) ""Emissions and cost estimates for globally significant anthropogenic combustion sources of Nox, N2O, CH4, CO and CO2"" Prepared for the Office of Research and Development, U.S. EPA, Washington D.C., USA ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.8 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118517 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Residential Source Emission Factor ,Residual Fuel Oil Combustors ,,,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118518 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,Residential Source Emission Factor ,Gas/Diesel Oil Combustors ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118519 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Residential Source Emission Factor ,Gas/Diesel Oil Combustors ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118520 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,Residential Source Emission Factor ,"Furnaces (In the 2006 IPCC Guidelines, Volume 2, Table 2.9, fuel type is not specified.) ",,,,,5.8 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118521 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Residential Source Emission Factor ,Liquefied Petroleum Gases Furnaces ,,,,,1.1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118522 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,Residential Source Emission Factor ,Other Kerosene Stoves: Wick ,,,,,2.2 - 23 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Smith K.R., Rasmussen, R.A., Manegdeg, F. and Apte, M. (1992). ""Greenhouse gases from small-scale combustion in developing countries: A Pilot Study in Manila."" EPA/600/R-92-005, U.S. Environmental Protection Agency, Research Triangle Park.; Smith K.R., M.A.K. Khalil, R.A. Rasmussen, M. Apte and F. Manegdeg (1993). ""Greenhouse gases from biomass fossil Fuels stoves in developing countries: a Manila Pilot Study."" Chemosphere, 26(1-4): 479-505.; Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118523 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Residential Source Emission Factor ,Liquefied Petroleum Gases Stoves: Standard ,,,,,0.9 - 23 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Smith K.R., Rasmussen, R.A., Manegdeg, F. and Apte, M. (1992). ""Greenhouse gases from small-scale combustion in developing countries: A Pilot Study in Manila."" EPA/600/R-92-005, U.S. Environmental Protection Agency, Research Triangle Park.; Smith K.R., M.A.K. Khalil, R.A. Rasmussen, M. Apte and F. Manegdeg (1993). ""Greenhouse gases from biomass fossil Fuels stoves in developing countries: a Manila Pilot Study."" Chemosphere, 26(1-4): 479-505.; Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118524 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Anthracite ,Anthracite ,2006 IPCC default ,Residential Source Emission Factor ,Anthracite Space Heaters ,,,,,147 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118525 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Residential Source Emission Factor ,Other Bituminous Coal Stoves: Brick or Metal ,,,,,267 - 2650 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118526 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Residential Source Emission Factor ,Boilers and Furnaces ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118527 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Residential Source Emission Factor ,Wood Pits ,,,,,200 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Adapted from Radian Corporation (1990) ""Emissions and cost estimates for globally significant anthropogenic combustion sources of Nox, N2O, CH4, CO and CO2"" Prepared for the Office of Research and Development, U.S. EPA, Washington D.C., USA; Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118528 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Residential Source Emission Factor ,"Wood Stoves: Conventional (U.S. Stoves. Conventional stoves do not have any emission reduction technology or design features and, in most cases, were manufactured before July 1, 1986.) ",,,,,932 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA(2005b). Air CHIEF, Version 12, EPA 454/C-05-001, USEPA, Office of Air Quality Planning Standards, Washington DC ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118529 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Residential Source Emission Factor ,Wood Stoves: Non-catalytic (U.S. Stoves) ,,,,,497 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA(2005b). Air CHIEF, Version 12, EPA 454/C-05-001, USEPA, Office of Air Quality Planning Standards, Washington DC ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118530 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Residential Source Emission Factor ,Wood Stoves: Catalytic (U.S. Stoves) ,,,,,360 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA(2005b). Air CHIEF, Version 12, EPA 454/C-05-001, USEPA, Office of Air Quality Planning Standards, Washington DC ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118531 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Residential Source Emission Factor ,Wood Stoves ,,,,,258 - 2190 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Battacharya, S.C., Albina, D.O. and Salam, P. Abdul (2002). ""Emission factors of wood and charcoal-fired cookstoves"". Biomass and Bioenergy, 23: 453-469; Smith K.R., Rasmussen, R.A., Manegdeg, F. and Apte, M. (1992). ""Greenhouse gases from small-scale combustion in developing countries: A Pilot Study in Manila."" EPA/600/R-92-005, U.S. Environmental Protection Agency, Research Triangle Park.; Smith K.R., M.A.K. Khalil, R.A. Rasmussen, M. Apte and F. Manegdeg (1993). ""Greenhouse gases from biomass fossil Fuels stoves in developing countries: a Manila Pilot Study."" Chemosphere, 26(1-4): 479-505.; Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118532 ,1A4b - Residential,1.A.4.b - Residential,METHANE,Charcoal ,Charcoal ,2006 IPCC default ,Residential Source Emission Factor ,Charcoal Stoves ,,,,,275 - 386 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Battacharya, S.C., Albina, D.O. and Salam, P. Abdul (2002). ""Emission factors of wood and charcoal-fired cookstoves"". Biomass and Bioenergy, 23: 453-469; Smith K.R., Rasmussen, R.A., Manegdeg, F. and Apte, M. (1992). ""Greenhouse gases from small-scale combustion in developing countries: A Pilot Study in Manila."" EPA/600/R-92-005, U.S. Environmental Protection Agency, Research Triangle Park.; Smith K.R., M.A.K. Khalil, R.A. Rasmussen, M. Apte and F. Manegdeg (1993). ""Greenhouse gases from biomass fossil Fuels stoves in developing countries: a Manila Pilot Study."" Chemosphere, 26(1-4): 479-505.; Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118533 ,1A4b - Residential,1.A.4.b - Residential,METHANE,"Agricultural Waste (corncobs, straw, etc...) ",Other Primary Solid Biomass ,2006 IPCC default ,Residential Source Emission Factor ,Other Primary Solid Biomass (Agriculture Wastes) Stoves ,,,,,230 -4190 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118534 ,1A4b - Residential,1.A.4.b - Residential,METHANE,"Agricultural Waste (corncobs, straw, etc...) ",Other Primary Solid Biomass ,2006 IPCC default ,Residential Source Emission Factor ,Other Primary Solid Biomass (Dung) Stoves ,,,,,281 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118535 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other Oils ,Other Petroleum Products ,2006 IPCC default ,Residential Source Emission Factor ,"Furnaces (In the 2006 IPCC Guidelines, Volume 2, Table 2.9, fuel type is not specified.) ",,,,,0.2 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118536 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Other Kerosene ,Other Kerosene ,2006 IPCC default ,Residential Source Emission Factor ,Other Kerosene Stoves: Wick ,,,,,1.2 - 1.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Smith K.R., Rasmussen, R.A., Manegdeg, F. and Apte, M. (1992). ""Greenhouse gases from small-scale combustion in developing countries: A Pilot Study in Manila."" EPA/600/R-92-005, U.S. Environmental Protection Agency, Research Triangle Park.; Smith K.R., M.A.K. Khalil, R.A. Rasmussen, M. Apte and F. Manegdeg (1993). ""Greenhouse gases from biomass fossil Fuels stoves in developing countries: a Manila Pilot Study."" Chemosphere, 26(1-4): 479-505.; Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118537 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Residential Source Emission Factor ,Liquefied Petroleum Gases Stoves: Standard ,,,,,0.7 - 3.5 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Smith K.R., Rasmussen, R.A., Manegdeg, F. and Apte, M. (1992). ""Greenhouse gases from small-scale combustion in developing countries: A Pilot Study in Manila."" EPA/600/R-92-005, U.S. Environmental Protection Agency, Research Triangle Park.; Smith K.R., M.A.K. Khalil, R.A. Rasmussen, M. Apte and F. Manegdeg (1993). ""Greenhouse gases from biomass fossil Fuels stoves in developing countries: a Manila Pilot Study."" Chemosphere, 26(1-4): 479-505.; Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118538 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Residential Source Emission Factor ,Boilers and Furnaces ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118539 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Residential Source Emission Factor ,Wood Stoves ,,,,,4 - 18.5 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Battacharya, S.C., Albina, D.O. and Salam, P. Abdul (2002). ""Emission factors of wood and charcoal-fired cookstoves"". Biomass and Bioenergy, 23: 453-469; Smith K.R., Rasmussen, R.A., Manegdeg, F. and Apte, M. (1992). ""Greenhouse gases from small-scale combustion in developing countries: A Pilot Study in Manila."" EPA/600/R-92-005, U.S. Environmental Protection Agency, Research Triangle Park.; Smith K.R., M.A.K. Khalil, R.A. Rasmussen, M. Apte and F. Manegdeg (1993). ""Greenhouse gases from biomass fossil Fuels stoves in developing countries: a Manila Pilot Study."" Chemosphere, 26(1-4): 479-505.; Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118540 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Residential Source Emission Factor ,Wood Fireplaces ,,,,,9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118541 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,Charcoal ,Charcoal ,2006 IPCC default ,Residential Source Emission Factor ,Charcoal Stoves ,,,,,1.6 - 9.3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Battacharya, S.C., Albina, D.O. and Salam, P. Abdul (2002). ""Emission factors of wood and charcoal-fired cookstoves"". Biomass and Bioenergy, 23: 453-469; Smith K.R., Rasmussen, R.A., Manegdeg, F. and Apte, M. (1992). ""Greenhouse gases from small-scale combustion in developing countries: A Pilot Study in Manila."" EPA/600/R-92-005, U.S. Environmental Protection Agency, Research Triangle Park.; Smith K.R., M.A.K. Khalil, R.A. Rasmussen, M. Apte and F. Manegdeg (1993). ""Greenhouse gases from biomass fossil Fuels stoves in developing countries: a Manila Pilot Study."" Chemosphere, 26(1-4): 479-505.; Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118542 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,"Agricultural Waste (corncobs, straw, etc...) ",Other Primary Solid Biomass ,2006 IPCC default ,Residential Source Emission Factor ,Other Primary Solid Biomass (Agriculture Wastes) Stoves ,,,,,9.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park.; Zhang, J., Smith, K.R., Ma, Y., Ye, S., Jiang, F., Qi, W., Liu, P., Khalil, M.A.K., Rasmussen, R.A. and Thorneloe, S.A. (2000). ""Greenhouse gases and other airborne pollutants from household stoves in China: A database for emission factors."" Atmospheric Environment, 34: 4537-4549. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118543 ,1A4b - Residential,1.A.4.b - Residential,NITROUS OXIDE,"Agricultural Waste (corncobs, straw, etc...) ",Other Primary Solid Biomass ,2006 IPCC default ,Residential Source Emission Factor ,Other Primary Solid Biomass (Dung) Stoves ,,,,,27 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Smith, K.R., Uma, R., Kishore, V.V.N, Lata, K., Joshi, V., Zhang, J., Rasmussen, R.A. and Khalil, M.A.K. (2000). ""Greenhouse gases from small-scale combustion devices in developing countries, Phase IIa: Household Stoves in India."" U.S. EPA/600/R-00-052, U.S. Environmental Protection Agency, Research Triangle Park. See also ""Comments from the data provider"" field. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118544 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Residual Fuel Oil Boilers ,,,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118545 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Gas/Diesel Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118546 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Gas/Diesel Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118547 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Liquefied/Petroleum Gases Boilers ,,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118548 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Overfeed Stoker Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118549 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Overfeed Stoker Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118550 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Underfeed Stoker Boilers ,,,,,14 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118551 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Underfeed Stoker Boilers ,,,,,14 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118552 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Hand-fed Units ,,,,,87 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118553 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Hand-fed Units ,,,,,87 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118554 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, wall fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118555 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, wall fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118556 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, tangentially fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118557 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, tangentially fired ",,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118558 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,Configuration: Wet Bottom ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118559 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,Configuration: Wet Bottom ,,,,0.9 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118560 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous Spreader Stokers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118561 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118562 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118563 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118564 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118565 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118566 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Gas-fired Gas Turbines > 3MW ,,,,,4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118567 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,METHANE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Wood/Wood Waste Boilers ,,,,,11 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118568 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Residual Fuel Oil ,Residual Fuel Oil ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Residual Fuel Oil Boilers ,,,,,0.3 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118569 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Gas/Diesel Boilers ,,,,,0.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118570 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Gas/Diesel Boilers ,,,,,0.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118571 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Liquefied/Petroleum Gases Boilers ,,,,,4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118572 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Overfeed Stoker Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118573 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Overfeed Stoker Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118574 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Underfeed Stoker Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118575 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Underfeed Stoker Boilers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118576 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Hand-fed Units ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118577 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Hand-fed Units ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118578 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, wall fired ",,,,0.5 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118579 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, wall fired ",,,,0.5 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118580 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, tangentially fired ",,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118581 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,"Configuration: Dry Bottom, tangentially fired ",,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118582 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,Configuration: Wet Bottom ,,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118583 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Pulverised ,Configuration: Wet Bottom ,,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118584 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous Spreader Stokers ,,,,,0.7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118585 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118586 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Circulating Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118587 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Bituminous Coal ,Other Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118588 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Other Bituminous/Sub-bituminous Fluidised Bed Combustor - Bubbling Bed ,,,,,61 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118589 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Boilers ,,,,,1 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118590 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Gas-fired Gas Turbines > 3MW ,,,,,1.4 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118591 ,1A4a - Commercial/Institutional,1.A.4.a - Commercial/Institutional,NITROUS OXIDE,Wood/Wood Waste ,Wood/Wood Waste ,2006 IPCC default ,Commercial/Institutional Source Emission Factor ,Wood/Wood Waste Boilers ,,,,,7 ,kg/TJ ,Equations 2.3 and 2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"U.S. EPA (2005). Air CHIEF, Verson 12, EPA 454/C-05-001, U.S. Environmental Protection Agency, Office of Air Quality Planning and Standards, Washington, DC. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 2.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118592 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Road Transport Emission Factor ,Uncontrolled ,,,,,33 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118593 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Road Transport Emission Factor ,Oxidaton Catalyst ,,,,,25 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118594 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Road Transport Emission Factor ,Low Mileage Light Duty Vehicle Vintage 1995 or later ,,,,,3.8 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118595 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Gas Oil ,Gas Oil ,2006 IPCC default ,Road Transport Emission Factor ,,,,,,3.9 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EEA (2005). EMEP/CORINAIR. Emission Inventory Guidebook - 2005 European Environment Agency, Technical report No 30. Copenhagen, Denmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118596 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Road Transport Emission Factor ,,,,,,3.9 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EEA (2005). EMEP/CORINAIR. Emission Inventory Guidebook - 2005 European Environment Agency, Technical report No 30. Copenhagen, Denmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118597 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Road Transport Emission Factor ,,,,,,92 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","TNO (2003). ""Evaluation of the environmental impact of modern passenger cars on petrol, diesel and automotive LPG, and CNG."" ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118598 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Road Transport Emission Factor ,,,,,,62 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","TNO (2003). ""Evaluation of the environmental impact of modern passenger cars on petrol, diesel and automotive LPG, and CNG."" ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118599 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Road Transport Emission Factor ,US trucks ,Fuel: Ethanol ,,,,260 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118600 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Road Transport Emission Factor ,Brazil cars ,Fuel: Ethanol ,,,,18 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ",,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118601 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Road Transport Emission Factor ,Uncontrolled ,,,,,3.2 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118602 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Road Transport Emission Factor ,Oxidaton Catalyst ,,,,,8.0 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118603 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Road Transport Emission Factor ,Low Mileage Light Duty Vehicle Vintage 1995 or later ,,,,,5.7 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118604 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Gas Oil ,Gas Oil ,2006 IPCC default ,Road Transport Emission Factor ,,,,,,3.9 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EEA (2005). EMEP/CORINAIR. Emission Inventory Guidebook - 2005 European Environment Agency, Technical report No 30. Copenhagen, Denmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118605 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Road Transport Emission Factor ,,,,,,3.9 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EEA (2005). EMEP/CORINAIR. Emission Inventory Guidebook - 2005 European Environment Agency, Technical report No 30. Copenhagen, Denmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118606 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Road Transport Emission Factor ,,,,,,3 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 3 of 4 (page A1.8) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","TNO (2003). ""Evaluation of the environmental impact of modern passenger cars on petrol, diesel and automotive LPG, and CNG."" ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118607 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Road Transport Emission Factor ,,,,,,0.2 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","TNO (2003). ""Evaluation of the environmental impact of modern passenger cars on petrol, diesel and automotive LPG, and CNG."" ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118608 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Road Transport Emission Factor ,US trucks ,Fuel: Ethanol ,,,,41 ,kg/TJ ,Equation 3.2.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118609 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Low Emission Vehicle (LEV) ,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118610 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Advanced Three-Way Catalyst ,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118611 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Early Three-Way Catalyst ,,26 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118612 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Oxidation Catalyst ,,20 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118613 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Non-oxidation Catalyst ,,8 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118614 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Uncontrolled ,,8 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118615 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Low Emission Vehicle (LEV) ,,90 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118616 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Advanced Three-Way Catalyst ,,113 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118617 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Early Three-Way Catalyst ,,92 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118618 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Oxidation Catalyst ,,72 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118619 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Non-oxidation Catalyst ,,28 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118620 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Uncontrolled ,,28 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118621 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Running - (hot) ,,Advanced ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118622 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Running - (hot) ,,Moderate ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118623 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Running - (hot) ,,Uncontrolled ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118624 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Cold Start ,,Advanced ,,0 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118625 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Cold Start ,,Moderate ,,0 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118626 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Cold Start ,,Uncontrolled ,,-1 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118627 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Low Emission Vehicle (LEV) ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118628 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Advanced Three-Way Catalyst ,,25 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118629 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Early Three-Way Catalyst ,,43 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118630 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Oxidation Catalyst ,,26 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118631 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Non-oxidation Catalyst ,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118632 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Uncontrolled ,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118633 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Low Emission Vehicle (LEV) ,,59 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118634 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Advanced Three-Way Catalyst ,,200 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118635 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Early Three-Way Catalyst ,,153 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118636 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Oxidation Catalyst ,,93 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118637 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Non-oxidation Catalyst ,,32 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118638 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Uncontrolled ,,32 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118639 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Truck ,Running - (hot) ,,Advanced and moderate ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118640 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Truck ,Running - (hot) ,,Uncontrolled ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118641 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Truck ,Cold Start ,,Advanced and moderate ,,-1 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118642 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Truck ,Cold Start ,,Uncontrolled ,,-1 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118643 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Low Emission Vehicle (LEV) ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118644 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Advanced Three-Way Catalyst ,,52 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118645 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Early Three-Way Catalyst ,,88 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118646 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Oxidation Catalyst ,,55 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118647 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Non-oxidation Catalyst ,,20 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118648 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Uncontrolled ,,21 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118649 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Low Emission Vehicle (LEV) ,,120 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118650 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Advanced Three-Way Catalyst ,,409 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118651 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Early Three-Way Catalyst ,,313 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118652 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Oxidation Catalyst ,,194 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118653 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Non-oxidation Catalyst ,,70 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118654 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Uncontrolled ,,74 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118655 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Diesel Vehicle ,Running - (hot) ,,"All - advanced, moderate or uncontrolled ",,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118656 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Diesel Vehicle ,Cold Start ,,"All - advanced, moderate or uncontrolled ",,-2 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118657 ,1A3b4 - Motorcycles,1.A.3.b.iv - Motorcycles,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Motorcycles ,Running - (hot) ,,Non-oxidation Catalyst ,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118658 ,1A3b4 - Motorcycles,1.A.3.b.iv - Motorcycles,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Motorcycles ,Running - (hot) ,,Uncontrolled ,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118659 ,1A3b4 - Motorcycles,1.A.3.b.iv - Motorcycles,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Motorcycles ,Cold Start ,,Non-oxidation Catalyst ,,12 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118660 ,1A3b4 - Motorcycles,1.A.3.b.iv - Motorcycles,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Motorcycles ,Cold Start ,,Uncontrolled ,,15 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118661 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Low Emission Vehicle (LEV) ,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118662 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Advanced Three-Way Catalyst ,,7 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118663 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Early Three-Way Catalyst ,,39 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118664 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Oxidation Catalyst ,,82 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118665 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Non-oxidation Catalyst ,,96 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118666 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Running - (hot) ,,Uncontrolled ,,101 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118667 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Low Emission Vehicle (LEV) ,,32 ,mg/start ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118668 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Advanced Three-Way Catalyst ,,55 ,mg/start ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118669 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Early Three-Way Catalyst ,,34 ,mg/start ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118670 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Oxidation Catalyst ,,9 ,mg/start ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118671 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Non-oxidation Catalyst ,,59 ,mg/start ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118672 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Vehicle (Car) ,Cold Start ,,Uncontrolled ,,62 ,mg/start ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118673 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Running - (hot) ,,Advanced ,,1 ,mg/km ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118674 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Running - (hot) ,,Moderate ,,1 ,mg/km ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118675 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Running - (hot) ,,Uncontrolled ,,1 ,mg/km ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118676 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Cold Start ,,Advanced ,,-3 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118677 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Cold Start ,,Moderate ,,-3 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118678 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Vehicle (Car) ,Cold Start ,,Uncontrolled ,,-3 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118679 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Low Emission Vehicle (LEV) ,,7 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118680 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Advanced Three-Way Catalyst ,,14 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118681 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Early Three-Way Catalyst ,,39 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118682 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Oxidation Catalyst ,,81 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118683 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Non-oxidation Catalyst ,,109 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118684 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Running - (hot) ,,Uncontrolled ,,116 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118685 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Low Emission Vehicle (LEV) ,,46 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118686 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Advanced Three-Way Catalyst ,,82 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118687 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Early Three-Way Catalyst ,,72 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118688 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Oxidation Catalyst ,,99 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118689 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Non-oxidation Catalyst ,,67 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118690 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Gasoline Truck ,Cold Start ,,Uncontrolled ,,71 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118691 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Truck ,Running - (hot) ,,Advanced and moderate ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118692 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Truck ,Running - (hot) ,,Uncontrolled ,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118693 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Truck ,Cold Start ,,Advanced and moderate ,,-4 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118694 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Light Duty Diesel Truck ,Cold Start ,,Uncontrolled ,,-4 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118695 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Low Emission Vehicle (LEV) ,,14 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118696 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Advanced Three-Way Catalyst ,,15 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118697 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Early Three-Way Catalyst ,,121 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118698 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Oxidation Catalyst ,,111 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118699 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Non-oxidation Catalyst ,,239 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118700 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Running - (hot) ,,Uncontrolled ,,263 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118701 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Low Emission Vehicle (LEV) ,,94 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118702 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Advanced Three-Way Catalyst ,,163 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118703 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Early Three-Way Catalyst ,,183 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118704 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Oxidation Catalyst ,,215 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118705 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Non-oxidation Catalyst ,,147 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118706 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Gasoline Vehicle ,Cold Start ,,Uncontrolled ,,162 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118707 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Diesel Vehicle ,Running - (hot) ,,"All - advanced, moderate or uncontrolled ",,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118708 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for USA Vehicles ,Heavy Duty Diesel Vehicle ,Cold Start ,,"All - advanced, moderate or uncontrolled ",,-11 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118709 ,1A3b4 - Motorcycles,1.A.3.b.iv - Motorcycles,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Motorcycles ,Running - (hot) ,,Non-oxidation Catalyst ,,40 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118710 ,1A3b4 - Motorcycles,1.A.3.b.iv - Motorcycles,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Motorcycles ,Running - (hot) ,,Uncontrolled ,,53 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118711 ,1A3b4 - Motorcycles,1.A.3.b.iv - Motorcycles,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Motorcycles ,Cold Start ,,Non-oxidation Catalyst ,,24 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118712 ,1A3b4 - Motorcycles,1.A.3.b.iv - Motorcycles,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for USA Vehicles ,Motorcycles ,Cold Start ,,Uncontrolled ,,33 ,mg/start ,Relevant to Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"USEPA (2004). ""Update of methane and nitrous oxide emission factors for on-highway vehicles."" Report Number EPA420-P-04-016, US Environmental Protection Agency, Washington DC, USA .November 2004 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118713 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Light Duty Vehicles ,Fuel: Methanol ,,,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118714 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Light Duty Vehicles ,Fuel: Compressed Natural Gas (CNG) ,,,,215 - 725 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118715 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Light Duty Vehicles ,,,,,24 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118716 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Light Duty Vehicles ,Fuel: Ethanol ,,,,27 - 45 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118717 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,Fuel: Methanol ,,,,401 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118718 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,Fuel: Compressed Natural Gas (CNG) ,,,,5983 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118719 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,Fuel: Liquefied Natural Gas (LNG) ,,,,4261 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118720 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,,,,,67 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118721 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,METHANE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,Fuel: Ethanol ,,,,1227 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118722 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Buses ,Fuel: Methanol ,,,,401 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118723 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Buses ,Fuel: Compressed Natural Gas (CNG) ,,,,7715 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118724 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Buses ,Fuel: Ethanol ,,,,1292 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118725 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Light Duty Vehicles ,Fuel: Methanol ,,,,39 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118726 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Light Duty Vehicles ,Fuel: Compressed Natural Gas (CNG) ,,,,27 - 70 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118727 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Light Duty Vehicles ,,,,,5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118728 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Light Duty Vehicles ,Fuel: Ethanol ,,,,12 - 47 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118729 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,Fuel: Methanol ,,,,135 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118730 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,Fuel: Compressed Natural Gas (CNG) ,,,,185 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118731 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,Fuel: Liquefied Natural Gas (LNG) ,,,,274 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118732 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,,,,,93 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118733 ,1A3b - Road Transportation,1.A.3.b - Road Transportation,NITROUS OXIDE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Heavy Duty Vehicles ,Fuel: Ethanol ,,,,191 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118734 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Buses ,Fuel: Methanol ,,,,135 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118735 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Buses ,Fuel: Compressed Natural Gas (CNG) ,,,,101 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118736 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Bio-Alcohol ,Biogasoline ,2006 IPCC default ,Emission Factor for Alternative Fuel Vehicles ,Buses ,Fuel: Ethanol ,,,,226 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.4 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118737 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,10 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118738 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,10 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118739 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,6.5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118740 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,6.5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118741 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,201 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118742 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,131 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118743 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,86 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118744 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,41 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118745 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,38 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118746 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,22 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118747 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,17 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118748 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,8.0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118749 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,45 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118750 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,26 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118751 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,16 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118752 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,14 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118753 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,24 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118754 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,11 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118755 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,4.5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118756 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,2.5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118757 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,94 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118758 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,17 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118759 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,13 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118760 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,11 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118761 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,12 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118762 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118763 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2.0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118764 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,1.5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118765 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,83 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118766 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118767 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118768 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118769 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118770 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118771 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,0.8 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118772 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0.7 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118773 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,57 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118774 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118775 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118776 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118777 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118778 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118779 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118780 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118781 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,22 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118782 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,28 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118783 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,12 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118784 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,8 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118785 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118786 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118787 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118788 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118789 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,18 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118790 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,11 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118791 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118792 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118793 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118794 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118795 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118796 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118797 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118798 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,7 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118799 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118800 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118801 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,15 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118802 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118803 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118804 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118805 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,7 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118806 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118807 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118808 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118809 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,15 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118810 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118811 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118812 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118813 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118814 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118815 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118816 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118817 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-ECE (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118818 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-ECE (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118819 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-ECE (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118820 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-ECE (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118821 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-ECE (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118822 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-ECE (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118823 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-ECE (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,35 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118824 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-ECE (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,25 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118825 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,38 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118826 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,21 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118827 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,13 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118828 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,8 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118829 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118830 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118831 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,35 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118832 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,25 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118833 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,23 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118834 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,13 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118835 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118836 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118837 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118838 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118839 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,35 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118840 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,25 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118841 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 and later (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118842 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 and later (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118843 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 and later (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118844 ,1A3b1 - Cars,1.A.3.b.i - Cars,NITROUS OXIDE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 and later (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118845 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 and later (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118846 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 and later (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118847 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 and later (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,35 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118848 ,1A3b1 - Cars,1.A.3.b.i - Cars,METHANE,Liquefied Petroleum Gas (LPG) ,Liquefied Petroleum Gases ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 and later (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,25 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118849 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,10 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118850 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,10 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118851 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,6.5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118852 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,6.5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118853 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,201 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118854 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,131 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118855 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,86 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118856 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,41 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118857 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,122 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118858 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,52 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118859 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,52 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118860 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,52 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118861 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,45 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118862 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,26 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118863 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,16 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118864 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,14 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118865 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,62 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118866 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,22 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118867 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,22 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118868 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,22 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118869 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,94 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118870 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,17 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118871 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,13 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118872 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,11 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118873 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,36 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118874 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118875 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118876 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,5 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118877 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,83 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118878 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118879 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118880 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118881 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,16 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118882 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118883 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118884 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118885 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,57 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118886 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118887 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118888 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118889 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118890 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118891 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118892 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118893 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,22 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118894 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,28 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118895 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,12 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118896 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Pre-Euro (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,8 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118897 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118898 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118899 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118900 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118901 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,18 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118902 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,11 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118903 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118904 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 1 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118905 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118906 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118907 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118908 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118909 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118910 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,7 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118911 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118912 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 2 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118913 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,15 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118914 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118915 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118916 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118917 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,7 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118918 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,3 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118919 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118920 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118921 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,15 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118922 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,9 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118923 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118924 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,4 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118925 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Cold ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118926 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ","Driving Condition: Urban, Hot ",,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118927 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118928 ,1A3b2 - Light Duty Trucks,1.A.3.b.ii - Light-duty trucks,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,0 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118929 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: All technologies (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118930 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: All technologies (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118931 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: All technologies (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,6 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118932 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: All technologies (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,140 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118933 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: All technologies (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,110 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118934 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: All technologies (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,70 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118935 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW < 16t (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118936 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW < 16t (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118937 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW < 16t (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118938 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW < 16t (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,85 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118939 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW < 16t (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,23 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118940 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW < 16t (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,20 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118941 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW > 16t (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118942 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW > 16t (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118943 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW > 16t (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118944 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW > 16t (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,175 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118945 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW > 16t (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118946 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: GVW > 16t (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,70 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118947 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Urban Buses & Coaches (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118948 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Urban Buses & Coaches (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118949 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Urban Buses & Coaches (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,30 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118950 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Urban Buses & Coaches (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,175 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118951 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Urban Buses & Coaches (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,80 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118952 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Urban Buses & Coaches (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,70 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118953 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: pre-Euro 4 (For details, consult COPERT iV Model) ",Fuel: Compressed Natural Gas (CNG) ,,,,5400 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118954 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Natural Gas ,Natural Gas ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Technology/Class: Euro 4 and later including EEV (For details, consult COPERT iV Model) ",Fuel: Compressed Natural Gas (CNG) ,,,,900 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118955 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3 (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118956 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118957 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,1 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118958 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3 (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,219 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118959 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3 (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,219 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118960 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3 (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,219 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118961 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 2-stroke (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118962 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 2-stroke (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118963 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 2-stroke (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118964 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 2-stroke (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,150 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118965 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 2-stroke (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,150 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118966 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 2-stroke (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,150 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118967 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 4-stroke (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118968 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 4-stroke (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118969 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 4-stroke (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,2 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L and Samaras, Z (2005). Personal Communication Leonidas Ntziachristos and Zissis Samaras based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle University Thessaloniki, PO Box 458, GR 54124, Thessaloniki, GREECE; .LAT (2005). ""Emission factors of N2O and NH3 from road vehicles."" LAT Report 0507 (in Greek), Laboratory of Applied Thermodynamics, Aristotle University of Thessaloniki, Greece; TNO (2002). ""N2O formation in vehicles catalysts."" Report #02.OR.VM.017.1/NG. Nederlandse Organisatie voor toegepastnatuurwetenschappelijk onderzoek (Netherlands Organisation for Applied Scientific Research), Delft, Netherlands. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118970 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 4-stroke (For details, consult COPERT iV Model) ",Driving Condition: Urban ,,,,200 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118971 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 4-stroke (For details, consult COPERT iV Model) ",Driving Condition: Rural ,,,,200 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118972 ,1A3b3 - Heavy Duty Trucks and Buses,1.A.3.b.iii - Heavy-duty trucks and buses,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Emission Factor for European Vehicles [COPERT IV Model] ,"Vehicle Type: Power Two Wheeler, Vehicle Technology/Class: <50 cm^3, 4-stroke (For details, consult COPERT iV Model) ",Driving Condition: Highway ,,,,200 ,mg/km ,Equation 3.2.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Ntziachristos, L. and Samaras, Z. (2005) Personal communication based on draft COPERT IV. Laboratory of Applied Thermodynamics, Aristotle Unviversity Thessaloniki, P.O. Box 458, GR 54124, Thessaloniki, GREECE ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.2.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118973 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,Off-Road Source: Agriculture ,,,,,4.15 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118974 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,Off-Road Source: Forestry ,,,,,4.15 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118975 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,Off-Road Source: Industry ,,,,,4.15 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118976 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,Off-Road Source: Household ,,,,,4.15 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118977 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,Off-Road Source: Agriculture ,,,,,28.6 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118978 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,Off-Road Source: Forestry ,,,,,28.6 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118979 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,Off-Road Source: Industry ,,,,,28.6 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118980 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,Off-Road Source: Household ,,,,,28.6 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118981 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Agriculture, Engine type: Motor gasoline, 4-stroke ",,,,,80 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118982 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Industry, Engine type: Motor gasoline, 4-stroke ",,,,,50 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118983 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Household, Engine type: Motor gasoline, 4-stroke ",,,,,120 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118984 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Agriculture, Engine type: Motor gasoline, 4-stroke ",,,,,2 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118985 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Industry, Engine type: Motor gasoline, 4-stroke ",,,,,2 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118986 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Household, Engine type: Motor gasoline, 4-stroke ",,,,,2 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118987 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Agriculture, Engine type: Motor gasoline, 2-stroke ",,,,,140 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118988 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Forestry, Engine type: Motor gasoline, 2-stroke ",,,,,170 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118989 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Industry, Engine type: Motor gasoline, 2-stroke ",,,,,130 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118990 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,METHANE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Household, Engine type: Motor gasoline, 2-stroke ",,,,,180 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118991 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Agriculture, Engine type: Motor gasoline, 2-stroke ",,,,,0.4 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118992 ,1A4c2 - Off-road Vehicles and Other Machinery,1.A.4.c.ii - Off-road Vehicles and Other Machinery,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Forestry, Engine type: Motor gasoline, 2-stroke ",,,,,0.4 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118993 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Industry, Engine type: Motor gasoline, 2-stroke ",,,,,0.4 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118994 ,1A3e2 - Off-road,1.A.3.e.ii - Off-road,NITROUS OXIDE,Motor Gasoline ,Motor Gasoline ,2006 IPCC default ,Default Emission Factors for Off-road Mobile Source and Machinery ,"Off-Road Source: Household, Engine type: Motor gasoline, 2-stroke ",,,,,0.4 ,kg/TJ ,Equation 3.3.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.3.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118995 ,1A3c - Railways,1.A.3.c - Railways,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factor for the Most Common Used Fuels for Rail Transport ,,,,,,4.15 ,kg/TJ ,Equations 3.4.1 and 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118996 ,1A3c - Railways,1.A.3.c - Railways,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Emission Factor for the Most Common Used Fuels for Rail Transport ,,,,,,28.6 ,kg/TJ ,Equations 3.4.1 and 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005). Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118997 ,1A3c - Railways,1.A.3.c - Railways,METHANE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Default Emission Factor for the Most Common Used Fuels for Rail Transport ,,,,,,2 ,kg/TJ ,Equation 3.4.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. (This factor was taken from Table 2.2 in Stationary Combustion chapter in Volume 2 of the 2006 IPCC Guidelines.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118998 ,1A3c - Railways,1.A.3.c - Railways,NITROUS OXIDE,Other Sub-Bituminous Coal ,Sub-Bituminous Coal ,2006 IPCC default ,Default Emission Factor for the Most Common Used Fuels for Rail Transport ,,,,,,1.5 ,kg/TJ ,Equation 3.4.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 2 of 4 (page A1.7) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Chapter 1, Volume 2 of the 2006 IPCC Guidelines. For details, see Section 1.4.2.1, Chapter 1, Volume 2 of the 2006 IPCC Guidelines. (This factor was taken from Table 2.2 in Stationary Combustion chapter in Volume 2 of the 2006 IPCC Guidelines.) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.1 ",IPCC  +,,,,,,,,,,,,,,,,,,, +118999 ,1A3c - Railways,1.A.3.c - Railways,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Naturally Aspirated Direct Injection ,,,,,0.8 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119000 ,1A3c - Railways,1.A.3.c - Railways,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Turbo-Charged Direct Injection / Inter-cooled Turbo-Charged Direct Injection ,,,,,0.8 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119001 ,1A3c - Railways,1.A.3.c - Railways,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Naturally Aspirated Pre-chamber Injection ,,,,,1.0 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119002 ,1A3c - Railways,1.A.3.c - Railways,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Turbo-Charged Pre-chamber Injection ,,,,,0.95 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119003 ,1A3c - Railways,1.A.3.c - Railways,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Inter-cooled Turbo-Charged Pre-chamber Injection ,,,,,0.9 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119004 ,1A3c - Railways,1.A.3.c - Railways,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Naturally Aspirated Direct Injection ,,,,,1.0 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119005 ,1A3c - Railways,1.A.3.c - Railways,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Turbo-Charged Direct Injection / Inter-cooled Turbo-Charged Direct Injection ,,,,,1.0 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119006 ,1A3c - Railways,1.A.3.c - Railways,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Naturally Aspirated Pre-chamber Injection ,,,,,1.0 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119007 ,1A3c - Railways,1.A.3.c - Railways,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Turbo-Charged Pre-chamber Injection ,,,,,1.0 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119008 ,1A3c - Railways,1.A.3.c - Railways,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Pollutant Weighing Factor as Function of Engine Design Parameter for Uncontrolled Engines ,Engine Type: Inter-cooled Turbo-Charged Pre-chamber Injection ,,,,,1.0 ,dimensionless ,Equation 3.4.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"EMEP/CORINAIR Emission inventory Guidebook 2005, European Environmental Agency, Technical Report No 30, Copenhagen Denmmark, (December 2005)., Table 8-9. Available from web site: http://reports.eea.eu.int/EMEPCORINAIR4/en ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.4.2 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119009 ,1A3d - Navigation,1.A.3.d - Water-borne Navigation,METHANE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Water-Bourne Navigation Emission Factor ,,On-going Ships ,,,,7 ,kg/TJ ,Equation 3.5.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Lloyd`s Register (1995) ""Marine exhaust emissions research programme"", Lloyd`s Register House, Croydon, England.; EC (2002). ""Quantification of emissions from ships associated with ship movements between ports in the European Community."" Final Report Entec UK Limited (July 2002), page 12. Available from EU web site http://europa.eu.int/comm/environment/air/pdf/chapter2_ship_emissions.pdf ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.5.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119010 ,1A3d - Navigation,1.A.3.d - Water-borne Navigation,NITROUS OXIDE,Diesel Oil ,Diesel Oil ,2006 IPCC default ,Default Water-Bourne Navigation Emission Factor ,,On-going Ships ,,,,2 ,kg/TJ ,Equation 3.5.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Lloyd`s Register (1995) ""Marine exhaust emissions research programme"", Lloyd`s Register House, Croydon, England.; EC (2002). ""Quantification of emissions from ships associated with ship movements between ports in the European Community."" Final Report Entec UK Limited (July 2002), page 12. Available from EU web site http://europa.eu.int/comm/environment/air/pdf/chapter2_ship_emissions.pdf ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.5.3 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119011 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,0.5 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Wiesen, P., Kleffmann, J., Kortenbach, R. and Becker, K.H (1994). ""Nitrous oxide and methane emissions from aero engines."" Geophys. Res. Lett. 21:18 2027-2030.; Olivier, J.G.J. (1991). ""Inventory of aircraft emissions: a review of recent literature"". RIVM Rapport 736301008, Bilthoven, The Netherlands, 1991.; Olivier, J.G.J. (1995). ""Scenarios for global emissions from air traffic"". Report No. 773 002 003, RIVM, Bilthoven, The Netherlands, 1995 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119012 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,0.5 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Wiesen, P., Kleffmann, J., Kortenbach, R. and Becker, K.H (1994). ""Nitrous oxide and methane emissions from aero engines."" Geophys. Res. Lett. 21:18 2027-2030.; Olivier, J.G.J. (1991). ""Inventory of aircraft emissions: a review of recent literature"". RIVM Rapport 736301008, Bilthoven, The Netherlands, 1991.; Olivier, J.G.J. (1995). ""Scenarios for global emissions from air traffic"". Report No. 773 002 003, RIVM, Bilthoven, The Netherlands, 1995 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119013 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,0.5 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Wiesen, P., Kleffmann, J., Kortenbach, R. and Becker, K.H (1994). ""Nitrous oxide and methane emissions from aero engines."" Geophys. Res. Lett. 21:18 2027-2030.; Olivier, J.G.J. (1991). ""Inventory of aircraft emissions: a review of recent literature"". RIVM Rapport 736301008, Bilthoven, The Netherlands, 1991.; Olivier, J.G.J. (1995). ""Scenarios for global emissions from air traffic"". Report No. 773 002 003, RIVM, Bilthoven, The Netherlands, 1995 ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119014 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,2 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","IPCC (1999). ""Aviation and the global atmosphere."" Eds: Penner, J.E., Lister, D.H., Griggs, D.J., Dokken, D.J., MsFarland, M., Intergovernmental Panel on Climate Change, Cambridge University Press 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119015 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,2 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","IPCC (1999). ""Aviation and the global atmosphere."" Eds: Penner, J.E., Lister, D.H., Griggs, D.J., Dokken, D.J., MsFarland, M., Intergovernmental Panel on Climate Change, Cambridge University Press 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119016 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,2 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1A, Sheet 1 of 4 (page A1.6) in Annex 1 of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","IPCC (1999). ""Aviation and the global atmosphere."" Eds: Penner, J.E., Lister, D.H., Griggs, D.J., Dokken, D.J., MsFarland, M., Intergovernmental Panel on Climate Change, Cambridge University Press 1999. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119017 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Aviation Gasoline ,Aviation Gasoline ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,250 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Expert judgement by the authors of Section 3.6, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119018 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,250 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Expert judgement by the authors of Section 3.6, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119019 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,Default Emission Factor for Aircraft ,,,,Uncontrolled ,,250 ,kg/TJ ,Equation 3.6.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Expert judgement by the authors of Section 3.6, Volume 2 of the 2006 IPCC Guidelines. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119020 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5450 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119021 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4760 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119022 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2310 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119023 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2440 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119024 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3020 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119025 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7050 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119026 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5890 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119027 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6380 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119028 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10660 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119029 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5890 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119030 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2140 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119031 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3970 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119032 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4610 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119033 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2740 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119034 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2480 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119035 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2280 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119036 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2460 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119037 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2780 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119038 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10140 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119039 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11370 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119040 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11080 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119041 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10240 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119042 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4320 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119043 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4630 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119044 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4620 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119045 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5610 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119046 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5520 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119047 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8100 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119048 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7290 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119049 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5360 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119050 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2650 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119051 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7300 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119052 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7290 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119053 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3180 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119054 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2760 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119055 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2930 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119056 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5960 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119057 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7030 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119058 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1910 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119059 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1800 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119060 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1060 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119061 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",990 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119062 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2390 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119063 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2520 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119064 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",870 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119065 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2160 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119066 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1890 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119067 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2880 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119068 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1070 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119069 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",230 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119070 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",640 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119071 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",620 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119072 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.12 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119073 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.63 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119074 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119075 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119076 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.14 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119077 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119078 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.42 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119079 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.39 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119080 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119081 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.75 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119082 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119083 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.69 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119084 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.81 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119085 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.45 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119086 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.08 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119087 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.10 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119088 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.09 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119089 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119090 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.84 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119091 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.82 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119092 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119093 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.22 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119094 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119095 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119096 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119097 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.12 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119098 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.10 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119099 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119100 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.24 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119101 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.15 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119102 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119103 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.40 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119104 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.24 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119105 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119106 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119107 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.8 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119108 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.32 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119109 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.90 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119110 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119111 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.14 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119112 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119113 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119114 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.14 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119115 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.15 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119116 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119117 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.14 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119118 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119119 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.25 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119120 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119121 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119122 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119123 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119124 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119125 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119126 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119127 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119128 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119129 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119130 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119131 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119132 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.3 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119133 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119134 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119135 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119136 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119137 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119138 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119139 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119140 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119141 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119142 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.3 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119143 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.4 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119144 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.4 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119145 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.3 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119146 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119147 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119148 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119149 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119150 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119151 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.3 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119152 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119153 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119154 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119155 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119156 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119157 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119158 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119159 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119160 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119161 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119162 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119163 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119164 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119165 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119166 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119167 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119168 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119169 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119170 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119171 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119172 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119173 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119174 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119175 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119176 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",25.86 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119177 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",19.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119178 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.73 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119179 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119180 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.72 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119181 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",35.57 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119182 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",28.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119183 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",34.81 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119184 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",64.45 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119185 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.96 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119186 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.68 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119187 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.23 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119188 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.97 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119189 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.74 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119190 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119191 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.66 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119192 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.12 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119193 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.30 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119194 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",49.17 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119195 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",49.52 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119196 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",65.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119197 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",42.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119198 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",23.43 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119199 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",17.85 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119200 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",23.76 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119201 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",28.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119202 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",24.80 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119203 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",52.81 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119204 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",35.65 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119205 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.62 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119206 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.16 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119207 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",31.64 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119208 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",35.65 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119209 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.97 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119210 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.76 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119211 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.68 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119212 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119213 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119214 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.34 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119215 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119216 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119217 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.69 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119218 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.75 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119219 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.40 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119220 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.99 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119221 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.63 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119222 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.58 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119223 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.66 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119224 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.74 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119225 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.30 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119226 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119227 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.82 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119228 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.80 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119229 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",28.30 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119230 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.35 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119231 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119232 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.55 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119233 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.20 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119234 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",26.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119235 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",25.23 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119236 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119237 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",92.37 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119238 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119239 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",24.44 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119240 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",27.16 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119241 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.04 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119242 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119243 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.65 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119244 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119245 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119246 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",114.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119247 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",79.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119248 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",17.84 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119249 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",26.72 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119250 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.08 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119251 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.62 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119252 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.80 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119253 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.47 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119254 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.37 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119255 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.76 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119256 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",20.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119257 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",26.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119258 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.29 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119259 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",103.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119260 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",20.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119261 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119262 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.53 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119263 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",27.98 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119264 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",82.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119265 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",143.05 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119266 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.21 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119267 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.18 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119268 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.70 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119269 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.18 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119270 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.84 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119271 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119272 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.35 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119273 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119274 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.42 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119275 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.22 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119276 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",34.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119277 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.97 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119278 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.24 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119279 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119280 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.12 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119281 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.67 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119282 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.54 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119283 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119284 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119285 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.15 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119286 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119287 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119288 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119289 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",87.71 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119290 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.05 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119291 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.25 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119292 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.32 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119293 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119294 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.75 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119295 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.91 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119296 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119297 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.65 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119298 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",43.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119299 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.41 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119300 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119301 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119302 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.20 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119303 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.10 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119304 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.99 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119305 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119306 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119307 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119308 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119309 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.36 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119310 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.17 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119311 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",66.56 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119312 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119313 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.69 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119314 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119315 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119316 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.85 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119317 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",107.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119318 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.21 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119319 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119320 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.56 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119321 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.50 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119322 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.29 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119323 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.36 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119324 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.52 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119325 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.23 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119326 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.28 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119327 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119328 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119329 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.58 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119330 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119331 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.26 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119332 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.72 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119333 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119334 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.73 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119335 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.77 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119336 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.96 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119337 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.23 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119338 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.86 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119339 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119340 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.37 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119341 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.86 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119342 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.68 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119343 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.26 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119344 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119345 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.87 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119346 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119347 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.72 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119348 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119349 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119350 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.21 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119351 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.60 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119352 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119353 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.24 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119354 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.37 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119355 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119356 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119357 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.77 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119358 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.75 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119359 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.56 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119360 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119361 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.70 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119362 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.84 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119363 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119364 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119365 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119366 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.87 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119367 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.93 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119368 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.89 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119369 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.22 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119370 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.60 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119371 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.57 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119372 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119373 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119374 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.76 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119375 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.80 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119376 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119377 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.68 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119378 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.60 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119379 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.91 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119380 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.34 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119381 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119382 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.20 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119383 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.20 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119384 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1720 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119385 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1510 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119386 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",730 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119387 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",770 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119388 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",960 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119389 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2230 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119390 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1860 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119391 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2020 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119392 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3370 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119393 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1860 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119394 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",680 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119395 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1260 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119396 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1460 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119397 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",870 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119398 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",780 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119399 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",720 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119400 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",780 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119408 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1460 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119409 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1780 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119410 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1750 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119411 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2560 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119412 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2310 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119413 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1700 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119414 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",840 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119415 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2310 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119416 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2310 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119417 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1010 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119418 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",870 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119419 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",930 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119420 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1890 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119421 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2230 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119422 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",600 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119423 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",570 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119424 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",330 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119425 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",310 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119426 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",760 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119427 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",800 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119428 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",280 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119429 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",680 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119430 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",600 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119431 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",910 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119432 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",340 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119433 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",70 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119434 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",200 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119435 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",200 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119505 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",880 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119506 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3210 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119507 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3600 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119508 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3510 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119509 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3240 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119510 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1370 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119511 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1460 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +119748 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5450 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119749 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4760 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119750 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2310 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119751 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2440 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119752 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3020 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119753 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7050 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119754 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5890 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119755 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6380 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119756 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10660 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119757 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5890 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119758 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2140 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119759 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3970 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119760 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4610 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119761 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2740 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119762 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2480 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119763 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2280 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119764 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2460 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119765 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2780 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119766 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10140 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119767 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11370 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119768 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11080 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119769 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10240 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119770 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4320 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119771 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4630 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119772 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4620 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119773 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5610 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119774 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5520 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119775 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8100 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119776 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7290 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119777 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5360 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119778 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2650 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119779 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7300 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119780 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7290 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119781 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3180 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119782 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2760 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119783 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2930 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119784 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5960 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119785 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7030 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119786 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1910 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119787 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1800 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119788 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1060 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119789 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",990 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119790 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2390 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119791 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2520 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119792 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",870 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119793 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2160 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119794 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1890 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119795 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2880 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119796 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1070 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119797 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",230 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119798 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",640 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119799 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON DIOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",620 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119800 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.12 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119801 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.63 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119802 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119803 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119804 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.14 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119805 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119806 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.42 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119807 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.39 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119808 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119809 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.75 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119810 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119811 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.69 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119812 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.81 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119813 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.45 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119814 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.08 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119815 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119816 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.09 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119817 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119818 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.84 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119819 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.82 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119820 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119821 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.22 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119822 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119823 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119824 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119825 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.12 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119826 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119827 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119828 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.24 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119829 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.15 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119830 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119831 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.4 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119832 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.24 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119833 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119834 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119835 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.8 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119836 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.32 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119837 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.9 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119838 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119839 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.14 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119840 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119841 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119842 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.14 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119843 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.15 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119844 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119845 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.14 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119846 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119847 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.25 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119848 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119849 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119850 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119851 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,METHANE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119852 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119853 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119854 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119855 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119856 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119857 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119858 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119859 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119860 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.3 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119861 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119862 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119863 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119864 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119865 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119866 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119867 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119868 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119869 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119870 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.3 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119871 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.4 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119872 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.4 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119873 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.3 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119874 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119875 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119876 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119877 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119878 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119879 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.3 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119880 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119881 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119882 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119883 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119884 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119885 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119886 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119887 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119888 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119889 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.2 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119890 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119891 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119892 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119893 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119894 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119895 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119896 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119897 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119898 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119899 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.1 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119900 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119901 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119902 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119903 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROUS OXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119904 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",25.86 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119905 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",19.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119906 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.73 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119907 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119908 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.72 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119909 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",35.57 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119910 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",28.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119911 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",34.81 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119912 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",64.45 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119913 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.96 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119914 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.68 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119915 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.23 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119916 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.97 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119917 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.74 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119918 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119919 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.66 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119920 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.12 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119921 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.30 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119922 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",49.17 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119923 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",49.52 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119924 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",65.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119925 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",42.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119926 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",23.43 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119927 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",17.85 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119928 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",23.76 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119929 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",28.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119930 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",24.80 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119931 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",52.81 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119932 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",35.65 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119933 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.62 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119934 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.16 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119935 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",31.64 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119936 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",35.65 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119937 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.97 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119938 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.76 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119939 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.68 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119940 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119941 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119942 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.34 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119943 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119944 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119945 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.69 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119946 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.75 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119947 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.40 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119948 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.99 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119949 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.63 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119950 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.58 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119951 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.66 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119952 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.74 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119953 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.30 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119954 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119955 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.82 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119956 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.80 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119957 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",28.30 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119958 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.35 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119959 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119960 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.55 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119961 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.20 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119962 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",26.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119963 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",25.23 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119964 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119965 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",92.37 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119966 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119967 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",24.44 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119968 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",27.16 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119969 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.04 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119970 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.03 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119971 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.65 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119972 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119973 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119974 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",114.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119975 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",79.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119976 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",17.84 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119977 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",26.72 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119978 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.08 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119979 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.62 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119980 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.80 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119981 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.47 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119982 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.37 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119983 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.76 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119984 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",20.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119985 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",26.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119986 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.29 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119987 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",103.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119988 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",20.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119989 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119990 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.53 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119991 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",27.98 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119992 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",82.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119993 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",143.05 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119994 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.21 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119995 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.18 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119996 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.70 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119997 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.18 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119998 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.84 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +119999 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120000 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.35 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120001 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120002 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.42 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120003 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.22 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120004 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",34.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120005 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.97 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120006 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.24 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120007 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,CARBON MONOXIDE,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120008 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.12 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120009 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.67 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120010 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.54 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120011 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120012 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120013 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.15 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120014 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120015 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120016 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120017 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",87.71 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120018 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.05 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120019 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",6.25 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120020 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.32 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120021 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120022 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.75 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120023 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.91 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120024 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120025 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.65 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120026 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",43.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120027 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.41 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120028 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120029 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120030 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.20 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120031 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.10 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120032 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.99 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120033 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120034 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120035 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.59 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120036 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120037 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.36 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120038 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",4.17 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120039 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",66.56 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120040 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120041 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.69 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120042 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.06 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120043 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.19 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120044 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.85 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120045 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",107.13 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120046 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.21 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120047 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120048 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.56 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120049 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.50 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120050 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.29 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120051 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.36 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120052 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.52 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120053 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.23 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120054 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.28 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120055 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120056 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120057 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.58 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120058 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.00 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120059 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.26 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120060 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.72 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120061 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120062 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.73 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120063 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.77 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120064 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.96 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120065 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.23 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120066 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.86 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120067 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.02 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120068 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.37 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120069 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.86 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120070 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.68 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120071 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.26 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120072 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120073 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.87 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120074 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120075 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.72 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120076 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.78 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120077 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.88 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120078 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.21 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120079 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.60 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120080 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.51 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120081 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3.24 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120082 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.37 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120083 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120084 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.46 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120085 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.77 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120086 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.75 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120087 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.56 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120088 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120089 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.70 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120090 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.84 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120091 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120092 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120093 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.01 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120094 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.87 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120095 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.93 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120096 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1.89 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120097 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2.22 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120098 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.60 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120099 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.57 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120100 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.33 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120101 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.31 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120102 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.76 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120103 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.80 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120104 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.27 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120105 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.68 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120106 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.60 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120107 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.91 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120108 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.34 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120109 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.07 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120110 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.20 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120111 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Emission Factor for Typical Aircraft ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",0.20 ,kg/LTO ,Equation 3.6.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120114 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",730 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120115 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",770 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120116 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",960 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120117 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2230 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120118 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1860 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120119 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2020 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120120 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3370 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120121 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1860 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120122 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",680 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120123 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1260 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120124 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1460 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120125 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",870 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120126 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",780 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120127 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",720 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120128 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",780 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120129 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",880 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120130 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3210 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120131 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3600 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120132 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3510 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120133 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",3240 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120134 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1370 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120135 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1460 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120136 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1460 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120137 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1780 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120138 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1750 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120146 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",870 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120147 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",930 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120148 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1890 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120149 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2230 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120150 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",600 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120151 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",570 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120152 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",330 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120153 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",310 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120154 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",760 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120155 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",800 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120156 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",280 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120157 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",680 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120158 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",600 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120159 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",910 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120160 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",340 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120161 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",70 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120191 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2560 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120192 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2310 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120193 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1700 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120194 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",840 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120195 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2310 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120196 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",2310 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120197 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1010 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120422 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",200 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120423 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",200 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,FOI (The Swedish Defence Research Agency) Turboprop LTO Emissions database ,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120424 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1720 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120425 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,SULPHUR DIOXIDE (SO2+SO3),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,LTO Fuel Consumption ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",1510 ,kg/LTO ,Equation 3.6.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"ICAO (2004). ""Engine exhaust emissions data bank"" Issue 13 (Doc 9646), ICAO, Montreal, Canada. 1995. (Subsequent updates are available from the ICAO web site www.icao.int) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.9 ",IPCC  +,1A3a1 - International Aviation,1.A.3.a.i - International Aviation (International Bunkers),NITROGEN OXIDES (NO+NO2),,,,,,,,,,,,,,,, +,1A3a2 - Domestic,1.A.3.a.ii - Domestic Aviation,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,,,,,,,,,,,,,, +,,,METHANE,,,,,,,,,,,,,,,, +,,,CARBON MONOXIDE,,,,,,,,,,,,,,,, +,,,CARBON DIOXIDE,,,,,,,,,,,,,,,, +,,,NITROUS OXIDE,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +120476 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120477 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120478 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.6 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120479 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.9 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120480 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120481 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120482 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120483 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.6 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120484 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Data from SAGE model; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120485 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.9 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120486 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120487 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.7 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120488 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120489 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.7 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120490 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120491 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120492 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120493 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120494 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120495 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120496 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120497 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120498 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120499 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120500 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.3 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120501 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.3 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120502 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.7 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120503 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120504 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.9 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120505 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120506 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120507 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.7 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120508 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120509 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120510 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120511 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120512 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120513 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120514 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.6 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120515 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120516 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120517 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.9 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120518 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120519 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120520 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Data from SAGE model; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120521 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Data from SAGE model; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120522 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Data from SAGE model; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120523 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.6 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Average of the data from SAGE (Kim et al., 2005a and b; Malwitz et al., 2005) and AERO2k (Eyers et al, 2004); Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"".; Eyers, C.J., Norman, P., Plohr, M., Michot, S., Atkinson, K., and Christou, R.A., (2004). ""AERO2k Global aviation emissions inventories for 2002 and 2025."" QINEYIQ/04/01113 UK, December 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120524 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Average of the data from SAGE (Kim et al., 2005a and b; Malwitz et al., 2005) and AERO2k (Eyers et al, 2004); Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"".; Eyers, C.J., Norman, P., Plohr, M., Michot, S., Atkinson, K., and Christou, R.A., (2004). ""AERO2k Global aviation emissions inventories for 2002 and 2025."" QINEYIQ/04/01113 UK, December 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120525 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120526 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120527 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Kerosene ,Jet Kerosene ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120528 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120529 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A310 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120530 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A319 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.6 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120531 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A320 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.9 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120532 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A321 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",16.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120533 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A330-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120534 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A340-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120535 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A340-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.6 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120536 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, A340-500/600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Data from SAGE model; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120537 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 707 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",5.9 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120538 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 717 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120539 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 727-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.7 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120540 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 727-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120541 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-100/200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.7 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120542 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-300/400/500 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120543 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-600 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120544 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-700 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120545 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 737-800/900 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120546 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 747-100 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120547 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 747-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120548 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 747-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120549 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 747-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120550 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 757-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",11.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120551 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 757-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120552 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 767-200 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.3 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120553 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 767-300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.3 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120554 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 767-400 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.7 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120555 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, 777-200/300 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120556 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, DC-10 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.9 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120557 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, DC-8-50/60/70 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",10.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120558 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, DC-9 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120559 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, L-1011 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.7 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120560 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, MD-11 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",13.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120561 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, MD-80 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120562 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, MD-90 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120563 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, TU-134 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120564 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, TU-154-M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120565 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Large Commercial Aircraft, TU-154-B ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.1 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120566 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jets, RJ-RJ85 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.6 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120567 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, BAE 146 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120568 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, CRJ-100ER ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120569 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, ERJ-145 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.9 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120570 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, Fokker 100/70/28 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.4 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120571 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, BAC111 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120572 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, Dornier 328 Jet ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Data from SAGE model; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120573 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, Gulfstream IV ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.0 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Data from SAGE model; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120574 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jet, Gulfstream V ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",9.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Data from SAGE model; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"". ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120575 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Regional Jets, Yak-42M ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",15.6 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Average of the data from SAGE (Kim et al., 2005a and b; Malwitz et al., 2005) and AERO2k (Eyers et al, 2004); Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"".; Eyers, C.J., Norman, P., Plohr, M., Michot, S., Atkinson, K., and Christou, R.A., (2004). ""AERO2k Global aviation emissions inventories for 2002 and 2025."" QINEYIQ/04/01113 UK, December 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120576 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Low Thrust Jets (engines with thrust below 26.7kN), Cessna 525/560 ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",7.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,"Average of the data from SAGE (Kim et al., 2005a and b; Malwitz et al., 2005) and AERO2k (Eyers et al, 2004); Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Ruggiero, J., Waitz, I., Klima, K., Stouffer, V., Long, D., Kostiuk, P., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillett, W., (2005). ""SAGE: The system for assessing aviation`s global emissions"". FAA-EE-2005-01, (September 2005).; Kim, B., Fleming, G., Balasubramanian, S., Malwitz, A., Lee, J., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Global aviation emissions inventories for 2000 through 2004"". FAA-EE-2005-02 (September 2005).; Malwitz, A., Kim, B., Fleming, G., Lee, J., Balasubramanian, S., Waitz, I., Klima, K., Locke, M., Holsclaw, C., Morales, A., McQueen, E., Gillette, W., (2005), ""SAGE: Validation assessment, model assumptions and uncertainties FAA-EE-2005-03, (September 2005)"".; Eyers, C.J., Norman, P., Plohr, M., Michot, S., Atkinson, K., and Christou, R.A., (2004). ""AERO2k Global aviation emissions inventories for 2002 and 2025."" QINEYIQ/04/01113 UK, December 2004. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120577 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Turboprops, Beech King Air (Representative of Turboprop aircraft with shaft horsepower of up to 1000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",8.5 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120578 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Turboprops, DHC8-100 (Representative of Turboprop aircraft with shaft horsepower of 1000 to 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",12.8 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120579 ,1A3a - Civil Aviation,1.A.3.a - Civil Aviation,NITROGEN OXIDES (NO+NO2),Jet Gasoline ,Jet Gasoline ,2006 IPCC default ,NOx Emission Factor for Aircraft at Cruise Levels ,"Aircraft type: Turboprops, ATR72-500 (Representative of Turboprop aircraft with shaft horsepower of more than 2000 shp/engine) ",,,,"Fuel is referred to as ""jet fuel (jet kerosene and jet gasoline)"" in the 2006 IPCC Guidelines (Volume 2, Chapter 3, Section 3.6). ",14.2 ,g/kg fuel ,Equation 3.6.5 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,,,"2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 3.6.10 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120580 ,1B1a1 - Underground Mines,1.B.1.a.i.1 - Mining,METHANE,,,1996 & 2006 IPCC default ,Tier 1 Default Emission Factor for Underground Mining ,,Average mining depths: < 200 m (less than 200 m) ,Global average ,,,10 ,m^3/tonne of coal production ,"Equation 4.1.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 1 in Section 1.7.2.2 (page 1.105), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines; Expert judgement by the authors of Section 2.6 in the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (GPG2000) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.3, Page 4.12; IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (GPG2000), Section 2.6.1.2 (Pages 2.74-2.75) ",IPCC  +,,,,,,,,,,,,,,,,,,, +120581 ,1B1a1 - Underground Mines,1.B.1.a.i.1 - Mining,METHANE,,,1996 & 2006 IPCC default ,Tier 1 Default Emission Factor for Underground Mining ,,Average mining depths: > 400 m (greater than 400 m) ,Global average ,,,25 ,m^3/tonne of coal production ,"Equation 4.1.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 1 in Section 1.7.2.2 (page 1.105), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines; Expert judgement by the authors of Section 2.6 in the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (GPG2000) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.3, Page 4.12; IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (GPG2000), Section 2.6.1.2 (Pages 2.74-2.75) ",IPCC  +,,,,,,,,,,,,,,,,,,, +120582 ,1B1a1 - Underground Mines,1.B.1.a.i.1 - Mining,METHANE,,,1996 & 2006 IPCC default ,Tier 1 Default Emission Factor for Underground Mining ,,Average mining depths: 200 - 400 m ,Global average ,,,18 ,m^3/tonne of coal production ,"Equation 4.1.3 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 1 in Section 1.7.2.2 (page 1.105), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines; Expert judgement by the authors of Section 2.6 in the IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (GPG2000) ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.3, Page 4.12; IPCC Good Practice Guidance and Uncertainty Management in National Greenhouse Gas Inventories (GPG2000), Section 2.6.1.2 (Pages 2.74-2.75) ",IPCC  +,,,,,,,,,,,,,,,,,,, +120583 ,1B1a1 - Underground Mines,1.B.1.a.i.2 - Post-mining seam gas emissions,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Post-Mining Emissions from Underground Mines ,,Average mining depths: < 200 m (less than 200 m) ,Global average ,,,0.9 ,m^3/tonne of coal production ,"Equation 4.1.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 4 in Section 1.7.2.2 (page 1.110), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.4, Page 4.12 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120584 ,1B1a1 - Underground Mines,1.B.1.a.i.2 - Post-mining seam gas emissions,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Post-Mining Emissions from Underground Mines ,,Average mining depths: > 400 m (over 400 m) ,Global average ,,,4.0 ,m^3/tonne of coal production ,"Equation 4.1.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 4 in Section 1.7.2.2 (page 1.110), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.4, Page 4.12 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120585 ,1B1a1 - Underground Mines,1.B.1.a.i.2 - Post-mining seam gas emissions,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Post-Mining Emissions from Underground Mines ,,Average mining depths: 200 - 400 m ,Global average ,,,2.5 ,m^3/tonne of coal production ,"Equation 4.1.4 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 4 in Section 1.7.2.2 (page 1.110), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.4, Page 4.12 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120586 ,1B1a2 - Surface Mines,1.B.1.a.ii.1 - Mining,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Surface Mining ,,Average overburden depths: less than 25 m ,Global average ,,,0.3 ,m^3/tonne of coal production ,"Equation 4.1.7 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 2 in Section 1.7.2.2 (page 1.108), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.7, Page 4.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120587 ,1B1a2 - Surface Mines,1.B.1.a.ii.1 - Mining,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Surface Mining ,,Average overburden depths: over 50 m ,Global average ,,,2.0 ,m^3/tonne of coal production ,"Equation 4.1.7 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 2 in Section 1.7.2.2 (page 1.108), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.7, Page 4.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120588 ,1B1a2 - Surface Mines,1.B.1.a.ii.1 - Mining,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Surface Mining ,,Average overburden depths: 25 - 50 m ,Global average ,,,1.2 ,m^3/tonne of coal production ,"Equation 4.1.7 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 2 in Section 1.7.2.2 (page 1.108), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.7, Page 4.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120589 ,1B1a2 - Surface Mines,1.B.1.a.ii.2 - Post-mining seam gas emissions,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Surface Mining ,,Average overburden depths: less than 25 m ,Global average ,,,0 ,m^3/tonne of coal production ,"Equation 4.1.7 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 2 in Section 1.7.2.2 (page 1.108), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.7, Page 4.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120590 ,1B1a2 - Surface Mines,1.B.1.a.ii.2 - Post-mining seam gas emissions,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Surface Mining ,,Average overburden depths: over 50 m ,Global average ,,,0.2 ,m^3/tonne of coal production ,"Equation 4.1.7 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 2 in Section 1.7.2.2 (page 1.108), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.7, Page 4.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120591 ,1B1a2 - Surface Mines,1.B.1.a.ii.2 - Post-mining seam gas emissions,METHANE,,,2006 IPCC default ,Tier 1 Default Emission Factor for Surface Mining ,,Average overburden depths: 25 - 50 m ,Global average ,,,0.1 ,m^3/tonne of coal production ,"Equation 4.1.7 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories; Equation 2 in Section 1.7.2.2 (page 1.108), Volume 3 of the Revised 1996 IPCC Guidelines for National Greenhouse Gas Inventories ","1B1, Sheet 1 of 1 (underground and surface coal mining and handling), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines; Worksheet 1-6, Sheet 1 of 1, Vol.2 of the Revised 1996 IPCC Guidelines ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Equation 4.1.7, Page 4.19 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120592 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Percentage of Gassy Coal Mines (Default value for Tier 1 Abandoned Underground Mines) ,,Time interval when coal mines were abandoned: 1900 - 1925 ,,,,0 - 10 ,% ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120593 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Percentage of Gassy Coal Mines (Default value for Tier 1 Abandoned Underground Mines) ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,,3 - 50 ,% ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120594 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Percentage of Gassy Coal Mines (Default value for Tier 1 Abandoned Underground Mines) ,,Time interval when coal mines were abandoned: 1950 - 1976 ,,,,5 - 75 ,% ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120595 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Percentage of Gassy Coal Mines (Default value for Tier 1 Abandoned Underground Mines) ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,,8 - 100 ,% ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120596 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Percentage of Gassy Coal Mines (Default value for Tier 1 Abandoned Underground Mines) ,,Time interval when coal mines were abandoned: 2001 - Present ,,,,9 - 100 ,% ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.5 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120597 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1990 ,0.281 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120598 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1991 ,0.279 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120599 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1992 ,0.277 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120600 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1993 ,0.275 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120601 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1994 ,0.273 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120602 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1995 ,0.272 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120603 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1996 ,0.270 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120604 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1997 ,0.268 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120605 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1998 ,0.267 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120606 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 1999 ,0.265 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120607 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2000 ,0.264 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120608 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2001 ,0.262 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120609 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2002 ,0.261 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120610 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2003 ,0.259 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120611 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2004 ,0.258 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120612 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2005 ,0.256 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120613 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2006 ,0.255 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120614 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2007 ,0.253 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120615 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2008 ,0.252 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120616 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2009 ,0.251 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120617 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2010 ,0.249 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120618 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2011 ,0.248 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120619 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2012 ,0.247 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120620 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2013 ,0.246 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120621 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2014 ,0.244 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120622 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2015 ,0.243 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120623 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1901 - 1925 ,,,Inventory Year: 2016 ,0.242 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120624 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1990 ,0.343 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120625 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1991 ,0.340 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120626 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1992 ,0.336 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120627 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1993 ,0.333 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120628 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1994 ,0.330 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120629 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1995 ,0.327 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120630 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1996 ,0.324 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120631 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1997 ,0.322 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120632 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1998 ,0.319 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120633 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 1999 ,0.316 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120634 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2000 ,0.314 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120635 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2001 ,0.311 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120636 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2002 ,0.308 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120637 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2003 ,0.306 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120638 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2004 ,0.304 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120639 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2005 ,0.301 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120640 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2006 ,0.299 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120641 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2007 ,0.297 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120642 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2008 ,0.295 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120643 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2009 ,0.293 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120644 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2010 ,0.29 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120645 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2011 ,0.288 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120646 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2012 ,0.286 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120647 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2013 ,0.284 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120648 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2014 ,0.283 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120649 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2015 ,0.281 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120650 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1926 - 1950 ,,,Inventory Year: 2016 ,0.279 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120651 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1990 ,0.478 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120652 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1991 ,0.469 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120653 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1992 ,0.461 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120654 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1993 ,0.453 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120655 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1994 ,0.446 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120656 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1995 ,0.439 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120657 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1996 ,0.432 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120658 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1997 ,0.425 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120659 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1998 ,0.419 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120660 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 1999 ,0.413 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120661 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2000 ,0.408 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120662 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2001 ,0.402 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120663 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2002 ,0.397 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120664 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2003 ,0.392 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120665 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2004 ,0.387 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120666 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2005 ,0.382 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120667 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2006 ,0.378 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120668 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2007 ,0.373 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120669 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2008 ,0.369 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120670 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2009 ,0.365 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120671 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2010 ,0.361 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120672 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2011 ,0.357 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120673 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2012 ,0.353 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120674 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2013 ,0.35 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120675 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2014 ,0.346 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120676 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2015 ,0.343 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120677 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1951 - 1975 ,,,Inventory Year: 2016 ,0.340 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120678 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1990 ,1.561 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120679 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1991 ,1.334 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120680 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1992 ,1.183 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120681 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1993 ,1.072 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120682 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1994 ,0.988 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120683 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1995 ,0.921 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120684 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1996 ,0.865 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120685 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1997 ,0.818 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120686 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1998 ,0.778 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120687 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 1999 ,0.743 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120688 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2000 ,0.713 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120689 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2001 ,0.686 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120690 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2002 ,0.661 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120691 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2003 ,0.639 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120692 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2004 ,0.620 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120693 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2005 ,0.601 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120694 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2006 ,0.585 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120695 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2007 ,0.569 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120696 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2008 ,0.555 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120697 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2009 ,0.542 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120698 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2010 ,0.529 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120699 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2011 ,0.518 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120700 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2012 ,0.507 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120701 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2013 ,0.496 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120702 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2014 ,0.487 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120703 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2015 ,0.478 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120704 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 1976 - 2000 ,,,Inventory Year: 2016 ,0.469 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120705 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2001 ,5.735 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120706 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2002 ,2.397 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120707 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2003 ,1.762 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120708 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2004 ,1.454 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120709 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2005 ,1.265 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120710 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2006 ,1.133 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120711 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2007 ,1.035 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120712 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2008 ,0.959 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120713 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2009 ,0.896 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120714 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2010 ,0.845 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120715 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2011 ,0.801 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120716 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2012 ,0.763 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120717 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2013 ,0.73 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120718 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2014 ,0.701 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120719 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2015 ,0.675 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +120720 ,1B1c - Other (please specify),1.B.1.a.i.3 - Abandoned underground mines,METHANE,,,2006 IPCC default ,Tier 1 Abandoned Underground Mines Emission Factor ,,Time interval when coal mines were abandoned: 2001 - Present ,,,Inventory Year: 2016 ,0.652 ,million m^3/mine/year ,Equation 4.1.10 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,"1B1, Sheet 1 of 1 (Methane emissions from abandoned coal mines), in Annex 1 (page A1.11) of Volume 2, 2006 IPCC Guidelines for National Greenhouse Gas Inventories ","Expert judgement by the authors of Section 4.1, Volume 2 of the 2006 IPCC Guidelines ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2: Energy, Table 4.1.6 ",IPCC  +,,,,,,,,,,,,,,,,,,, +124617 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil and gas operations - Well drilling (flaring and venting) ,Well Drilling ,Flaring and venting ,Developed country ,,,0.000033 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124618 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well drilling (flaring and venting) ,Well Drilling ,Flaring and venting ,Developed country ,,,0.0001 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124619 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil and gas operations - Well drilling (flaring and venting) ,Well Drilling ,Flaring and venting ,Developed country ,,,0.00000087 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124620 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting) ,Well Testing ,Flaring and venting ,Developed country ,,,0.000051 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124621 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting) ,Well Testing ,Flaring and venting ,Developed country ,,,0.009 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124622 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting) ,Well Testing ,Flaring and venting ,Developed country ,,,0.000012 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124623 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting) ,Well Testing ,Flaring and venting ,Developed country ,,,0.000000068 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124624 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil and gas operations - Well servicing (flaring and venting) ,Well Servicing ,Flaring and venting ,Developed country ,,,0.00011 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124625 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well servicing (flaring and venting) ,Well Servicing ,Flaring and venting ,Developed country ,,,0.0000019 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124626 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil and gas operations - Well servicing (flaring and venting) ,Well Servicing ,Flaring and venting ,Developed country ,,,0.000017 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124627 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.2 - Production,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas production (fugitives) ,Gas production ,Fugitives ,Developed country ,,,0.00038-0.0023 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124628 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.2 - Production,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas production (fugitives) ,Gas production ,Fugitives ,Developed country ,,,0.000014-0.000082 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124629 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.2 - Production,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas production (fugitives) ,Gas production ,Fugitives ,Developed country ,,,0.000091-0.00055 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124630 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas production (flaring) ,Gas production ,Flaring ,Developed country ,,,0.00000076 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124631 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas production (flaring) ,Gas production ,Flaring ,Developed country ,,,0.0012 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124632 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas production (flaring) ,Gas production ,Flaring ,Developed country ,,,0.00000062 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124633 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from gas operations - Gas production (flaring) ,Gas production ,Flaring ,Developed country ,,,0.000000021 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124634 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, fugitives) ","Gas processing, Sweet Gas Plants ",Fugitives ,Developed country ,,,0.00048-0.000103 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124635 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, fugitives) ","Gas processing, Sweet Gas Plants ",Fugitives ,Developed country ,,,0.00015-0.00032 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124636 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, fugitives) ","Gas processing, Sweet Gas Plants ",Fugitives ,Developed country ,,,0.00022-0.00047 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124637 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring) ","Gas processing, Sweet Gas Plants ",Flaring ,Developed country ,,,0.0000012 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124638 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring) ","Gas processing, Sweet Gas Plants ",Flaring ,Developed country ,,,0.0018 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124639 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring) ","Gas processing, Sweet Gas Plants ",Flaring ,Developed country ,,,0.00000096 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124640 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring) ","Gas processing, Sweet Gas Plants ",Flaring ,Developed country ,,,0.000000025 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124641 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, fugitives) ","Gas processing, Sour Gas Plants ",Fugitives ,Developed country ,,,0.000097 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124642 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, fugitives) ","Gas processing, Sour Gas Plants ",Fugitives ,Developed country ,Sour Gas Plants ,,0.0000079 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124643 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, fugitives) ","Gas processing, Sour Gas Plants ",Fugitives ,Developed country ,Sour Gas Plants ,,0.000068 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124644 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring) ","Gas processing, Sour Gas Plants ",Flaring ,Developed country ,,,0.0000024 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124645 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring) ","Gas processing, Sour Gas Plants ",Flaring ,Developed country ,,,0.0036 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124646 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring) ","Gas processing, Sour Gas Plants ",Flaring ,Developed country ,,,0.0000019 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124647 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring) ","Gas processing, Sour Gas Plants ",Flaring ,Developed country ,,,0.000000054 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124648 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, raw CO2 venting) ","Gas processing, Sour Gas Plants ",Raw CO2 Venting ,Developed country ,,,0.063 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124649 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, fugitives) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Fugitives ,Developed country ,,,0.000011 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124650 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, fugitives) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Fugitives ,Developed country ,,,0.0000016 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124651 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, fugitives) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Fugitives ,Developed country ,,,0.000027 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124652 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Flaring ,Developed country ,,,0.000000072 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124653 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Flaring ,Developed country ,,,0.00011 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124654 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Flaring ,Developed country ,,,0.000000059 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124655 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Flaring ,Developed country ,,,0.000000012 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124656 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for fugitives) ,Gas processing ,Fugitives ,Developed country ,,Default Weighted Total ,0.00015-0.00103 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124657 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (Deafult weighted total for fugitives) ,Gas processing ,Fugitives ,Developed country ,,Default Weighted Total ,0.000012-0.00032 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124658 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for fugitives) ,Gas processing ,Fugitives ,Developed country ,,Default Weighted Total ,0.00014-0.00047 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124659 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring) ,Gas processing ,Flaring ,Developed country ,,Default Weighted Total ,0.000002 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124660 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring) ,Gas processing ,Flaring ,Developed country ,,Default Weighted Total ,0.003 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124661 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring) ,Gas processing ,Flaring ,Developed country ,,Default Weighted Total ,0.0000016 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124662 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring) ,Gas processing ,Flaring ,Developed country ,,Default Weighted Total ,0.000000033 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124663 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for Raw CO2 venting) ,Gas processing ,Raw CO2 Venting ,Developed country ,,Default Weighted Total ,0.04 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124664 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, fugitives) ","Gas Transmission & Storage, Transmission ",Fugitives ,Developed country ,,,0.000066-0.00048 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124665 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, fugitives) ","Gas Transmission & Storage, Transmission ",Fugitives ,Developed country ,,,0.00000088 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124666 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, fugitives) ","Gas Transmission & Storage, Transmission ",Fugitives ,Developed country ,,,0.000007 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124667 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, venting) ","Gas Transmission & Storage, Transmission ",Venting ,Developed country ,,,0.000044-0.00032 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124668 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, venting) ","Gas Transmission & Storage, Transmission ",Venting ,Developed country ,,,0.0000031 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124669 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, venting) ","Gas Transmission & Storage, Transmission ",Venting ,Developed country ,,,0.0000046 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124670 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (storage) ,"Gas Transmission & Storage, Storage ",,Developed country ,,,0.000025 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124671 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (storage) ,"Gas Transmission & Storage, Storage ",,Developed country ,,,0.00000011 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124672 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (storage) ,"Gas Transmission & Storage, Storage ",,Developed country ,,,0.00000036 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124673 ,1B2b3 - Other leakage,1.B.2.b.iii.5 - Distribution,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas distribution ,Gas Distribution ,,Developed country ,,,0.0011 ,Gg per 10^6 m^3 of utility sales ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124674 ,1B2b3 - Other leakage,1.B.2.b.iii.5 - Distribution,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas distribution ,Gas Distribution ,,Developed country ,,,0.000051 ,Gg per 10^6 m^3 of utility sales ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124675 ,1B2b3 - Other leakage,1.B.2.b.iii.5 - Distribution,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas distribution ,Gas Distribution ,,Developed country ,,,0.000016 ,Gg per 10^6 m^3 of utility sales ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124676 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Natural gas liquids transport (condensate) ,"Natural Gas Liquids Transport, Condensate ",,Developed country ,,,0.00011 ,Gg per 10^3 m^3 Condensate and Pentanes Plus ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124677 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Natural gas liquids transport (condensate) ,"Natural Gas Liquids Transport, Condensate ",,Developed country ,,,0.0000072 ,Gg per 10^3 m^3 Condensate and Pentanes Plus ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124678 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Natural gas liquids transport (condensate) ,"Natural Gas Liquids Transport, Condensate ",,Developed country ,,,0.0011 ,Gg per 10^3 m^3 Condensate and Pentanes Plus ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124679 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Natural gas liquids transport (LPG) ,"Natural Gas Liquids Transport, Liquefied Petroleum Gas ",,Developed country ,,,0.00043 ,Gg per 10^3 m^3 LPG ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124680 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from gas operations - Natural gas liquids transport (LPG) ,"Natural Gas Liquids Transport, Liquefied Petroleum Gas ",,Developed country ,,,0.0000000022 ,Gg per 10^3 m^3 LPG ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124681 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives onshore) ","Oil Production, Conventional Oil ",Fugitives (Onshore) ,Developed country ,,,0.0000015-0.0036 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124682 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives onshore) ","Oil Production, Conventional Oil ",Fugitives (Onshore) ,Developed country ,,,0.00000011-0.00026 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124683 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives onshore) ","Oil Production, Conventional Oil ",Fugitives (Onshore) ,Developed country ,,,0.0000018-0.0045 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124684 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives offshore) ","Oil Production, Conventional Oil ",Fugitives (Offshore) ,Developed country ,,,0.00000059 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124685 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives offshore) ","Oil Production, Conventional Oil ",Fugitives (Offshore) ,Developed country ,,,0.000000043 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124686 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives offshore) ","Oil Production, Conventional Oil ",Fugitives (Offshore) ,Developed country ,,,0.00000074 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124687 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, venting) ","Oil Production, Conventional Oil ",Venting ,Developed country ,,,0.00072 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124688 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, venting) ","Oil Production, Conventional Oil ",Venting ,Developed country ,,,0.000095 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124689 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (conventional oil, venting) ","Oil Production, Conventional Oil ",Venting ,Developed country ,,,0.00043 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124690 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring) ","Oil Production, Conventional Oil ",Flaring ,Developed country ,,,0.000025 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124691 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring) ","Oil Production, Conventional Oil ",Flaring ,Developed country ,,,0.041 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124692 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring) ","Oil Production, Conventional Oil ",Flaring ,Developed country ,,,0.000021 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124693 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring) ","Oil Production, Conventional Oil ",Flaring ,Developed country ,,,0.00000064 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124694 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, fugitives) ","Oil Production, Heavy Oil/Cold Bitumen ",Fugitives ,Developed country ,,,0.0079 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124695 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, fugitives) ","Oil Production, Heavy Oil/Cold Bitumen ",Fugitives ,Developed country ,,,0.00054 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124696 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, fugitives) ","Oil Production, Heavy Oil/Cold Bitumen ",Fugitives ,Developed country ,,,0.0029 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124697 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, venting) ","Oil Production, Heavy Oil/Cold Bitumen ",Venting ,Developed country ,,,0.017 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124698 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, venting) ","Oil Production, Heavy Oil/Cold Bitumen ",Venting ,Developed country ,,,0.0053 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124699 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, venting) ","Oil Production, Heavy Oil/Cold Bitumen ",Venting ,Developed country ,,,0.0027 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124700 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring) ","Oil Production, Heavy Oil/Cold Bitumen ",Flaring ,Developed country ,,,0.00014 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124701 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring) ","Oil Production, Heavy Oil/Cold Bitumen ",Flaring ,Developed country ,,,0.022 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124702 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring) ","Oil Production, Heavy Oil/Cold Bitumen ",Flaring ,Developed country ,,,0.000011 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124703 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring) ","Oil Production, Heavy Oil/Cold Bitumen ",Flaring ,Developed country ,,,0.00000046 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124704 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, fugitives) ","Oil Production, Thermal Oil Production ",Fugitives ,Developed country ,,,0.00018 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124705 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, fugitives) ","Oil Production, Thermal Oil Production ",Fugitives ,Developed country ,,,0.000029 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124706 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, fugitives) ","Oil Production, Thermal Oil Production ",Fugitives ,Developed country ,,,0.00023 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124707 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, venting) ","Oil Production, Thermal Oil Production ",Venting ,Developed country ,,,0.0035 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124708 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, venting) ","Oil Production, Thermal Oil Production ",Venting ,Developed country ,,,0.00022 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124709 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, venting) ","Oil Production, Thermal Oil Production ",Venting ,Developed country ,,,0.00087 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124710 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring) ","Oil Production, Thermal Oil Production ",Flaring ,Developed country ,,,0.000016 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124711 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring) ","Oil Production, Thermal Oil Production ",Flaring ,Developed country ,,,0.027 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124712 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring) ","Oil Production, Thermal Oil Production ",Flaring ,Developed country ,,,0.000013 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124713 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring) ","Oil Production, Thermal Oil Production ",Flaring ,Developed country ,,,0.00000024 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124714 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil production (synthetic crude from oilsands) ,"Oil Production, Synthetic Crude (from Oilsands) ",,Developed country ,,,0.0023 ,Gg per 10^3 m^3 synthetic crude production from oilsands ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124715 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil production (synthetic crude from oilsands) ,"Oil Production, Synthetic Crude (from Oilsands) ",,Developed country ,,,0.0009 ,Gg per 10^3 m^3 synthetic crude production from oilsands ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124716 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for fugitives) ,Oil Production ,Fugitives ,Developed country ,,,0.0022 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124717 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for fugitives) ,Oil Production ,Fugitives ,Developed country ,,,0.00028 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124718 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for fugitives) ,Oil Production ,Fugitives ,Developed country ,,,0.0031 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124719 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for venting) ,Oil Production ,Venting ,Developed country ,,,0.0087 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124720 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for venting) ,Oil Production ,Venting ,Developed country ,,,0.0018 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124721 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for venting) ,Oil Production ,Venting ,Developed country ,,,0.0016 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124722 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring) ,Oil Production ,Flaring ,Developed country ,,,0.000021 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124723 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxideemission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring) ,Oil Production ,Flaring ,Developed country ,,,0.034 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124724 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring) ,Oil Production ,Flaring ,Developed country ,,,0.000017 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124725 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring) ,Oil Production ,Flaring ,Developed country ,,,0.00000054 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124726 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil transport (pipelines) ,"Oil Transport, Pipelines ",,Developed country ,,,0.0000054 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124727 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil operations - Oil transport (pipelines) ,"Oil Transport, Pipelines ",,Developed country ,,,0.00000049 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124728 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil transport (pipelines) ,"Oil Transport, Pipelines ",,Developed country ,,,0.000054 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124729 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil transport (tanker trucks and rail cars, venting) ","Oil Transport, Tanker Trucks and Rail Cars ",Venting ,Developed country ,,,0.000025 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124730 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil transport (tanker trucks and rail cars, venting) ","Oil Transport, Tanker Trucks and Rail Cars ",Venting ,Developed country ,,,0.0000023 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124731 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil transport (tanker trucks and rail cars, venting) ","Oil Transport, Tanker Trucks and Rail Cars ",Venting ,Developed country ,,,0.00025 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124732 ,1B2a4 - Refining/Storage,1.B.2.a.iii.4 - Refining,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil refining ,Oil Refining ,,Developed country ,,,0.0000026-0.000041 ,Gg per 10^3 m^3 oil refined ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124733 ,1B2a4 - Refining/Storage,1.B.2.a.iii.4 - Refining,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil refining ,Oil Refining ,,Developed country ,,,0.0013 ,Gg per 10^3 m^3 oil refined ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124734 ,1B2a5 - Distribution of Oil Products,1.B.2.a.iii.5 - Distribution of oil products,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Refined product distribution (gasoline) ,"Refined Product Destribution, Gasoline ",,Developed country ,,,0.0022 ,Gg per 10^3 m^3 product distributed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"American Petroleum Institute. 2004. Compendium of Greenhouse Gas Emissions Estimation Methodologies for the Oil and Gas Industry. Washington, DC; Canadian Association of Petroleum Producers (1999). CH4 and VOC Emissions From The Canadian Upstream Oil and Gas Industry. Volumes 1 to 4. Calgary, AB; Canadian Association of Petroleum Producers (2004). A National Inventory of Greenhouse Gas (GHG), Criteria Air Contaminant (CAC) and Hydrogen Sulphide (H2S) Emissions by the Upstream Oil and Gas Industry. Volumes 1 to 5. Calgary, AB; Gas Research Institute and US Environmental Protection Agency (1996). Methane Emissions from the Natural gas Industry. Volumes 1 to 15. Chicago, IL; US EPA (1999). Methane Emissions from the U.S. Petroleum Industry. EPA Report No. EPA-600/R-99-010, p. 158, prepared by Radian International LLC for United States Environmental Protection Agency, Office of Research and Development. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.4 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124735 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil and gas operations - Well drilling (flaring and venting) ,Well Drilling ,Flaring and venting ,Developing country and country with economy in transition ,,,0.000033-0.00056 ,Gg per well drilled ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124736 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well drilling (flaring and venting) ,Well Drilling ,Flaring and venting ,Developing country and country with economy in transition ,,,0.0001-0.0017 ,Gg per well drilled ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124737 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil and gas operations - Well drilling (flaring and venting) ,Well Drilling ,Flaring and venting ,Developing country and country with economy in transition ,,,0.00000087-0.000015 ,Gg per well drilled ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124738 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting) ,Well Testing ,Flaring and venting ,Developing country and country with economy in transition ,,,0.000051-0.00085 ,Gg per well drilled ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124739 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting) ,Well Testing ,Flaring and venting ,Developing country and country with economy in transition ,,,0.009-0.15 ,Gg per well drilled ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124740 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting) ,Well Testing ,Flaring and venting ,Developing country and country with economy in transition ,,,0.000012-0.0002 ,Gg per well drilled ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124741 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from oil and gas operations - Well testing (flaring and venting) ,Well Testing ,Flaring and venting ,Developing country and country with economy in transition ,,,0.000000068-0.0000011 ,Gg per well drilled ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124742 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil and gas operations - Well servicing (flaring and venting) ,Well Servicing ,Flaring and venting ,Developing country and country with economy in transition ,,,0.00011-0.0018 ,Gg/yr per producing or capable well ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124743 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil and gas operations - Well servicing (flaring and venting) ,Well Servicing ,Flaring and venting ,Developing country and country with economy in transition ,,,0.0000019-0.00032 ,Gg/yr per producing or capable well ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124744 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil and gas operations - Well servicing (flaring and venting) ,Well Servicing ,Flaring and venting ,Developing country and country with economy in transition ,,,0.000017-0.00028 ,Gg/yr per producing or capable well ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,, +124745 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.2 - Production,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas production (fugitives) ,Gas production ,Fugitives ,Developing country and country with economy in transition ,,,0.00038-0.024 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124746 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.2 - Production,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas production (fugitives) ,Gas production ,Fugitives ,Developing country and country with economy in transition ,,,0.000014-0.00018 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124747 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.2 - Production,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas production (fugitives) ,Gas production ,Fugitives ,Developing country and country with economy in transition ,,,0.000091-0.0012 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124748 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas production (flaring) ,Gas production ,Flaring ,Developing country and country with economy in transition ,,,0.00000076-0.000001 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124749 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas production (flaring) ,Gas production ,Flaring ,Developing country and country with economy in transition ,,,0.0012-0.0016 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124750 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas production (flaring) ,Gas production ,Flaring ,Developing country and country with economy in transition ,,,0.00000062-0.00000085 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124751 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from gas operations - Gas production (flaring) ,Gas production ,Flaring ,Developing country and country with economy in transition ,,,0.000000021-0.000000029 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124752 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, fugitives) ","Gas processing, Sweet Gas Plants ",Fugitives ,Developing country and country with economy in transition ,,,0.00048-0.0011 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124753 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, fugitives) ","Gas processing, Sweet Gas Plants ",Fugitives ,Developing country and country with economy in transition ,,,0.00015-0.00035 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124754 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, fugitives) ","Gas processing, Sweet Gas Plants ",Fugitives ,Developing country and country with economy in transition ,,,0.00022-0.00051 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124755 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring) ","Gas processing, Sweet Gas Plants ",Flaring ,Developing country and country with economy in transition ,,,0.0000012-0.0000016 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124756 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring) ","Gas processing, Sweet Gas Plants ",Flaring ,Developing country and country with economy in transition ,,,0.0018-0.0025 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124757 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring) ","Gas processing, Sweet Gas Plants ",Flaring ,Developing country and country with economy in transition ,,,0.00000096-0.0000013 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124758 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (sweet gas plants, flaring) ","Gas processing, Sweet Gas Plants ",Flaring ,Developing country and country with economy in transition ,,,0.000000025-0.000000034 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124759 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, fugitives) ","Gas processing, Sour Gas Plants ",Fugitives ,Developing country and country with economy in transition ,,,0.000097-0.00022 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124760 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, fugitives) ","Gas processing, Sour Gas Plants ",Fugitives ,Developing country and country with economy in transition ,,,0.0000079-0.000018 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124761 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, fugitives) ","Gas processing, Sour Gas Plants ",Fugitives ,Developing country and country with economy in transition ,,,0.000068-0.00016 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124762 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring) ","Gas processing, Sour Gas Plants ",Flaring ,Developing country and country with economy in transition ,,,0.0000024-0.0000033 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124763 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring) ","Gas processing, Sour Gas Plants ",Flaring ,Developing country and country with economy in transition ,,,0.0036-0.0049 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124764 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring) ","Gas processing, Sour Gas Plants ",Flaring ,Developing country and country with economy in transition ,,,0.0000019-0.0000026 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124765 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, flaring) ","Gas processing, Sour Gas Plants ",Flaring ,Developing country and country with economy in transition ,,,0.000000054-0.000000074 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124766 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (sour gas plants, raw CO2 venting) ","Gas processing, Sour Gas Plants ",Raw CO2 Venting ,Developing country and country with economy in transition ,,,0.063-0.15 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124767 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, fugitives) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Fugitives ,Developing country and country with economy in transition ,,,0.000011-0.000025 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124768 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, fugitives) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Fugitives ,Developing country and country with economy in transition ,,,0.0000016-0.0000037 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124769 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, fugitives) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Fugitives ,Developing country and country with economy in transition ,,,0.000027-0.0000062 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124770 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Flaring ,Developing country and country with economy in transition ,,,0.000000072-0.000000099 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124771 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Flaring ,Developing country and country with economy in transition ,,,0.00011-0.00015 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124772 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Flaring ,Developing country and country with economy in transition ,,,0.000000059-0.000000081 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124773 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (deep-cut extraction plants, flaring) ","Gas processing, Deep-cut Extraction Plants (Straddle Plants) ",Flaring ,Developing country and country with economy in transition ,,,0.000000012-0.000000081 ,Gg per 10^6 m^3 raw gas feed ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124774 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for fugitives) ,Gas processing ,Fugitives ,Developing country and country with economy in transition ,,,0.00015-0.00035 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124775 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (Deafult weighted total for fugitives) ,Gas processing ,Fugitives ,Developing country and country with economy in transition ,,,0.000012-0.000028 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124776 ,1B2b3 - Other leakage,1.B.2.b.iii.3 - Processing,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for fugitives) ,Gas processing ,Fugitives ,Developing country and country with economy in transition ,,,0.00014-0.00032 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124777 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring) ,Gas processing ,Flaring ,Developing country and country with economy in transition ,,,0.000002-0.0000028 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124778 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring) ,Gas processing ,Flaring ,Developing country and country with economy in transition ,,,0.003-0.0041 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124779 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring) ,Gas processing ,Flaring ,Developing country and country with economy in transition ,,,0.0000016-0.0000022 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124780 ,1B2b3 - Other leakage,1.B.2.b.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for flaring) ,Gas processing ,Flaring ,Developing country and country with economy in transition ,,,0.000000033-0.000000045 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124781 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from gas operations - Gas processing (Default weighted total for Raw CO2 venting) ,Gas processing ,Raw CO2 Venting ,Developing country and country with economy in transition ,,,0.04-0.095 ,Gg per 10^6 m^3 gas production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124782 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, fugitives) ","Gas Transmission & Storage, Transmission ",Fugitives ,Developing country and country with economy in transition ,,,0.000166-0.0011 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124783 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, fugitives) ","Gas Transmission & Storage, Transmission ",Fugitives ,Developing country and country with economy in transition ,,,0.00000088-0.000002 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124784 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, fugitives) ","Gas Transmission & Storage, Transmission ",Fugitives ,Developing country and country with economy in transition ,,,0.000007-0.000016 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124785 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, venting) ","Gas Transmission & Storage, Transmission ",Venting ,Developing country and country with economy in transition ,,,0.000044-0.00074 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124786 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, venting) ","Gas Transmission & Storage, Transmission ",Venting ,Developing country and country with economy in transition ,,,0.0000031-0.0000073 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124787 ,1B2b3 - Other leakage,1.B.2.b.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (transmission, venting) ","Gas Transmission & Storage, Transmission ",Venting ,Developing country and country with economy in transition ,,,0.0000046-0.000011 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124788 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (storage) ,"Gas Transmission & Storage, Storage ",,Developing country and country with economy in transition ,,,0.000025-0.000058 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124789 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (storage) ,"Gas Transmission & Storage, Storage ",,Developing country and country with economy in transition ,,,0.00000011-0.00000026 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124790 ,1B2b2 - Transmission/Distribution,1.B.2.b.iii.4 - Transmission and Storage,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas Transmission & Storage (storage) ,"Gas Transmission & Storage, Storage ",,Developing country and country with economy in transition ,,,0.00000036-0.00000083 ,Gg per 10^6 m^3 of marketable gas ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124791 ,1B2b3 - Other leakage,1.B.2.b.iii.5 - Distribution,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Gas distribution ,Gas Distribution ,,Developing country and country with economy in transition ,,,0.0011-0.0025 ,Gg per 10^6 m^3 of utility sales ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124792 ,1B2b3 - Other leakage,1.B.2.b.iii.5 - Distribution,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Gas distribution ,Gas Distribution ,,Developing country and country with economy in transition ,,,0.000051-0.00014 ,Gg per 10^6 m^3 of utility sales ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124793 ,1B2b3 - Other leakage,1.B.2.b.iii.5 - Distribution,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Gas distribution ,Gas Distribution ,,Developing country and country with economy in transition ,,,0.000016-0.000036 ,Gg per 10^6 m^3 of utility sales ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124794 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from gas operations - Natural gas liquids transport (condensate) ,"Natural Gas Liquids Transport, Condensate ",,Developing country and country with economy in transition ,,,0.00011 ,Gg per 10^3 m^3 Condensate and Pentanes Plus ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124795 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Natural gas liquids transport (condensate) ,"Natural Gas Liquids Transport, Condensate ",,Developing country and country with economy in transition ,,,0.0000072 ,Gg per 10^3 m^3 Condensate and Pentanes Plus ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124796 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from gas operations - Natural gas liquids transport (condensate) ,"Natural Gas Liquids Transport, Condensate ",,Developing country and country with economy in transition ,,,0.0011 ,Gg per 10^3 m^3 Condensate and Pentanes Plus ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124797 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from gas operations - Natural gas liquids transport (LPG) ,"Natural Gas Liquids Transport, Liquefied Petroleum Gas ",,Developing country and country with economy in transition ,,,0.00043 ,Gg per 10^3 m^3 LPG ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124798 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from gas operations - Natural gas liquids transport (LPG) ,"Natural Gas Liquids Transport, Liquefied Petroleum Gas ",,Developing country and country with economy in transition ,,,0.0000000022 ,Gg per 10^3 m^3 LPG ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 2 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124799 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives onshore) ","Oil Production, Conventional Oil ",Fugitives (Onshore) ,Developing country and country with economy in transition ,,,0.0000015-0.06 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124800 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives onshore) ","Oil Production, Conventional Oil ",Fugitives (Onshore) ,Developing country and country with economy in transition ,,,0.00000011-0.0043 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124801 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives onshore) ","Oil Production, Conventional Oil ",Fugitives (Onshore) ,Developing country and country with economy in transition ,,,0.0000018-0.075 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124802 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives offshore) ","Oil Production, Conventional Oil ",Fugitives (Offshore) ,Developing country and country with economy in transition ,,,0.00000059 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124803 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives offshore) ","Oil Production, Conventional Oil ",Fugitives (Offshore) ,Developing country and country with economy in transition ,,,0.000000043 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124804 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (conventional oil, fugitives offshore) ","Oil Production, Conventional Oil ",Fugitives (Offshore) ,Developing country and country with economy in transition ,,,0.00000074 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124805 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, venting) ","Oil Production, Conventional Oil ",Venting ,Developing country and country with economy in transition ,,,0.00072-0.00099 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124806 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, venting) ","Oil Production, Conventional Oil ",Venting ,Developing country and country with economy in transition ,,,0.000095-0.00013 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124807 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (conventional oil, venting) ","Oil Production, Conventional Oil ",Venting ,Developing country and country with economy in transition ,,,0.00043-0.00059 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124808 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring) ","Oil Production, Conventional Oil ",Flaring ,Developing country and country with economy in transition ,,,0.000025-0.000034 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124809 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring) ","Oil Production, Conventional Oil ",Flaring ,Developing country and country with economy in transition ,,,0.041-0.056 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124810 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring) ","Oil Production, Conventional Oil ",Flaring ,Developing country and country with economy in transition ,,,0.000021-0.000029 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124811 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (conventional oil, flaring) ","Oil Production, Conventional Oil ",Flaring ,Developing country and country with economy in transition ,,,0.00000064-0.00000088 ,Gg per 10^3 m^3 conventional oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124812 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, fugitives) ","Oil Production, Heavy Oil/Cold Bitumen ",Fugitives ,Developing country and country with economy in transition ,,,0.0079-0.13 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124813 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, fugitives) ","Oil Production, Heavy Oil/Cold Bitumen ",Fugitives ,Developing country and country with economy in transition ,,,0.00054-0.009 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124814 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, fugitives) ","Oil Production, Heavy Oil/Cold Bitumen ",Fugitives ,Developing country and country with economy in transition ,,,0.0029-0.048 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124815 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, venting) ","Oil Production, Heavy Oil/Cold Bitumen ",Venting ,Developing country and country with economy in transition ,,,0.017-0.023 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124816 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, venting) ","Oil Production, Heavy Oil/Cold Bitumen ",Venting ,Developing country and country with economy in transition ,,,0.0053-0.0073 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124817 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, venting) ","Oil Production, Heavy Oil/Cold Bitumen ",Venting ,Developing country and country with economy in transition ,,,0.0027-0.0037 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124818 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring) ","Oil Production, Heavy Oil/Cold Bitumen ",Flaring ,Developing country and country with economy in transition ,,,0.00014-0.00019 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124819 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring) ","Oil Production, Heavy Oil/Cold Bitumen ",Flaring ,Developing country and country with economy in transition ,Heavy Oil/Cold Bitumen ,,0.022-0.03 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124820 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring) ","Oil Production, Heavy Oil/Cold Bitumen ",Flaring ,Developing country and country with economy in transition ,,,0.000011-0.000015 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124821 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (heavy oil/cold bitumen, flaring) ","Oil Production, Heavy Oil/Cold Bitumen ",Flaring ,Developing country and country with economy in transition ,,,0.00000046-0.00000063 ,Gg per 10^3 m^3 heavy oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124822 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, fugitives) ","Oil Production, Thermal Oil Production ",Fugitives ,Developing country and country with economy in transition ,,,0.00018-0.003 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124823 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, fugitives) ","Oil Production, Thermal Oil Production ",Fugitives ,Developing country and country with economy in transition ,,,0.000029-0.00048 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124824 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, fugitives) ","Oil Production, Thermal Oil Production ",Fugitives ,Developing country and country with economy in transition ,,,0.00023-0.0038 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124825 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, venting) ","Oil Production, Thermal Oil Production ",Venting ,Developing country and country with economy in transition ,,,0.0035-0.0048 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124826 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, venting) ","Oil Production, Thermal Oil Production ",Venting ,Developing country and country with economy in transition ,,,0.00022-0.0003 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124827 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, venting) ","Oil Production, Thermal Oil Production ",Venting ,Developing country and country with economy in transition ,,,0.00087-0.0012 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124828 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring) ","Oil Production, Thermal Oil Production ",Flaring ,Developing country and country with economy in transition ,,,0.000016-0.000022 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124829 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring) ","Oil Production, Thermal Oil Production ",Flaring ,Developing country and country with economy in transition ,,,0.027-0.037 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124830 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring) ","Oil Production, Thermal Oil Production ",Flaring ,Developing country and country with economy in transition ,,,0.000013-0.000018 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124831 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,"Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (thermal oil production, flaring) ","Oil Production, Thermal Oil Production ",Flaring ,Developing country and country with economy in transition ,,,0.00000024-0.00000033 ,Gg per 10^3 m^3 thermal bitumen production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124832 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil production (synthetic crude from oilsands) ,"Oil Production, Synthetic Crude (from Oilsands) ",,Developing country and country with economy in transition ,,,0.0023-0.038 ,Gg per 10^3 m^3 synthetic crude production from oilsands ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124833 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil production (synthetic crude from oilsands) ,"Oil Production, Synthetic Crude (from Oilsands) ",,Developing country and country with economy in transition ,,,0.0009-0.015 ,Gg per 10^3 m^3 synthetic crude production from oilsands ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124834 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for fugitives) ,Oil Production ,Fugitives ,Developing country and country with economy in transition ,,,0.0022-0.037 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124835 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for fugitives) ,Oil Production ,Fugitives ,Developing country and country with economy in transition ,,,0.00028-0.0047 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124836 ,1B2a2 - Production,1.B.2.a.iii.2 - Production and Upgrading,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for fugitives) ,Oil Production ,Fugitives ,Developing country and country with economy in transition ,,,0.0031-0.052 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124837 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for venting) ,Oil Production ,Venting ,Developing country and country with economy in transition ,,,0.0087-0.012 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124838 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for venting) ,Oil Production ,Venting ,Developing country and country with economy in transition ,,,0.0018-0.0025 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124839 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for venting) ,Oil Production ,Venting ,Developing country and country with economy in transition ,,,0.0016-0.0022 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124840 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring) ,Oil Production ,Flaring ,Developing country and country with economy in transition ,,,0.000021-0.000029 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124841 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxideemission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring) ,Oil Production ,Flaring ,Developing country and country with economy in transition ,,,0.034-0.047 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124842 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring) ,Oil Production ,Flaring ,Developing country and country with economy in transition ,,,0.000017-2.3 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124843 ,1B2a6 - Other (please specify),1.B.2.a.ii - Flaring,NITROUS OXIDE,,,2006 IPCC default ,Nitrous oxide emission factor for fugitive emissions from oil operations - Oil production (Default weighted total for flaring) ,Oil Production ,Flaring ,Developing country and country with economy in transition ,,,0.00000054-0.00000074 ,Gg per 10^3 m^3 total oil production ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124844 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,METHANE,,,2006 IPCC default ,Methane emission factor for fugitive emissions from oil operations - Oil transport (pipelines) ,"Oil Transport, Pipelines ",,Developing country and country with economy in transition ,,,0.0000054 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124845 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,CARBON DIOXIDE,,,2006 IPCC default ,Carbon dioxide emission factor for fugitive emissions from oil operations - Oil transport (pipelines) ,"Oil Transport, Pipelines ",,Developing country and country with economy in transition ,,,0.00000049 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124846 ,1B2a3 - Transport,1.B.2.a.iii.3 - Transport,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,NMVOC emission factor for fugitive emissions from oil operations - Oil transport (pipelines) ,"Oil Transport, Pipelines ",,Developing country and country with economy in transition ,,,0.000054 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124847 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,METHANE,,,2006 IPCC default ,"Methane emission factor for fugitive emissions from oil operations - Oil transport (tanker trucks and rail cars, venting) ","Oil Transport, Tanker Trucks and Rail Cars ",Venting ,Developing country and country with economy in transition ,,,0.000025 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124848 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,CARBON DIOXIDE,,,2006 IPCC default ,"Carbon dioxide emission factor for fugitive emissions from oil operations - Oil transport (tanker trucks and rail cars, venting) ","Oil Transport, Tanker Trucks and Rail Cars ",Venting ,Developing country and country with economy in transition ,,,0.0000023 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, +124849 ,1B2a6 - Other (please specify),1.B.2.a.i - Venting,NON METHANE VOLATILE ORGANIC COMPOUNDS,,,2006 IPCC default ,"NMVOC emission factor for fugitive emissions from oil operations - Oil transport (tanker trucks and rail cars, venting) ","Oil Transport, Tanker Trucks and Rail Cars ",Venting ,Developing country and country with economy in transition ,,,0.00025 ,Gg per 10^3 m^3 oil transported by pipeline ,Equation 4.2.1 in Volume 2 of the 2006 IPCC Guidelines for National Greenhouse Gas Inventories ,Worksheet 1B.2 (sheet 1 of 2) ,"The factors presented in this table have been determined by setting the lower limit of the range for each category equal to at least the values published in Table 4.2.4 for North America. Otherwise, all presented values have been adapted from applicable data provided in the 1996 IPCC Guidelines and from limited measurement data available from more recent unpublished studies of natural gas systems in China, Romania and Uzbekistan. ","2006 IPCC Guidelines for National Greenhouse Gas Inventories, Volume 2, Chapter 4, Table 4.2.5 ",IPCC TFI TSU  +,,,,,,,,,,,,,,,,,,, \ No newline at end of file diff --git a/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/EFDB_output.xlsx b/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/EFDB_output.xlsx new file mode 100644 index 000000000..3867f8356 Binary files /dev/null and b/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/EFDB_output.xlsx differ diff --git a/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/README.md b/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/README.md new file mode 100644 index 000000000..e02a5f8d8 --- /dev/null +++ b/app/seed-data/formula_values/data_raw/EFDB_2006_IPCC_guidelines/README.md @@ -0,0 +1,23 @@ +# IPCC Emissions Factor Database (EFDB) + +Emission factors from the [2006 IPCC Guidelines for National Greenhouse Gas Inventories](https://www.ipcc-nggip.iges.or.jp/public/2006gl/index.html) were selected from the [emission factor database](https://www.ipcc-nggip.iges.or.jp/EFDB/main.php). + +**Date accessed**: 2023-09-05 + +**Publisher**: [IPCC](https://www.ipcc.ch/) + +**Data source**: [EFDB](https://www.ipcc-nggip.iges.or.jp/EFDB/main.php) + +**Copyright**: [copyright](https://www.ipcc.ch/copyright/) +>You may freely download and copy the material contained on this website for your personal, non-commercial use, without any right to resell or redistribute it or to compile or create derivative works there from, subject to more specific restrictions that may apply to specific materials. + +## How to access the data? +1. Access the [EFDB](https://www.ipcc-nggip.iges.or.jp/EFDB/main.php) +2. Click on `Basic Search` at the tope +3. Search for `"2006 IPCC Guidelines"` in the `Source of Data` +4. Click `Export to XLS` to save the data to an Excel file. + +Notes: [how to search the database](https://www.ipcc-nggip.iges.or.jp/EFDB/help.php) + +## Description +EFDB is a database on various parameters to be used in calculation of anthropogenic emissions by sources and removals by sinks of greenhouse gases. It covers not only the so-called "emission factors" but also the other relevant parameters. For convenience sake, however, the term "Emission Factor" or its abbreviation "EF" is sometimes used to represent parameters in this database generally. \ No newline at end of file diff --git a/app/seed-data/formula_values/scripts/EFDB_IPCC_Waste.py b/app/seed-data/formula_values/scripts/EFDB_IPCC_Waste.py new file mode 100644 index 000000000..5f30233e3 --- /dev/null +++ b/app/seed-data/formula_values/scripts/EFDB_IPCC_Waste.py @@ -0,0 +1,998 @@ +import csv +import duckdb +import math +import os +import pandas as pd +import numpy as np +from pathlib import Path +import re +import statistics +from utils import ( + make_dir, + write_dic_to_csv, + uuid_generate_v3, + uuid_generate_v4, + get_filename, + set_seed, + string_to_hash, +) + +if __name__ == "__main__": + # set random.seed so UUID is reproducible + #! assumes records always generated in same order + seed_string = get_filename() + seed_value = string_to_hash(seed_string) + set_seed(seed_value) + + # output directory + output_dir = "../data_processed/EFDB_2006_IPCC_guidelines/" + output_dir = os.path.abspath(output_dir) + make_dir(path=Path(output_dir).as_posix()) + + # raw data file path + input_fl = "../data_raw/EFDB_2006_IPCC_guidelines/EFDB_output.xlsx" + input_fl = os.path.abspath(input_fl) + + # ================================================================= + # Publisher + # ================================================================= + publisher_data = { + "name": "IPCC", + "URL": "https://www.ipcc.ch/", + } + publisher_data["publisher_id"] = uuid_generate_v3(name=publisher_data.get("name")) + + write_dic_to_csv(output_dir, "Publisher", publisher_data) + + # ================================================================= + # DataSource + # ================================================================= + datasource_data = { + "datasource_name": "IPCC", + "dataset_name": "IPCC Emission Factor Database (EFDB) [2006 IPCC Guidelines]", + "URL": "https://www.ipcc-nggip.iges.or.jp/EFDB/main.php", + "publisher_id": publisher_data.get("publisher_id"), + } + datasource_data["datasource_id"] = uuid_generate_v3( + name=datasource_data.get("dataset_name") + ) + + write_dic_to_csv(output_dir, "DataSource", datasource_data) + + # ================================================================= + # Formula Input Values + # ================================================================= + conn = duckdb.connect(':memory:') + + query = f""" + INSTALL spatial; + LOAD spatial; + + CREATE OR REPLACE TABLE waste_ef AS + SELECT "EF ID" AS ef_id, + REPLACE(REGEXP_REPLACE("IPCC 1996 Source/Sink Category", '\n', '|'), CHR(10), '|') AS ipcc_sector_multi, + REPLACE(REGEXP_REPLACE("Gas", '\n', '|'), CHR(10), '|') AS gas_multi, + "Fuel 1996" AS fuel_1996, + "Fuel 2006" AS fuel_2006, + "C pool" c_pool, + "Type of parameter" AS type_parameter, + Description, + "Technologies / Practices" AS technologies_paractises, + "Parameters / Conditions" AS parameters_conditions, + "Region / Regional Conditions" AS region, + "Abatement / Control Technologies" AS control_paractises, + "Other properties" AS properties, + Value AS emissionsfactor_value, + Unit AS emissionsfactor_units, + Equation AS ipcc_equation, + "IPCC Worksheet" as ipcc_worksheet, + "Technical Reference" as technical_reference, + "Source of data" as dataset_name, + "Data provider" AS data_source + FROM ST_READ('{input_fl}') + WHERE lower("IPCC 2006 Source/Sink Category") LIKE '%waste%' + AND regexp_matches("IPCC 1996 Source/Sink Category", '\n'); + + CREATE OR REPLACE TABLE waste_emissionfactor AS + WITH waste_ef_split AS ( + SELECT ef_id, + UNNEST(STRING_SPLIT(ipcc_sector_multi, '|')) AS ipcc_sector, + gas_multi, + fuel_1996, + fuel_2006, + c_pool, + type_parameter, + Description, + technologies_paractises, + parameters_conditions, + region, + control_paractises, + properties, + emissionsfactor_value, + emissionsfactor_units, + ipcc_equation, + data_source, + ipcc_worksheet, + technical_reference, + dataset_name + FROM waste_ef), + waste_ef_split_gas AS ( + SELECT ef_id, + ipcc_sector, + UNNEST(STRING_SPLIT(gas_multi, '|')) AS gas, + fuel_1996, + fuel_2006, + c_pool, + type_parameter, + Description, + technologies_paractises, + parameters_conditions, + region, + control_paractises, + properties, + emissionsfactor_value, + emissionsfactor_units, + ipcc_equation, + data_source, + ipcc_worksheet, + technical_reference, + dataset_name + FROM waste_ef_split + WHERE ipcc_sector != '') + SELECT ef_id, + ipcc_sector, + gas, + type_parameter, + description, + technologies_paractises, + parameters_conditions, + region, + control_paractises, + properties, + emissionsfactor_value, + emissionsfactor_units, + ipcc_equation, + data_source, + ipcc_worksheet, + technical_reference, + dataset_name, + trim(COALESCE(technologies_paractises, '') || ' ' || COALESCE(parameters_conditions,'') || '' || COALESCE(control_paractises,'') || ' '|| COALESCE(properties,'')) as emissionfactor_details + FROM waste_ef_split_gas + WHERE gas != ''; + + CREATE OR REPLACE TABLE country_region_codes AS + SELECT * FROM (VALUES + ('Austria', 'AT'), + ('Belgium', 'BE'), + ('Sweden', 'SE'), + ('United Kingdom of Great Britain and Northern Ireland', 'GB'), + ('Guatemala', 'GT'), + ('Malaysia', 'MY'), + ('Argentina', 'AR'), + ('Bulgaria', 'BG'), + ('Lithuania', 'LT'), + ('Canada', 'CA'), + ('Brazil', 'BR'), + ('Kuwait', 'KW'), + ('Spain', 'ES'), + ('India', 'IN'), + ('South Korea', 'KR'), + ('Thailand', 'TH'), + ('Japan', 'JP'), + ('Iraq', 'IQ'), + ('Egypt', 'EG'), + ('Iran', 'IR'), + ('Tunisia', 'TN'), + ('Nigeria', 'NG'), + ('South Africa', 'ZA'), + ('Rwanda', 'RW'), + ('Democratic Republic of the Congo', 'CD'), + ('Madagascar', 'MG'), + ('Finland', 'FI'), + ('France', 'FR'), + ('Italy', 'IT'), + ('The Netherlands', 'NL'), + ('Cyprus', 'CY'), + ('Russia', 'RU'), + ('United States of America', 'US'), + ('Singapore', 'SG'), + ('Zimbabwe', 'ZW'), + ('Mauritius', 'MU'), + ('Lebanon', 'LB'), + ('Honduras', 'HN'), + ('Dominican Republic', 'DO'), + ('Cambodia', 'KH'), + ('Kenya', 'KE'), + ('Chad', 'TD'), + ('Mali', 'ML'), + ('Niger', 'NE'), + ('Senegal', 'SN'), + ('United Arab Emirates', 'AE'), + ('Comoros', 'KM'), + ('Eswatini', 'SZ'), + ('Saint Lucia', 'LC'), + ('Saint Kitts and Nevis', 'KN'), + ('Antigua and Barbuda', 'AG'), + ('Jamaica', 'JM'), + ('Vanuatu', 'VU'), + ('Gabon', 'GA'), + ('Georgia', 'GE'), + ('Armenia', 'AM'), + ('Azerbaijan', 'AZ') + ) AS t (country_name, country_code); + + CREATE OR REPLACE TABLE waste_default_values AS + SELECT + ef_id, + ipcc_sector, + CASE + WHEN ipcc_sector = '6A - Solid Waste Disposal on Land' THEN 'Solid Waste' + WHEN ipcc_sector IN ('6B - Wastewater Handling', '6B2 - Domestic and Commercial Wastewater') THEN 'Wastewater' + WHEN ipcc_sector = '6B1 - Industrial Wastewater' THEN 'Wastewater' + WHEN ipcc_sector = '6C - Waste Incineration' THEN 'Waste Incineration' + END AS gpc_sector, + lower(gas) AS gas_name, + CASE + WHEN gas = 'METHANE' THEN 'CH4' + WHEN gas = 'NITROUS OXIDE' THEN 'N2O' + WHEN gas = 'CARBON DIOXIDE' THEN 'CO2' + END AS gas, + description AS description, + CASE + WHEN gpc_sector = 'Solid Waste' THEN + CASE + WHEN description LIKE '%DOCf%' OR description LIKE '%Fraction%DOC%' OR description LIKE '%DOC%fraction%' THEN 'DOCf' + WHEN description LIKE '%DDOCm%' THEN 'DDOCm' + WHEN description LIKE '%DOC%' AND lower(description) NOT LIKE '%fraction%' AND lower(description) NOT LIKE '%frction%' THEN 'DOC' + WHEN description LIKE '%MCF%' THEN 'MCF' + WHEN description LIKE '%fraction of methane%' THEN 'F' + WHEN description LIKE '%oxidation factor%' THEN 'OX' + WHEN description LIKE '%(k)%' THEN 'k' + ELSE NULL + END + WHEN gpc_sector LIKE '%Wastewater%' THEN + CASE + WHEN lower(description) LIKE '%wastewater generation%' THEN 'W_i' + WHEN lower(description) LIKE '%cod%' THEN 'COD_i' + WHEN lower(description) LIKE '% bo' THEN 'B0' + WHEN lower(description) LIKE '%mcf%' THEN 'MCF' + WHEN Description LIKE '%BOD%' THEN 'BOD' + ELSE NULL + END + END AS parameter_code, + CASE + WHEN gpc_sector = 'Solid Waste' THEN + CASE + WHEN (description LIKE '%MSW%' OR emissionsfactor_units like '%BOD%') THEN 'Domestic' + WHEN (lower(description) LIKE '%industrial%' OR description LIKE '%industry%' OR emissionsfactor_units like '%COD%') THEN 'Industrial' + WHEN description LIKE '%clinical%' THEN 'Clinical' + ELSE NULL + END + WHEN gpc_sector = 'Wastewater' THEN + CASE + WHEN (parameter_code = 'BOD' OR emissionsfactor_units like '%BOD%') THEN 'Domestic' + WHEN (parameter_code = 'COD_i' OR lower(description) LIKE '%industrial%' OR description LIKE '%industry%' OR emissionsfactor_units like '%COD%') THEN 'Industrial' + WHEN description LIKE '%clinical%' THEN 'Clinical' + ELSE NULL + END + ELSE NULL + END AS gpc_subsector, + type_parameter, + CASE + WHEN regexp_extract(technical_reference, '([0-9]{4})') = '' OR regexp_extract(technical_reference, '([0-9]{4})') IS NULL THEN regexp_extract(type_parameter, '([0-9]{4})') + ELSE regexp_extract(technical_reference, '([0-9]{4})') + END AS technical_reference_year, + CASE + WHEN parameter_code IN ('DOCf', 'DOC') THEN 'waste_form' + WHEN parameter_code IN ('MCF', 'OX') AND gpc_sector = 'Solid Waste' THEN 'treatment_type' + WHEN parameter_code = 'k' THEN 'climate' + WHEN parameter_code IN ('COD_i', 'W_i') THEN 'industry_type' + WHEN parameter_code = 'MCF' AND gpc_sector LIKE '%water%' THEN 'treatment_type' + ELSE NULL + END AS parameter_subcategory_type1, + CASE + WHEN parameter_code IN ('DOCf', 'DOC') THEN + CASE + WHEN lower(emissionfactor_details) LIKE '%wet waste%' OR emissionsfactor_units LIKE '%wet%' THEN 'wet waste' + WHEN lower(emissionfactor_details) LIKE '%dry waste%' OR emissionsfactor_units LIKE '%dry%' THEN 'dry waste' + ELSE 'unclassified' + END + WHEN parameter_code = 'MCF' AND gpc_sector = 'Solid Waste' THEN + CASE + WHEN lower(emissionfactor_details) LIKE '%managed%anaerobic%' THEN 'Managed – Anaerobic' + WHEN lower(emissionfactor_details) LIKE '%semi%aerobic%well%' THEN 'Managed Well – Semi-Aerobic' + WHEN lower(emissionfactor_details) LIKE '%semi%aerobic%poor%' THEN 'Managed Poorly – Semi-Aerobic' + WHEN lower(emissionfactor_details) LIKE '%active%aeration%poor%' THEN 'Managed Poorly – Active Aeration' + WHEN lower(emissionfactor_details) LIKE '%active%aeration%' THEN 'Managed Well – Active Aeration' + WHEN lower(emissionfactor_details) LIKE '%managed%greater%5%' OR lower(emissionfactor_details) LIKE '%unmanaged-deep%' THEN 'Unmanaged Waste Sites - Deep SWDS' + WHEN lower(emissionfactor_details) LIKE '%managed%less%5%' THEN 'Unmanaged Waste Sites - Shallow SWDS' + WHEN lower(emissionfactor_details) LIKE '%uncategorised%' OR lower(emissionfactor_details) LIKE '%uncategorized%' THEN 'Uncategorized Waste Sites' + ELSE 'Other' + END + WHEN parameter_code = 'OX' THEN + CASE + WHEN lower(emissionfactor_details) LIKE '%unmanaged%' THEN 'Unmanaged' + WHEN lower(emissionfactor_details) LIKE '%well-managed%' THEN 'Managed' + ELSE NULL + END + WHEN parameter_code = 'k' THEN + CASE + WHEN (emissionfactor_details LIKE '%< 1%' OR emissionfactor_details LIKE '%< 1000 mm%') AND lower(emissionfactor_details) LIKE '%dry%' THEN 'Temperate - Dry' + WHEN (emissionfactor_details LIKE '%< 1%' OR emissionfactor_details LIKE '%< 1000 mm%') AND lower(emissionfactor_details) LIKE '%wet%' THEN 'Temperate - Wet' + WHEN lower(emissionfactor_details) LIKE '%moist%' THEN 'Tropical - Moist' + WHEN (emissionfactor_details LIKE '%> 1%' OR emissionfactor_details LIKE '%> 1000 mm%') AND lower(emissionfactor_details) LIKE '%dry%' THEN 'Tropical - Dry' + WHEN lower(emissionfactor_details) LIKE '%dry%' THEN 'Dry' + WHEN lower(emissionfactor_details) LIKE '%wet%' THEN 'Wet' + END + WHEN parameter_code IN ('COD_i', 'W_i') THEN + CASE + WHEN lower(emissionfactor_details) LIKE '%starch%' THEN 'Starch Production' + WHEN lower(emissionfactor_details) LIKE '%leather%' THEN 'Leather Tanning' + WHEN lower(emissionfactor_details) LIKE '%potato%' THEN 'Potato Processing' + WHEN lower(emissionfactor_details) LIKE '%textile%' THEN 'Textiles' + WHEN lower(emissionfactor_details) LIKE '%vegetable oil%' THEN 'Vegetable Oils' + WHEN lower(emissionfactor_details) LIKE '%beer%' OR lower(emissionfactor_details) LIKE '%malt%' THEN 'Beer & Malt' + WHEN lower(emissionfactor_details) LIKE '%fish%' THEN 'Fish Processing' + WHEN lower(emissionfactor_details) LIKE '%plastics%' OR lower(emissionfactor_details) LIKE '%resins%' THEN 'Plastics & Resins' + WHEN lower(emissionfactor_details) LIKE '%sugar%' OR lower(emissionfactor_details) LIKE '%suger%' THEN 'Sugar Refining' + WHEN lower(emissionfactor_details) LIKE '%dairy%' THEN 'Dairy Products' + WHEN lower(emissionfactor_details) LIKE '%pulp & paper%' OR lower(emissionfactor_details) LIKE '%paper%' THEN 'Pulp & Paper' + WHEN lower(emissionfactor_details) LIKE '%soft drink%' THEN 'Soft Drinks' + WHEN lower(emissionfactor_details) LIKE '%apple%' THEN 'Apple Processing' + WHEN lower(emissionfactor_details) LIKE '%distilled%' OR lower(emissionfactor_details) LIKE '%ethanol%' THEN 'Distilled & Ethanol Beverages' + WHEN lower(emissionfactor_details) LIKE '%organic chemicals%' THEN 'Organic Chemicals' + WHEN lower(emissionfactor_details) LIKE '%alcohol%' THEN 'Alcohol Refining' + WHEN lower(emissionfactor_details) LIKE '%wine%' OR lower(emissionfactor_details) LIKE '%vinegar%' THEN 'Wine & Vinegar' + WHEN lower(emissionfactor_details) LIKE '%frozen food%' THEN 'Frozen Food Processing' + WHEN lower(emissionfactor_details) LIKE '%seasoning%' THEN 'Seasoning' + WHEN lower(emissionfactor_details) LIKE '%meat%' OR lower(emissionfactor_details) LIKE '%poultry%' THEN 'Meat & Poultry' + WHEN lower(emissionfactor_details) LIKE '%soap%' OR lower(emissionfactor_details) LIKE '%detergents%' THEN 'Soap & Detergents' + WHEN lower(emissionfactor_details) LIKE '%petroleum%' OR lower(emissionfactor_details) LIKE '%refineries%' THEN 'Petroleum Refining' + WHEN lower(emissionfactor_details) LIKE '%fruits%' OR lower(emissionfactor_details) LIKE '%vegetables%' OR lower(emissionfactor_details) LIKE '%cannery%' THEN 'Fruits & Vegetables Processing' + WHEN lower(emissionfactor_details) LIKE '%paints%' THEN 'Paints' + WHEN lower(emissionfactor_details) LIKE '%coffee%' THEN 'Coffee' + WHEN lower(emissionfactor_details) LIKE '%iron%' OR lower(emissionfactor_details) LIKE '%steel%' THEN 'Iron & Steel Manufacturing' + WHEN lower(emissionfactor_details) LIKE '%drugs%' OR lower(emissionfactor_details) LIKE '%medicines%' OR lower(emissionfactor_details) LIKE '%pharmaceuticals%' THEN 'Pharmaceuticals' + WHEN lower(emissionfactor_details) LIKE '%petroleum production%' THEN 'Petroleum Production' + WHEN lower(emissionfactor_details) LIKE '%coke%' THEN 'Coke Production' + WHEN lower(emissionfactor_details) LIKE '%ice cream%' THEN 'Ice Cream Production' + WHEN lower(emissionfactor_details) LIKE '%animal feed%' THEN 'Animal Feed Production' + WHEN lower(emissionfactor_details) LIKE '%rubber%' THEN 'Rubber Manufacturing' + WHEN lower(emissionfactor_details) LIKE '%nitrogen%' THEN 'Nitrogen Fertiliser Production' + WHEN lower(emissionfactor_details) LIKE '%canneries%' THEN 'Canneries' + WHEN lower(emissionfactor_details) LIKE '%tannery%' THEN 'Tannery' + WHEN lower(emissionfactor_details) LIKE '%grapes%' THEN 'Grapes Processing' + WHEN lower(emissionfactor_details) LIKE '%flour%' THEN 'Flour Products' + WHEN lower(emissionfactor_details) LIKE '%chemical%' THEN 'Chemical Products' + WHEN lower(emissionfactor_details) LIKE '%citrus%' THEN 'Citrus Processing' + WHEN lower(emissionfactor_details) LIKE '%domestic wastewater%' THEN 'Domestic Wastewater Treatment' + WHEN lower(emissionfactor_details) LIKE '%petrochemical%' THEN 'Petrochemical Products' + WHEN lower(emissionfactor_details) LIKE '%food - oils%' THEN 'Food Oils' + WHEN lower(emissionfactor_details) LIKE '%other vegetable processing%' THEN 'Other Vegetable Processing' + WHEN lower(emissionfactor_details) LIKE '%non-citrus%' THEN 'Non-Citrus Processing' + ELSE 'Other' + END + WHEN parameter_code IN ('MCF') AND gpc_sector LIKE '%water%' THEN + CASE + WHEN lower(emissionfactor_details) LIKE '%flowing sewer%' THEN 'Flowing Sewer' + WHEN lower(emissionfactor_details) LIKE '%sea, river, lake discharge%' THEN 'Flowing Water' + WHEN lower(emissionfactor_details) LIKE '%stagnant sewer%' THEN 'Stagnant Sewer' + WHEN lower(emissionfactor_details) LIKE '%anaerobic reactor%' + OR lower(emissionfactor_details) LIKE '%a2o%' THEN 'Anaerobic Reactor' + WHEN lower(emissionfactor_details) LIKE '%septic%' THEN 'Septic Tank' + WHEN lower(emissionfactor_details) LIKE '%centralized% aerobic treatment%' + OR lower(emissionfactor_details) LIKE '%centralised% aerobic treatment%' THEN 'Centralized Aerobic Treatment Plant' + WHEN lower(emissionfactor_details) LIKE '%anaerobic shallow lagoon%' + OR lower(emissionfactor_details) LIKE '%facultative lagoons%' THEN 'Anaerobic Shallow Lagoon' + WHEN lower(emissionfactor_details) LIKE '%bardenpho%' THEN 'Bardenpho Treatment' + WHEN lower(emissionfactor_details) LIKE '%biological nutrient removal%' THEN 'Biological Nutrient Removal' + WHEN lower(emissionfactor_details) LIKE '%latrine%' THEN 'Latrine' + WHEN lower(emissionfactor_details) LIKE '%untreated%' THEN 'Untreated System' + WHEN lower(emissionfactor_details) LIKE '%treated anaerobic%' + OR lower(emissionfactor_details) LIKE '%anaerobic digester%' + OR lower(emissionfactor_details) LIKE '%anaerobic shallow lagoon%' + OR lower(emissionfactor_details) LIKE '%anaerobic deep lagoon%' THEN 'Anaerobic Treatment' + WHEN lower(emissionfactor_details) LIKE '%treated aerobic%' + OR lower(emissionfactor_details) LIKE '%well-managed aerobic%' THEN 'Aerobic Treatment Plant - Well Managed' + WHEN lower(emissionfactor_details) LIKE '%overloaded aerobic%' THEN 'Aerobic Treatment Plant - Overloaded' + WHEN lower(emissionfactor_details) LIKE '%discharge to aquatic%' + OR lower(emissionfactor_details) LIKE '%reservoir%' THEN 'Discharge to Aquatic Environments' + WHEN lower(emissionfactor_details) LIKE '%activated sludge%' THEN 'Activated Sludge' + ELSE 'Other' + END + END AS parameter_subcategory_typename1, + CASE + WHEN parameter_code IN ('DOCf', 'DOC', 'k') THEN 'waste_type' + ELSE NULL + END AS parameter_subcategory_type2, + CASE + WHEN parameter_code IN ('DOCf', 'DOC') THEN + CASE + WHEN lower(emissionfactor_details) LIKE '%food%' THEN 'Food Waste' + WHEN lower(emissionfactor_details) LIKE '%textile%' THEN 'Textile' + WHEN lower(emissionfactor_details) LIKE '%paper%' THEN 'Paper/Cardboard' + WHEN lower(emissionfactor_details) LIKE '%wood%' THEN 'Wood' + WHEN lower(emissionfactor_details) LIKE '%garden%' THEN 'Garden and Park Waste' + WHEN lower(emissionfactor_details) LIKE '%nappies%' THEN 'Nappies' + WHEN lower(emissionfactor_details) LIKE '%rubber%' THEN 'Rubber and Leather' + WHEN lower(emissionfactor_details) LIKE '%clinical%' THEN 'Clinical Waste' + ELSE NULL + END + WHEN parameter_code = 'k' THEN + CASE + WHEN lower(emissionfactor_details) LIKE '%slow%' THEN 'Slowly Degrading Waste' + WHEN lower(emissionfactor_details) LIKE '%rapid%' THEN 'Rapidly Degrading Waste' + WHEN lower(emissionfactor_details) LIKE '%bulk%' OR lower(emissionfactor_details) LIKE '%mixed%' THEN 'Bulk MSW or Industrial Waste' + ELSE NULL + END + ELSE NULL + END AS parameter_subcategory_typename2, + emissionsfactor_value, + emissionsfactor_units, + COALESCE(CASE + WHEN lower(region) LIKE '%latin america%' THEN 'Latin America' + WHEN lower(region) LIKE '%brazil%' THEN 'Brazil' + WHEN lower(region) LIKE '%chile%' THEN 'Chile' + WHEN lower(region) LIKE '%argentina%' THEN 'Argentina' + WHEN region IS NULL OR region = 'Region: Generic' THEN 'world' + ELSE NULL + END, b.country_name) AS region, + b.country_code as actor_id, + data_source, + technical_reference, + emissionfactor_details + FROM waste_emissionfactor a + LEFT JOIN country_region_codes b + ON a.region = b.country_name; + + CREATE OR REPLACE TABLE waste_default_values_rnk AS + SELECT + gpc_sector, + gas_name, + gas, + parameter_code, + gpc_subsector, + technical_reference_year, + parameter_subcategory_type1, + parameter_subcategory_typename1, + parameter_subcategory_type2, + parameter_subcategory_typename2, + emissionsfactor_value, + emissionsfactor_units, + region, + data_source, + actor_id, + ef_id AS ipcc_ef_id, + RANK() OVER ( + PARTITION BY + parameter_code, + parameter_subcategory_type1, + parameter_subcategory_typename1, + parameter_subcategory_type2, + parameter_subcategory_typename2 + ORDER BY + technical_reference_year DESC + ) AS rnk + FROM + waste_default_values + WHERE + parameter_code IS NOT NULL + AND (actor_id IS NOT NULL OR region IS NOT NULL) + ORDER BY + parameter_code, + parameter_subcategory_type1, + parameter_subcategory_typename1, + parameter_subcategory_type2, + parameter_subcategory_typename2, + technical_reference_year DESC; + + + CREATE OR REPLACE TABLE waste_formula_input_values AS + SELECT + gas, + parameter_code, + gpc_sector, + gpc_subsector, + technical_reference_year AS year, + CASE + WHEN REGEXP_MATCHES(emissionsfactor_value, '(\d+\.?\d*)\s*-\s*(\d+\.?\d*)') THEN + ROUND(( + NULLIF(SPLIT_PART(REGEXP_EXTRACT(emissionsfactor_value, '(\d+\.?\d*)\s*-\s*(\d+\.?\d*)'), '-', 1), '')::decimal + + NULLIF(SPLIT_PART(REGEXP_EXTRACT(emissionsfactor_value, '(\d+\.?\d*)\s*-\s*(\d+\.?\d*)'), '-', 2), '')::decimal + ) / 2.0::decimal, 3) + WHEN NOT REGEXP_MATCHES(emissionsfactor_value, '[a-zA-Z]') THEN + emissionsfactor_value::numeric + ELSE NULL + END AS formula_input_value, + CASE + WHEN parameter_code = 'B0' THEN 'Kg/Kg' + WHEN parameter_code = 'BOD' THEN emissionsfactor_units + WHEN parameter_code = 'COD_i' AND emissionsfactor_units LIKE '%kg%/m3%' THEN 'kg/m3' + WHEN parameter_code IN ('DDOCm', 'DOC', 'DOCf', 'F', 'OX', 'MCF') THEN 'fraction' + WHEN parameter_code = 'k' THEN 'year' + WHEN parameter_code = 'W_i' AND emissionsfactor_units LIKE '%m3%/tonne%' THEN 'm3/tonne' + WHEN parameter_code = 'W_i' AND emissionsfactor_units LIKE '%m3%/%m3%' THEN 'm3/m3' + ELSE NULL + END AS formula_input_units, + json_object( + parameter_subcategory_type1,parameter_subcategory_typename1, + parameter_subcategory_type2,parameter_subcategory_typename2 + ) AS metadata, + region, + actor_id, + 'IPCC' AS datasource + FROM + waste_default_values_rnk + WHERE + rnk = 1 + AND formula_input_units IS NOT NULL + ; + + + CREATE OR REPLACE TABLE waste_formula_input_description AS + SELECT *, + CASE + WHEN methodology LIKE '%industrial%' THEN 'Industrial' + WHEN methodology LIKE '%domestic%' THEN 'Domestic' + ELSE NULL + END AS gpc_subsector + FROM (VALUES + ('W-i', 'Wastewater', LOWER(REPLACE('wastewater generation', ' ', '-')), LOWER(REPLACE('Industrial Wastewater', ' ', '-'))), + ('COD-i', 'Wastewater', LOWER(REPLACE('chemical oxygen demand', ' ', '-')), LOWER(REPLACE('Industrial Wastewater', ' ', '-'))), + ('B0', 'Wastewater', LOWER(REPLACE('maximum methane producing capacity', ' ', '-')), LOWER(REPLACE('Industrial Wastewater', ' ', '-'))), + ('MCF', 'Wastewater', LOWER(REPLACE('methane correction factor', ' ', '-')), LOWER(REPLACE('Industrial Wastewater', ' ', '-'))), + ('BOD', 'Wastewater', LOWER(REPLACE('degradable organic component', ' ', '-')), LOWER(REPLACE('Domestic Wastewater', ' ', '-'))), + ('I', 'Wastewater', LOWER(REPLACE('correction factor for industrial BOD discharged in sewers', ' ', '-')), LOWER(REPLACE('Domestic Wastewater', ' ', '-'))), + ('B0', 'Wastewater', LOWER(REPLACE('maximum methane producing capacity', ' ', '-')), LOWER(REPLACE('Domestic Wastewater', ' ', '-'))), + ('MCF', 'Wastewater', LOWER(REPLACE('methane correction factor', ' ', '-')), LOWER(REPLACE('Domestic Wastewater', ' ', '-'))), + ('DOC', 'Solid Waste', LOWER(REPLACE('degradable organic carbon under aerobic conditions', ' ', '-')), LOWER(REPLACE('First Order Decay', ' ', '-'))), + ('DOCf', 'Solid Waste', LOWER(REPLACE('fraction of DOC decomposing under anaerobic conditions', ' ', '-')), LOWER(REPLACE('First Order Decay', ' ', '-'))), + ('MCF', 'Solid Waste', LOWER(REPLACE('methane correction factor', ' ', '-')), LOWER(REPLACE('First Order Decay', ' ', '-'))), + ('k', 'Solid Waste', LOWER(REPLACE('rate of reaction constant', ' ', '-')), LOWER(REPLACE('First Order Decay', ' ', '-'))), + ('OX(T)', 'Solid Waste', LOWER(REPLACE('oxidation factor in year T', ' ', '-')), LOWER(REPLACE('First Order Decay', ' ', '-'))), + ('DOC-i', 'Solid Waste', LOWER(REPLACE('fraction of degradable organic carbon', ' ', '-')), LOWER(REPLACE('Methane Commitment', ' ', '-'))), + ('MCF-j', 'Solid Waste', LOWER(REPLACE('methane correction factor', ' ', '-')), LOWER(REPLACE('Methane Commitment', ' ', '-'))), + ('F', 'Solid Waste', LOWER(REPLACE('fraction of methane in landfill gas', ' ', '-')), LOWER(REPLACE('Methane Commitment', ' ', '-'))), + ('OX', 'Solid Waste', LOWER(REPLACE('oxidation factor', ' ', '-')), LOWER(REPLACE('Methane Commitment', ' ', '-'))), + ('EF', 'Biological Treatment', LOWER(REPLACE('emission factor', ' ', '-')), LOWER(REPLACE('Biological Treatment', ' ', '-'))) + ) AS t (parameter, sector, parameter_name, methodology); + + + CREATE OR REPLACE TABLE waste_formula_input AS + WITH waste_formula_input AS ( + SELECT DISTINCT + b.gas, + b.parameter_code, + a.parameter_name, + a.methodology, + b.gpc_sector, + CASE WHEN b.gpc_sector = 'Solid Waste' THEN ARRAY['III.1.1', 'III.1.3'] + WHEN b.gpc_sector = 'Wastewater' THEN ARRAY['III.4.1', 'III.4.3'] + END AS gpc_refno, + b.gpc_subsector, + b.year, + b.formula_input_value, + b.formula_input_units, + b.metadata, + b.region, + actor_id, + b.datasource + FROM + waste_formula_input_description a + INNER JOIN + waste_formula_input_values b + ON + a.sector = b.gpc_sector + AND a.parameter = b.parameter_code + AND COALESCE(b.gpc_subsector, 'unk') = COALESCE(a.gpc_subsector, 'unk')) + SELECT DISTINCT gas, + parameter_code, + parameter_name, + methodology, + UNNEST(gpc_refno) AS gpc_refno, + null as year, + formula_input_value, + formula_input_units, + null as formula_name, + metadata, + region, + case when region = 'world' then 'world' + when region = 'Brazil' then 'BR' + else actor_id end as actor_id, + datasource + FROM waste_formula_input; + """ + conn.execute(query) + + df = conn.execute("SELECT * FROM waste_formula_input").fetchdf() + + query2 = f""" + CREATE OR REPLACE TABLE waste_ef AS + SELECT "EF ID" AS ef_id, + REPLACE(REGEXP_REPLACE("IPCC 1996 Source/Sink Category", '\n', '|'), CHR(10), '|') AS ipcc_sector_multi, + REPLACE(REGEXP_REPLACE("Gas", '\n', '|'), CHR(10), '|') AS gas_multi, + "Fuel 1996" AS fuel_1996, + "Fuel 2006" AS fuel_2006, + "C pool" c_pool, + "Type of parameter" AS type_parameter, + Description, + "Technologies / Practices" AS technologies_paractises, + "Parameters / Conditions" AS parameters_conditions, + "Region / Regional Conditions" AS region, + "Abatement / Control Technologies" AS control_paractises, + "Other properties" AS properties, + Value AS emissionsfactor_value, + Unit AS emissionsfactor_units, + Equation AS ipcc_equation, + "IPCC Worksheet" as ipcc_worksheet, + "Technical Reference" as technical_reference, + "Source of data" as dataset_name, + "Data provider" AS data_source + FROM ST_READ('{input_fl}') + WHERE lower("IPCC 2006 Source/Sink Category") LIKE '%waste%' + AND regexp_matches("IPCC 1996 Source/Sink Category", '\n'); + + CREATE OR REPLACE TABLE waste_emissionfactor AS + WITH waste_ef_split AS ( + SELECT ef_id, + UNNEST(STRING_SPLIT(ipcc_sector_multi, '|')) AS ipcc_sector, + gas_multi, + fuel_1996, + fuel_2006, + c_pool, + type_parameter, + Description, + technologies_paractises, + parameters_conditions, + region, + control_paractises, + properties, + emissionsfactor_value, + emissionsfactor_units, + ipcc_equation, + data_source, + ipcc_worksheet, + technical_reference, + dataset_name + FROM waste_ef), + waste_ef_split_gas AS ( + SELECT ef_id, + ipcc_sector, + UNNEST(STRING_SPLIT(gas_multi, '|')) AS gas, + fuel_1996, + fuel_2006, + c_pool, + type_parameter, + Description, + technologies_paractises, + parameters_conditions, + region, + control_paractises, + properties, + emissionsfactor_value, + emissionsfactor_units, + ipcc_equation, + data_source, + ipcc_worksheet, + technical_reference, + dataset_name + FROM waste_ef_split + WHERE ipcc_sector != '') + SELECT ef_id, + ipcc_sector, + gas, + type_parameter, + description, + technologies_paractises, + parameters_conditions, + region, + control_paractises, + properties, + emissionsfactor_value, + emissionsfactor_units, + ipcc_equation, + data_source, + ipcc_worksheet, + technical_reference, + dataset_name, + trim(COALESCE(Description, '') || COALESCE(technologies_paractises, '') || ' ' || COALESCE(parameters_conditions,'') || '' || COALESCE(control_paractises,'') || ' '|| COALESCE(properties,'')) as emissionfactor_details + FROM waste_ef_split_gas + WHERE gas != ''; + + CREATE OR REPLACE TABLE country_region_codes AS + SELECT * FROM (VALUES + ('Austria', 'AT'), + ('Belgium', 'BE'), + ('Sweden', 'SE'), + ('United Kingdom of Great Britain and Northern Ireland', 'GB'), + ('Guatemala', 'GT'), + ('Malaysia', 'MY'), + ('Argentina', 'AR'), + ('Bulgaria', 'BG'), + ('Lithuania', 'LT'), + ('Canada', 'CA'), + ('Brazil', 'BR'), + ('Kuwait', 'KW'), + ('Spain', 'ES'), + ('India', 'IN'), + ('South Korea', 'KR'), + ('Thailand', 'TH'), + ('Japan', 'JP'), + ('Iraq', 'IQ'), + ('Egypt', 'EG'), + ('Iran', 'IR'), + ('Tunisia', 'TN'), + ('Nigeria', 'NG'), + ('South Africa', 'ZA'), + ('Rwanda', 'RW'), + ('Democratic Republic of the Congo', 'CD'), + ('Madagascar', 'MG'), + ('Finland', 'FI'), + ('France', 'FR'), + ('Italy', 'IT'), + ('The Netherlands', 'NL'), + ('Cyprus', 'CY'), + ('Russia', 'RU'), + ('United States of America', 'US'), + ('Singapore', 'SG'), + ('Zimbabwe', 'ZW'), + ('Mauritius', 'MU'), + ('Lebanon', 'LB'), + ('Honduras', 'HN'), + ('Dominican Republic', 'DO'), + ('Cambodia', 'KH'), + ('Kenya', 'KE'), + ('Chad', 'TD'), + ('Mali', 'ML'), + ('Niger', 'NE'), + ('Senegal', 'SN'), + ('United Arab Emirates', 'AE'), + ('Comoros', 'KM'), + ('Eswatini', 'SZ'), + ('Saint Lucia', 'LC'), + ('Saint Kitts and Nevis', 'KN'), + ('Antigua and Barbuda', 'AG'), + ('Jamaica', 'JM'), + ('Vanuatu', 'VU'), + ('Gabon', 'GA'), + ('Georgia', 'GE'), + ('Armenia', 'AM'), + ('Azerbaijan', 'AZ') + ) AS t (country_name, country_code); + + CREATE OR REPLACE TABLE waste_default_values AS + WITH dmi AS ( + SELECT ef_id, + ipcc_sector, + 'Waste Incineration' AS sector, + CASE + WHEN gas = 'METHANE' THEN 'CH4' + WHEN gas = 'NITROUS OXIDE' THEN 'N2O' + WHEN gas = 'CARBON DIOXIDE' THEN 'CO2' + END AS gas, + CASE WHEN lower(Description) like '%dry%matter%' THEN 'dmi' + ELSE NULL END AS parameter_code, + CASE + WHEN regexp_extract(technical_reference, '([0-9]{4})') = '' OR regexp_extract(technical_reference, '([0-9]{4})') IS NULL THEN regexp_extract(type_parameter, '([0-9]{4})') + ELSE regexp_extract(technical_reference, '([0-9]{4})') + END AS technical_reference_year, + CASE WHEN lower(Description) like '%dry%matter%' THEN 'waste_type' + END AS parameter_subcategory_type1, + CASE WHEN lower(Description) like '%dry%matter%' THEN technologies_paractises + END AS parameter_subcategory_typename1, + COALESCE(b.country_code, 'world') as actor_id, + data_source, + emissionsfactor_value, + emissionsfactor_units, + technical_reference, + emissionfactor_details + FROM waste_emissionfactor a + LEFT JOIN country_region_codes b + ON a.region = b.country_name + WHERE ipcc_sector = '6C - Waste Incineration' + AND lower(a.Description) like '%dry%matter%'), + fraction_carbon AS ( + -- fraction of carbon + SELECT ef_id, + ipcc_sector, + 'Waste Incineration' AS sector, + CASE + WHEN gas = 'METHANE' THEN 'CH4' + WHEN gas = 'NITROUS OXIDE' THEN 'N2O' + WHEN gas = 'CARBON DIOXIDE' THEN 'CO2' + END AS gas, + CASE WHEN lower(a.Description) like '%fraction of carbon%' THEN 'CFi' + ELSE NULL END AS parameter_code, + CASE + WHEN regexp_extract(technical_reference, '([0-9]{4})') = '' OR regexp_extract(technical_reference, '([0-9]{4})') IS NULL THEN regexp_extract(type_parameter, '([0-9]{4})') + ELSE regexp_extract(technical_reference, '([0-9]{4})') + END AS technical_reference_year, + CASE WHEN lower(Description) like '%dry%matter%' THEN 'waste_type' + END AS parameter_subcategory_type1, + CASE WHEN lower(Description) like '%medical%' THEN 'Medical' + WHEN lower(Description) like '%paper%cardboard%' THEN 'Paper/cardboard' + WHEN lower(Description) like '%pet%bottles%' THEN 'PET bottles' + END AS parameter_subcategory_typename1, + COALESCE(b.country_code, region, 'world') as actor_id, + data_source, + emissionsfactor_value, + emissionsfactor_units, + technical_reference, + emissionfactor_details + FROM waste_emissionfactor a + LEFT JOIN country_region_codes b + ON a.region = b.country_name + WHERE ipcc_sector = '6C - Waste Incineration' + AND lower(a.Description) like '%fraction of carbon%'), + fossil_carbon AS ( + -- fossil carbon + SELECT ef_id, + ipcc_sector, + 'Waste Incineration' AS sector, + CASE + WHEN gas = 'METHANE' THEN 'CH4' + WHEN gas = 'NITROUS OXIDE' THEN 'N2O' + WHEN gas = 'CARBON DIOXIDE' THEN 'CO2' + END AS gas, + CASE WHEN lower(a.Description) like '%fossil%carbon%' THEN 'FCFi' + END AS parameter_code, + CASE + WHEN regexp_extract(technical_reference, '([0-9]{4})') = '' OR regexp_extract(technical_reference, '([0-9]{4})') IS NULL THEN regexp_extract(type_parameter, '([0-9]{4})') + ELSE regexp_extract(technical_reference, '([0-9]{4})') + END AS technical_reference_year, + 'waste_type' AS parameter_subcategory_type1, + CASE + WHEN emissionfactor_details ILIKE '%plastic%' THEN 'Plastics' + WHEN emissionfactor_details ILIKE '%other, inert waste%' THEN 'Other, inert waste' + WHEN emissionfactor_details ILIKE '%food%' THEN 'Food waste' + WHEN emissionfactor_details ILIKE '%wood%' THEN 'Wood' + WHEN emissionfactor_details ILIKE '%garden%' OR emissionfactor_details ILIKE '%park%' THEN 'Garden and Park waste' + WHEN emissionfactor_details ILIKE '%paper%' OR emissionfactor_details ILIKE '%cardboard%' THEN 'Paper/cardboard' + WHEN emissionfactor_details ILIKE '%rubber%' OR emissionfactor_details ILIKE '%leather%' THEN 'Rubber and Leather' + WHEN emissionfactor_details ILIKE '%textile%' THEN 'Textile' + WHEN emissionfactor_details ILIKE '%nappies%' OR emissionfactor_details ILIKE '%diaper%' THEN 'Nappies' + WHEN emissionfactor_details ILIKE '%metal%' THEN 'Metal' + ELSE 'Uncategorized' END parameter_subcategory_typename1, + COALESCE(b.country_code, region, 'world') as actor_id, + data_source, + emissionsfactor_value, + emissionsfactor_units, + technical_reference, + emissionfactor_details + FROM waste_emissionfactor a + LEFT JOIN country_region_codes b + ON a.region = b.country_name + WHERE ipcc_sector = '6C - Waste Incineration' + AND lower(a.Description) like '%fossil%carbon%'), + oxidation_factor AS ( + SELECT ef_id, + ipcc_sector, + 'Waste Incineration' AS sector, + CASE + WHEN gas = 'METHANE' THEN 'CH4' + WHEN gas = 'NITROUS OXIDE' THEN 'N2O' + WHEN gas = 'CARBON DIOXIDE' THEN 'CO2' + END AS gas, + CASE WHEN lower(a.Description) like '%fossil%carbon%' THEN 'OFi' + END AS parameter_code, + CASE + WHEN regexp_extract(technical_reference, '([0-9]{4})') = '' OR regexp_extract(technical_reference, '([0-9]{4})') IS NULL THEN regexp_extract(type_parameter, '([0-9]{4})') + ELSE regexp_extract(technical_reference, '([0-9]{4})') + END AS technical_reference_year, + 'waste_type' AS parameter_subcategory_type1, + CASE WHEN (emissionfactor_details LIKE '%MSW%' OR lower(emissionfactor_details) LIKE '%municipal%') THEN 'Muncipal Solid Waste' + WHEN lower(emissionfactor_details) LIKE '%sludge%' THEN 'Sludge' + WHEN lower(emissionfactor_details) LIKE '%industrial%' THEN 'Industrial' + WHEN lower(emissionfactor_details) LIKE '%clinical%' THEN 'Clinical' + WHEN lower(emissionfactor_details) LIKE '%sewage%' THEN 'Sewage' + WHEN lower(emissionfactor_details) LIKE '%hazardous%' THEN 'Hazardous' + END AS subcategory_typename1, + COALESCE(b.country_code, region, 'world') as actor_id, + data_source, + emissionsfactor_value, + emissionsfactor_units, + technical_reference, + emissionfactor_details + FROM waste_emissionfactor a + LEFT JOIN country_region_codes b + ON a.region = b.country_name + WHERE ipcc_sector = '6C - Waste Incineration' + AND lower(a.Description) like '%fossil%carbon%') + SELECT * + FROM dmi + UNION + SELECT * + FROM fraction_carbon + UNION + SELECT * + FROM fossil_carbon + UNION + SELECT * + FROM oxidation_factor + ; + + CREATE OR REPLACE TABLE waste_default_values_rnk AS + SELECT sector AS gpc_sector, + gas, + parameter_code, + technical_reference_year AS year, + COALESCE(parameter_subcategory_type1, 'waste_type') AS parameter_subcategory_type1, + parameter_subcategory_typename1, + CASE + WHEN REGEXP_MATCHES(emissionsfactor_value, '(\d+\.?\d*)\s*-\s*(\d+\.?\d*)') THEN + ROUND(( + NULLIF(SPLIT_PART(REGEXP_EXTRACT(emissionsfactor_value, '(\d+\.?\d*)\s*-\s*(\d+\.?\d*)'), '-', 1), '')::decimal + + NULLIF(SPLIT_PART(REGEXP_EXTRACT(emissionsfactor_value, '(\d+\.?\d*)\s*-\s*(\d+\.?\d*)'), '-', 2), '')::decimal + ) / 2.0::decimal, 3) + WHEN NOT REGEXP_MATCHES(emissionsfactor_value, '[a-zA-Z]') THEN + emissionsfactor_value::numeric + ELSE NULL + END AS formula_input_value, + '%' AS formula_input_units, + 'IPCC' AS datasource, + actor_id, + RANK() OVER(PARTITION BY sector, gas, parameter_code, parameter_subcategory_type1, parameter_subcategory_typename1, actor_id ORDER BY technical_reference_year DESC) AS RNK + FROM waste_default_values + WHERE (LENGTH(actor_id) = 2 OR actor_id = 'world') + AND formula_input_value > 0; + + CREATE TABLE waste_formula_input_incineration AS + WITH waste_formula_input AS ( + SELECT gas, + parameter_code, + CASE WHEN parameter_code = 'dmi' THEN 'dry-matter-content' + WHEN parameter_code = 'CFi' THEN 'fraction-of-carbon' + WHEN parameter_code = 'FCFi' THEN 'fraction-of-fossil-carbon' + WHEN parameter_code = 'OFi'THEN 'oxidation-factor' + ELSE NULL END AS parameter_name, + 'incineration-waste' AS methodology, + ARRAY['III.3.1', 'III.3.3'] AS gpc_refno, + year, + formula_input_value, + formula_input_units, + null as formula_name, + json_object( + parameter_subcategory_type1,parameter_subcategory_typename1) AS metadata, + NULL AS region, + actor_id, + datasource + FROM waste_default_values_rnk) + SELECT gas, + parameter_code, + parameter_name, + methodology, + UNNEST(gpc_refno) AS gpc_refno, + null as year, + formula_input_value, + formula_input_units, + formula_name, + metadata, + region, + actor_id, + datasource + FROM waste_formula_input; + """ + conn.execute(query2) + df2 = conn.execute("SELECT * FROM waste_formula_input_incineration").fetchdf() + + df = pd.concat([df, df2]).drop_duplicates().reset_index(drop=True) + + df["formulainput_id"] = df.apply(lambda row: uuid_generate_v4(), axis=1) + df.to_csv( + f"{output_dir}/FormulaInputs.csv", index=False + ) + + # ================================================================= + # DataSourceEmissionsFactor + # ================================================================= + datasource_emissions_factor_data = [ + { + "datasource_id": datasource_data.get("datasource_id"), + "formulainput_id": id, + } + for id in df["formulainput_id"] + ] + + write_dic_to_csv( + output_dir, "DataSourceFormulaInput", datasource_emissions_factor_data + ) diff --git a/app/seed-data/formula_values/scripts/utils.py b/app/seed-data/formula_values/scripts/utils.py new file mode 100644 index 000000000..2de05c967 --- /dev/null +++ b/app/seed-data/formula_values/scripts/utils.py @@ -0,0 +1,107 @@ +import csv +import hashlib +from pathlib import Path +import random +import sys +import uuid + + +def get_filename(): + """returns the file name""" + return Path(sys.argv[0]).name + + +def string_to_hash(string): + """generate reproducible hash from a string + + Parameters + ----------- + string: str + string you want to hash + + Returns + -------- + hash: int + a sha256 hash of the string + + Example + --------- + hash_value = string_to_hash('oef') + # ans: 41573739547895909249334528024575358810890736899293161579861901619623096988500 + """ + hasher = hashlib.sha256() + hasher.update(string.encode("utf-8")) + return int(hasher.hexdigest(), 16) + + +def set_seed(seed_value): + """sets seed of random number generator""" + random.seed(seed_value) + + +def uuid_generate_v4(): + """generate a version 4 UUID""" + return uuid.UUID(int=random.getrandbits(128), version=4) + + +def uuid_generate_v3(name, namespace=uuid.NAMESPACE_OID): + """generate a version 3 UUID from namespace and name""" + assert isinstance(name, str), "name needs to be a string" + assert isinstance(namespace, uuid.UUID), "namespace needs to be a uuid.UUID" + return str(uuid.uuid3(namespace, name)) + + +def write_dic_to_csv(output_dir, name, dic) -> None: + """writes dictionary to a csv + + Parameters + ----------- + output_dir: str + path where csv will be created + + name: str + the name of the CSV file without the .csv extension + + dic: List[Dict] or Dict + data to store in CSV + + Returns + -------- + None: + a csv is created at {output_dir}/{name}.csv + + Example + --------- + write_dic_to_csv('./', 'test', {'id': 1, 'value': 2}) + """ + if isinstance(dic, dict): + dic = [dic] + + with open(f"{output_dir}/{name}.csv", mode="w") as csvfile: + writer = csv.DictWriter(csvfile, fieldnames=dic[0].keys()) + writer.writeheader() + writer.writerows(dic) + + +def make_dir(path: str) -> None: + """Create a new directory at this given path if one does not exist already + + Parameters + ---------- + path: str + the path to the directory you want to create + + Returns + --------- + None: + + Example + -------- + make_dir('/path/to/new/directory') + """ + assert isinstance( + path, str + ), f"ERROR: the path must be a string; you passed a {type(path)}" + + # settings mimic "mkdir -p " + Path(path).mkdir(parents=True, exist_ok=True) diff --git a/app/seeders/20231114094254-emissions-factors.cjs b/app/seeders/20231114094254-emissions-factors.cjs index ca05c279e..c78cd95dc 100644 --- a/app/seeders/20231114094254-emissions-factors.cjs +++ b/app/seeders/20231114094254-emissions-factors.cjs @@ -6,10 +6,37 @@ const { bulkUpsert } = require("./util/util.cjs"); const folders = [ "EFDB_2006_IPCC_guidelines", - "EFDB_US", // "CarbonFootPrint_2023", ]; +const toJson = ({ + transformation_description, + dataset_description, + methodology_description, + dataset_name, + ...row +}) => { + const out = { ...row }; + + if (!!transformation_description) { + out.transformation_description = JSON.stringify({ + user: transformation_description, + }); + } + if (!!dataset_description) { + out.dataset_description = JSON.stringify({ user: dataset_description }); + } + if (!!methodology_description) { + out.methodology_description = JSON.stringify({ + user: methodology_description, + }); + } + if (!!dataset_name) { + out.dataset_name = JSON.stringify({ user: dataset_name }); + } + return out; +}; + async function parseFile(filename, folder) { const records = []; const parser = fs @@ -25,7 +52,7 @@ async function parseFile(filename, folder) { return records; } -/** @type {import('sequelize-cli').Migration} */ +/** @type {import("sequelize-cli").Migration} */ module.exports = { async up(queryInterface) { await queryInterface.sequelize.transaction(async (transaction) => { @@ -36,7 +63,7 @@ module.exports = { "DataSourceEmissionsFactor", folder, ); - + const methodologies = await parseFile("Methodology", folder); const emissionsFactorsRaw = await parseFile("EmissionsFactor", folder); const emissionsFactors = emissionsFactorsRaw.map((ef) => { const metadata = (ef.metadata ? ef.metadata : "") @@ -64,12 +91,20 @@ module.exports = { console.info("Finished adding publishers"); await bulkUpsert( queryInterface, - "DataSource", - dataSources, + "DataSourceI18n", + dataSources.map(toJson), "datasource_id", transaction, ); console.info("Finished adding data sources"); + await bulkUpsert( + queryInterface, + "Methodology", + methodologies, + "methodology_id", + transaction, + ); + console.info("Finished adding methodologies"); await bulkUpsert( queryInterface, "EmissionsFactor", @@ -106,7 +141,7 @@ module.exports = { const publisherIds = publishers.map((p) => p.publisher_id); await queryInterface.bulkDelete( - "DataSource", + "DataSourceI18n", { id: { [Sequelize.Op.in]: dataSourceIds } }, { transaction }, ); diff --git a/app/src/app/[lng]/[inventory]/InventoryCalculationTab.tsx b/app/src/app/[lng]/[inventory]/InventoryCalculationTab.tsx new file mode 100644 index 000000000..ced9deb1e --- /dev/null +++ b/app/src/app/[lng]/[inventory]/InventoryCalculationTab.tsx @@ -0,0 +1,165 @@ +"use client"; + +import { SectorCard } from "@/components/Cards/SectorCard"; +import { SegmentedProgress } from "@/components/SegmentedProgress"; +import { CircleIcon } from "@/components/icons"; +import { useTranslation } from "@/i18n/client"; +import { formatPercent } from "@/util/helpers"; +import { + InventoryProgressResponse, + InventoryResponse, + SectorProgress, +} from "@/util/types"; +import { + Box, + Center, + Heading, + Spinner, + Tag, + TagLabel, + TagLeftIcon, + Text, +} from "@chakra-ui/react"; +import { Trans } from "react-i18next/TransWithoutContext"; +import { TabHeader } from "@/app/[lng]/[inventory]/TabHeader"; +import { undefined } from "zod"; + +function sortSectors(a: SectorProgress, b: SectorProgress): number { + const refA = a.sector.referenceNumber; + const refB = b.sector.referenceNumber; + if (!refA || !refB) { + return 0; + } else if (refA < refB) { + return -1; + } else if (refA > refB) { + return 1; + } + return 0; +} + +const getSectorProgresses = ( + inventoryProgress: InventoryProgressResponse | undefined, +) => + inventoryProgress?.sectorProgress + .slice() + .filter((sectorProgress) => { + return ["I", "II", "III"].includes( + sectorProgress.sector.referenceNumber || "", + ); + }) + .sort(sortSectors) || []; + +export default function InventoryCalculationTab({ + lng, + inventory, + isUserInfoLoading, + isInventoryProgressLoading, + inventoryProgress, +}: { + lng: string; + inventory?: InventoryResponse; + isUserInfoLoading?: boolean; + isInventoryProgressLoading?: boolean; + inventoryProgress?: InventoryProgressResponse; +}) { + const { t } = useTranslation(lng, "dashboard"); + let totalProgress = 0, + thirdPartyProgress = 0, + uploadedProgress = 0; + if (inventoryProgress && inventoryProgress.totalProgress.total > 0) { + const { uploaded, thirdParty, total } = inventoryProgress.totalProgress; + totalProgress = (uploaded + thirdParty) / total; + thirdPartyProgress = thirdParty / total; + uploadedProgress = uploaded / total; + } + return ( + <> + {inventory && ( + + + + + + {formatPercent(totalProgress)}% completed + + + + + + + {formatPercent(thirdPartyProgress)}%{" "} + connect-third-party-data + + + + + + {formatPercent(uploadedProgress)}%{" "} + uploaded-data + + + + + + sector-data + + + sector-emissions + + + view-progress-in-each-sector + + {isUserInfoLoading || isInventoryProgressLoading ? ( +
+ +
+ ) : ( + getSectorProgresses(inventoryProgress).map( + (sectorProgress, i) => ( + + ), + ) + )} +
+
+ )} + + ); +} diff --git a/app/src/app/[lng]/[inventory]/InventoryResultTab.tsx b/app/src/app/[lng]/[inventory]/InventoryResultTab.tsx new file mode 100644 index 000000000..39bf9ea63 --- /dev/null +++ b/app/src/app/[lng]/[inventory]/InventoryResultTab.tsx @@ -0,0 +1,165 @@ +"use client"; + +import { useTranslation } from "@/i18n/client"; +import { InventoryProgressResponse, InventoryResponse } from "@/util/types"; +import { + Box, + Card, + CardBody, + CardHeader, + CircularProgress, + Heading, + HStack, + Icon, + Stack, + StackDivider, + Text, +} from "@chakra-ui/react"; +import { TabHeader } from "@/app/[lng]/[inventory]/TabHeader"; +import { MdArrowOutward } from "react-icons/md"; +import { convertKgToTonnes } from "@/util/helpers"; +import { Trans } from "react-i18next/TransWithoutContext"; +import { TFunction } from "i18next"; + +const EmissionsWidgetCard = ({ + icon, + value, + field, + showProgress, +}: { + icon: any; + value?: number | undefined; + field: any; + showProgress: boolean; +}) => { + const finalValue = value + ? showProgress + ? `${value}%` + : convertKgToTonnes(value) + : "N/A"; + return ( + + + + {value && showProgress ? ( + + ) : ( + + )} + + {finalValue} + + + + {field} + + + + ); +}; +const EmissionsWidget = ({ + t, + inventory, +}: { + t: Function & TFunction<"translation", undefined>; + inventory?: InventoryResponse; +}) => { + const EmissionsData = [ + { + id: "total-ghg-emissions-in-year", + field: ( + + Total GHG Emissions in 2023 + + ), + value: inventory?.totalEmissions, + icon: MdArrowOutward, + showProgress: false, + }, + { + id: "emissions-per-capita-in-year", + field: ( + + ), + value: + inventory?.totalEmissions && inventory?.city.population + ? inventory?.totalEmissions / inventory?.city.population + : undefined, + icon: MdArrowOutward, + showProgress: false, + }, + { + id: "% of country's emissions", + field: t("%-of-country's-emissions"), + showProgress: true, + // TODO ON-2212 ON-1383 add value when available + }, + ]; + return ( + + + + {t("total-emissions")} + + + + } spacing="4"> + {EmissionsData.map(({ id, field, value, icon, showProgress }) => ( + + ))} + + + + + ); +}; +export default function InventoryResultTab({ + lng, + inventory, + isUserInfoLoading, + isInventoryProgressLoading, + inventoryProgress, +}: { + lng: string; + inventory?: InventoryResponse; + isUserInfoLoading?: boolean; + isInventoryProgressLoading?: boolean; + inventoryProgress?: InventoryProgressResponse; +}) { + const { t } = useTranslation(lng, "dashboard"); + return ( + <> + {inventory && ( + + + + + )} + + ); +} diff --git a/app/src/app/[lng]/[inventory]/TabHeader.tsx b/app/src/app/[lng]/[inventory]/TabHeader.tsx new file mode 100644 index 000000000..15d26a759 --- /dev/null +++ b/app/src/app/[lng]/[inventory]/TabHeader.tsx @@ -0,0 +1,86 @@ +import { TFunction } from "i18next"; +import { + Badge, + Box, + Flex, + Heading, + HStack, + Link, + Text, +} from "@chakra-ui/react"; +import { Trans } from "react-i18next/TransWithoutContext"; +import { MdOutlineAccountTree, MdOutlineCalendarToday } from "react-icons/md"; + +export function TabHeader({ + t, + title, + year, +}: { + t: TFunction; + year: number | undefined; + title: string; +}) { + return ( + <> + + + {t(title)} + + + + + + + {t("year")}: {year} + + + + + + + {t("inventory-format-basic")} + + + + + + Track and review your {{ year: year }} GHG Emission inventory data, + prepared according to the Greenhouse Gas Protocol for Cities (GPC) + Framework. The data you have submitted is now officially incorporated{" "} + + Learn more + {" "} + about the GPC framework for the inventory calculation. + + + + ); +} diff --git a/app/src/app/[lng]/[inventory]/data/[step]/ActivityDataTab.tsx b/app/src/app/[lng]/[inventory]/data/[step]/ActivityDataTab.tsx index 4694909fe..f72f49b28 100644 --- a/app/src/app/[lng]/[inventory]/data/[step]/ActivityDataTab.tsx +++ b/app/src/app/[lng]/[inventory]/data/[step]/ActivityDataTab.tsx @@ -22,6 +22,7 @@ import { resolve, groupBy } from "@/util/helpers"; import type { EmissionsFactorWithDataSources } from "@/util/types"; import type { EmissionsFactorData } from "./types"; import { useEffect } from "react"; +import { getTranslationFromDict } from "@/i18n"; const activityDataUnits: Record = { I: [ @@ -49,9 +50,9 @@ const activityDataUnits: Record = { ];*/ export function determineEmissionsFactorType(factor: EmissionsFactorData) { - let sourceName = factor.dataSources - ? factor.dataSources[0].datasetName || "Unknown data source" - : "Unknown data source"; + const sourceName = + getTranslationFromDict(factor.dataSources?.[0]?.datasetName ?? {}) ?? + "Unknown data source"; if (sourceName.includes("IPCC") && sourceName.includes("US")) { return "National (US)"; } else if (sourceName.includes("IPCC")) { @@ -186,9 +187,7 @@ export function ActivityDataTab({ > {scopeUnits.map((unit) => ( ))} diff --git a/app/src/app/[lng]/[inventory]/data/[step]/SourceDrawer.tsx b/app/src/app/[lng]/[inventory]/data/[step]/SourceDrawer.tsx index 6a8d09c08..edc7e6c9d 100644 --- a/app/src/app/[lng]/[inventory]/data/[step]/SourceDrawer.tsx +++ b/app/src/app/[lng]/[inventory]/data/[step]/SourceDrawer.tsx @@ -31,6 +31,7 @@ import { import type { DataSourceData, DataSourceWithRelations } from "./types"; import { DataCheckIcon, ScaleIcon } from "@/components/icons"; import { FiTarget } from "react-icons/fi"; +import { getTranslationFromDict } from "@/i18n"; export function SourceDrawer({ source, @@ -114,7 +115,7 @@ export function SourceDrawer({ lineHeight="40px" textTransform="capitalize" > - {source.datasetName} + {getTranslationFromDict(source.datasetName)} @@ -254,7 +255,7 @@ export function SourceDrawer({ {t("inside-dataset")} - {source.datasetDescription} + {getTranslationFromDict(source.datasetDescription)} - {source.methodologyDescription} + {getTranslationFromDict(source.methodologyDescription)} - {source.transformationDescription} + {getTranslationFromDict(source.transformationDescription)} diff --git a/app/src/app/[lng]/[inventory]/data/[step]/SubsectorDrawer.tsx b/app/src/app/[lng]/[inventory]/data/[step]/SubsectorDrawer.tsx deleted file mode 100644 index bf5d58d42..000000000 --- a/app/src/app/[lng]/[inventory]/data/[step]/SubsectorDrawer.tsx +++ /dev/null @@ -1,696 +0,0 @@ -import "@/util/big_int_json"; - -import { api } from "@/services/api"; -import { logger } from "@/services/logger"; -import { nameToI18NKey, resolvePromisesSequentially } from "@/util/helpers"; -import type { InventoryValueResponse } from "@/util/types"; -import { - ArrowBackIcon, - CloseIcon, - InfoIcon, - InfoOutlineIcon, - WarningIcon, -} from "@chakra-ui/icons"; -import { RiErrorWarningLine } from "react-icons/ri"; -import { - Accordion, - AccordionButton, - AccordionIcon, - AccordionItem, - AccordionPanel, - AlertDialog, - AlertDialogBody, - AlertDialogContent, - AlertDialogFooter, - AlertDialogHeader, - AlertDialogOverlay, - Box, - Button, - Center, - Drawer, - DrawerContent, - DrawerOverlay, - Flex, - HStack, - Heading, - IconButton, - Spinner, - Tag, - Text, - useDisclosure, - useToast, -} from "@chakra-ui/react"; -import type { FetchBaseQueryError } from "@reduxjs/toolkit/query"; -import type { TFunction } from "i18next"; -import type { RefObject } from "react"; -import React, { useEffect } from "react"; -import { SubmitHandler, useForm } from "react-hook-form"; -import { EmissionsForm } from "./EmissionsForm"; -import type { - ActivityData, - DirectMeasureData, - SubCategory, - InventoryValueData, - SubSector, - SubcategoryData, - EmissionsFactorData, - GasValueData, - SubSectorWithRelations, -} from "./types"; -import { Trans } from "react-i18next/TransWithoutContext"; -import { determineEmissionsFactorType } from "./ActivityDataTab"; -import { BsCheckCircle } from "react-icons/bs"; - -type Inputs = { - methodology: "activity-data" | "direct-measure" | ""; - energyType: "fuel-combustion" | "grid-supplied-energy"; - activity: ActivityData; - direct: DirectMeasureData; - subcategoryData: Record; -}; - -const defaultActivityData: ActivityData = { - activityDataAmount: undefined, - activityDataUnit: undefined, - emissionFactorType: "Local", - dataQuality: "", - co2EmissionFactor: 10, - n2oEmissionFactor: 10, - ch4EmissionFactor: 10, - sourceReference: "", -}; - -const defaultDirectMeasureData: DirectMeasureData = { - co2Emissions: 0n, - ch4Emissions: 0n, - n2oEmissions: 0n, - dataQuality: "", - sourceReference: "", -}; - -const defaultValues: Inputs = { - methodology: "", - energyType: "fuel-combustion", - activity: defaultActivityData, - direct: defaultDirectMeasureData, - subcategoryData: {}, -}; - -function extractFormValues(inventoryValues: InventoryValueResponse[]): Inputs { - logger.debug("Form input", inventoryValues); - const inputs: Inputs = Object.assign({}, defaultValues); - inputs.subcategoryData = inventoryValues.reduce( - (record: Record, value: InventoryValueData) => { - const methodology = - value.activityValue != null ? "activity-data" : "direct-measure"; - const data: SubcategoryData = { - methodology, - isUnavailable: !!value.unavailableReason, - unavailableReason: (value.unavailableReason as any) || "", - unavailableExplanation: value.unavailableExplanation || "", - activity: { ...defaultActivityData }, - direct: { ...defaultDirectMeasureData }, - }; - - if (methodology === "activity-data") { - data.activity.activityDataAmount = value.activityValue; - data.activity.activityDataUnit = value.activityUnits; - // TODO emission factor ID, manual emissions factor values for each gas - data.activity.dataQuality = value.dataSource?.dataQuality || ""; - data.activity.sourceReference = value.dataSource?.notes || ""; - - const emissionsFactorsByGas = (value.gasValues || []).reduce( - (acc, gasValue) => { - if (gasValue.gas != null && gasValue.emissionsFactor != null) { - acc[gasValue.gas] = gasValue.emissionsFactor; - } - return acc; - }, - {} as Record, - ); - data.activity.co2EmissionFactor = - emissionsFactorsByGas.CO2?.emissionsPerActivity || 0; - data.activity.ch4EmissionFactor = - emissionsFactorsByGas.CH4?.emissionsPerActivity || 0; - data.activity.n2oEmissionFactor = - emissionsFactorsByGas.N2O?.emissionsPerActivity || 0; - - // TODO validate if all of these have equal units and types - const emissionsFactors = Object.values(emissionsFactorsByGas); - const isCustom = emissionsFactors.every( - (factor) => factor.inventoryId != null, - ); - data.activity.emissionFactorType = isCustom - ? "custom" - : determineEmissionsFactorType(emissionsFactors[0]); - data.activity.activityDataUnit = emissionsFactors[0]?.units; - } else if (methodology === "direct-measure") { - const gasToEmissions = (value.gasValues || []).reduce( - (acc: Record, value) => { - acc[value.gas!] = BigInt(value.gasAmount || 0n); - return acc; - }, - {}, - ); - data.direct.co2Emissions = (gasToEmissions.CO2 || 0n) / 1000n; - data.direct.ch4Emissions = (gasToEmissions.CH4 || 0n) / 1000n; - data.direct.n2oEmissions = (gasToEmissions.N2O || 0n) / 1000n; - data.direct.dataQuality = value.dataSource?.dataQuality || ""; - data.direct.sourceReference = value.dataSource?.notes || ""; - } - - record[value.subCategoryId!] = data; - return record; - }, - {}, - ); - logger.debug("Form values", inputs); - return inputs; -} - -const isScopeCompleted = ( - scopeId: string, - scopeData: Inputs["subcategoryData"], -) => { - const data = scopeData[scopeId]; - if (data?.isUnavailable) { - return !!data.unavailableExplanation && !!data.unavailableReason; - } else if (data?.methodology === "activity-data") { - const activity = data.activity; - if (!activity) return false; - return ( - activity.activityDataAmount != null && - activity.activityDataUnit != null && - activity.emissionFactorType !== "" && - !( - activity.emissionFactorType === "Add custom" && - +activity.co2EmissionFactor === 0 && - +activity.n2oEmissionFactor === 0 && - +activity.ch4EmissionFactor === 0 - ) && - activity.dataQuality !== "" && - activity.sourceReference !== "" - ); - } else if (data?.methodology === "direct-measure") { - if (!data.direct) return false; - return ( - (data.direct.co2Emissions > 0 || - data.direct.ch4Emissions > 0 || - data.direct.n2oEmissions > 0) && - data.direct.dataQuality !== "" && - data.direct.sourceReference !== "" - ); - } - return false; -}; - -export function SubsectorDrawer({ - subSector, - sectorName, - inventoryId, - isOpen, - onClose, - finalFocusRef, - onSave, - t, -}: { - subSector?: SubSectorWithRelations; - sectorName?: string; - inventoryId?: string; - isOpen: boolean; - onClose: () => void; - onSave: (subsector: SubSectorWithRelations, data: Inputs) => void; - finalFocusRef?: RefObject; - t: TFunction; -}) { - const subCategoryIds = subSector?.subCategories.map((c) => c.subcategoryId); - const { - data: inventoryValues, - isLoading: isSubsectorValueLoading, - error: inventoryValueError, - } = api.useGetInventoryValuesQuery( - { subCategoryIds: subCategoryIds!, inventoryId: inventoryId! }, - { skip: !subSector || !inventoryId }, - ); - const { data: emissionsFactors, isLoading: areEmissionsFactorsLoading } = - api.useGetEmissionsFactorsQuery(); - const [setInventoryValue] = api.useSetInventoryValueMutation(); - - let noPreviousValue = - (inventoryValueError as FetchBaseQueryError)?.status === 404; - - const { - register, - handleSubmit, - formState: { errors, isSubmitting, isDirty, isValid }, - watch, - reset, - control, - setValue, - } = useForm(); - - const scopeData = watch("subcategoryData"); - - const onTryClose = () => { - if (isDirty) { - onDialogOpen(); - } else { - onClose(); - } - }; - - const toast = useToast(); - - const onSubmit: SubmitHandler = async (data) => { - if (!subSector) return; - logger.debug("Subsector data", data); - - const results = await resolvePromisesSequentially( - Object.keys(data.subcategoryData).map((subCategoryId) => { - const value = data.subcategoryData[subCategoryId]; - - // decide which data from the form to save - if (value.isUnavailable) { - return setInventoryValue({ - subCategoryId, - inventoryId: inventoryId!, - data: { - unavailableReason: value.unavailableReason, - unavailableExplanation: value.unavailableExplanation, - }, - }); - } else { - if (!isScopeCompleted(subCategoryId, scopeData)) { - logger.error(`Data not completed for scope ${subCategoryId}!`); - return Promise.resolve(); - } - - let inventoryValue: InventoryValueData = { - subCategoryId, - inventoryId: inventoryId!, - unavailableReason: "", - unavailableExplanation: "", - }; - - if (value.methodology === "activity-data") { - inventoryValue.activityValue = +value.activity.activityDataAmount!; - inventoryValue.activityUnits = value.activity.activityDataUnit; - // TODO emission factor ID, manual emissions factor values for each gas - - inventoryValue.dataSource = { - sourceType: "user", - dataQuality: value.activity.dataQuality, - notes: value.activity.sourceReference, - }; - - // save emissions factors (either values for custom or the IDs for each gas for predefined) - const gases = ["CO2", "CH4", "N2O"]; - inventoryValue.gasValues = gases.flatMap((gas) => { - let gasValue: GasValueData = { - gas, - gasAmount: null, // remove previous data - }; - if (value.activity.emissionFactorType === "custom") { - const emissionsPerActivity = Number( - (value.activity as unknown as Record)[ - gas.toLowerCase() + "EmissionFactor" - ], - ); - gasValue.emissionsFactor = { - emissionsPerActivity, - gas, - units: value.activity.activityDataUnit || undefined, - inventoryId: inventoryId, - }; - } else { - if (!emissionsFactors || !scopes) { - throw new Error( - "Emissions factors or scopes not loaded at save time!", - ); - } - const subCategory = scopes?.find( - (scope) => scope.value === subCategoryId, - ); - const gpcReferenceNumber = subCategory?.gpcReferenceNumber; - const factors = emissionsFactors.filter((factor) => { - return ( - factor.gas === gas && - factor.units === value.activity.activityDataUnit && - factor.gpcReferenceNumber === gpcReferenceNumber && - determineEmissionsFactorType(factor) === - value.activity.emissionFactorType - ); - }); - - if (factors.length === 0) { - return []; - } - if (factors.length > 1) { - logger.warn( - `Multiple emissions factor candidates for scope ${gpcReferenceNumber}, units ${value.activity.activityDataUnit}, type ${value.activity.emissionFactorType}`, - factors, - ); - } - - gasValue.emissionsFactorId = factors[0].id; - } - return [gasValue]; - }); - } else if (value.methodology === "direct-measure") { - inventoryValue.activityValue = null; - inventoryValue.activityUnits = null; - inventoryValue.gasValues = [ - { - gas: "CO2", - gasAmount: BigInt(value.direct.co2Emissions) * 1000n, - }, - { - gas: "CH4", - gasAmount: BigInt(value.direct.ch4Emissions) * 1000n, - }, - { - gas: "N2O", - gasAmount: BigInt(value.direct.n2oEmissions) * 1000n, - }, - ]; - inventoryValue.dataSource = { - sourceType: "user", - dataQuality: value.direct.dataQuality, - notes: value.direct.sourceReference, - }; - } else { - logger.error( - `Methodology for subcategory ${subCategoryId} not selected!`, - ); - return Promise.resolve(); - } - - return setInventoryValue({ - subCategoryId: subCategoryId, - inventoryId: inventoryId!, - data: inventoryValue, - }); - } - }), - ); - logger.debug("Save results", results); - let hadError = false; - for (const [index, result] of results.entries()) { - if (result?.error?.status > 200) { - hadError = true; - const scopeId = Object.keys(data.subcategoryData)[index]; - const scopeName = scopes?.find((s) => s.value === scopeId)?.label || ""; - toast({ - title: `Failed to save "${scopeName}"`, - description: - "There was an error during saving. Please notify the support about this.", - status: "error", - isClosable: true, - duration: null, - }); - } - } - if (!hadError) { - onSave(subSector, data); - onClose(); - } - }; - - // reset form values when choosing another subsector - useEffect(() => { - if (inventoryValues) { - // TODO store previous form values if it's unsaved? - reset(extractFormValues(inventoryValues)); - } else { - reset(defaultValues); - } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [inventoryValues, subSector]); - - const subcategoryData: SubCategory[] | undefined = subSector?.subCategories; - const scopes = subcategoryData?.map((subcategory: SubCategory) => { - const name = - subcategory.subcategoryName?.replace("Emissions from ", "") || - "Unknown Subcategory"; - const label = name.charAt(0).toUpperCase() + name.slice(1); - return { - label, - value: subcategory.subcategoryId, - gpcReferenceNumber: subcategory.referenceNumber, - }; - }); - - const { - isOpen: isDialogOpen, - onOpen: onDialogOpen, - onClose: onDialogClose, - } = useDisclosure(); - const cancelDialogRef = React.useRef(null); - - return ( - - - - - - {subSector && ( - <> - {sectorName && ( - - {t("sector")} - {t(nameToI18NKey(sectorName))} - - )} - - {t(nameToI18NKey(subSector.subsectorName))} - - - {t(nameToI18NKey(subSector.subsectorName) + "-description")} - - {isSubsectorValueLoading || areEmissionsFactorsLoading ? ( -
- -
- ) : inventoryValueError && !noPreviousValue ? ( -
- - - - {t("load-failed-subsector-value")} - - -
- ) : ( - <> - {t("enter-subsector-data")} - - - {scopes?.map((scope) => ( - -

- - - {!isDirty && - !isScopeCompleted(scope.value, scopeData) ? ( - "" - ) : isScopeCompleted(scope.value, scopeData) && - isValid && - !isDirty ? ( - - - - ) : ( - - - - )} - - - {t("scope")}{" "} - {scope.gpcReferenceNumber?.split(".").pop()} - - - {scope.label} - - {!isDirty && - isScopeCompleted( - scope.value, - scopeData, - ) ? null : isScopeCompleted( - scope.value, - scopeData, - ) && - isValid && - !isDirty ? ( - - {t("save-missing-scope-info")} - - ) : ( - "" - )} - - - - - -

- -
- - - - - - - -
-
- ))} -
- - )} - - )} -
-
- - - - - - - {t("unsaved-changes")} - } - onClick={onDialogClose} - aria-label="Close" - variant="ghost" - /> - - -
- - - -
- - - - - - - -
-
-
-
- ); -} diff --git a/app/src/app/[lng]/[inventory]/data/[step]/[subsector]/page.tsx b/app/src/app/[lng]/[inventory]/data/[step]/[subsector]/page.tsx index e06daddbf..5bfb289e7 100644 --- a/app/src/app/[lng]/[inventory]/data/[step]/[subsector]/page.tsx +++ b/app/src/app/[lng]/[inventory]/data/[step]/[subsector]/page.tsx @@ -5,7 +5,7 @@ import LoadingState from "@/components/loading-state"; import { useTranslation } from "@/i18n/client"; import { RootState } from "@/lib/store"; import { SubSectorAttributes } from "@/models/SubSector"; -import { api } from "@/services/api"; +import { api, useGetInventoryValuesBySubsectorQuery } from "@/services/api"; import { MANUAL_INPUT_HIERARCHY } from "@/util/form-schema"; import { ArrowBackIcon, ChevronRightIcon } from "@chakra-ui/icons"; import { @@ -38,9 +38,6 @@ function SubSectorPage({ const router = useRouter(); const { t } = useTranslation(lng, "data"); - const { data: inventory, isLoading: isInventoryLoading } = - api.useGetInventoryQuery(inventoryId); - const { isOpen: isDeleteActivitiesModalOpen, onOpen: onDeleteActivitiesModalOpen, @@ -132,7 +129,6 @@ function SubSectorPage({ }; }, []); - const MotionBox = motion(Box); const MotionTabList = motion(TabList); const [isLoading, setIsLoading] = useState(false); @@ -150,6 +146,19 @@ function SubSectorPage({ const scrollResizeHeaderThreshold = 50; const isExpanded = scrollPosition > scrollResizeHeaderThreshold; + const { data: activityData, isLoading: isActivityDataLoading } = + api.useGetActivityValuesQuery({ + inventoryId, + subSectorId: subSectorData?.subsectorId, + }); + + // fetch the inventoryValue for the selected scope + const { data: inventoryValues, isLoading: isInventoryValueLoading } = + useGetInventoryValuesBySubsectorQuery({ + inventoryId, + subSectorId: subSectorData?.subsectorId, + }); + return ( <> {t("all-sectors")} @@ -194,7 +203,7 @@ function SubSectorPage({ {getSectorName(step)} @@ -221,7 +230,7 @@ function SubSectorPage({ {isExpanded ? ( - + )) )} diff --git a/app/src/app/[lng]/[inventory]/data/[step]/page.tsx b/app/src/app/[lng]/[inventory]/data/[step]/page.tsx index 5a32a6414..cdbc017cf 100644 --- a/app/src/app/[lng]/[inventory]/data/[step]/page.tsx +++ b/app/src/app/[lng]/[inventory]/data/[step]/page.tsx @@ -71,7 +71,6 @@ import { } from "react-icons/md"; import { useDispatch, useSelector } from "react-redux"; import { SourceDrawer } from "./SourceDrawer"; -import { SubsectorDrawer } from "./SubsectorDrawer"; import type { DataSourceWithRelations, DataStep, @@ -81,6 +80,7 @@ import type { import AddFileDataModal from "@/components/Modals/add-file-data-modal"; import { InventoryValueAttributes } from "@/models/InventoryValue"; import { motion } from "framer-motion"; +import { getTranslationFromDict } from "@/i18n"; function getMailURI(locode?: string, sector?: string, year?: number): string { const emails = @@ -769,7 +769,7 @@ export default function AddDataSteps({
{/*** Manual data entry section for subsectors ***/} - + {t("add-data-heading")} @@ -792,10 +792,11 @@ export default function AddDataSteps({ currentStep.subSectors.map( (subSector: SubSectorWithRelations) => ( { router.push( `/${inventory}/data/${getCurrentStepParam(currentStep.title)}/${subSector.subsectorId}`, @@ -837,7 +838,12 @@ export default function AddDataSteps({ /> )} - + {t(nameToI18NKey(subSector.subsectorName!))} {subSector.scope && ( @@ -864,7 +870,7 @@ export default function AddDataSteps({ {/*** Third party data source section ***/} - + - {source.datasetName} + {getTranslationFromDict(source.datasetName)} @@ -968,8 +974,8 @@ export default function AddDataSteps({ noOfLines={5} minHeight={120} > - {source.datasetDescription || - source.methodologyDescription} + {getTranslationFromDict(source.datasetDescription) || + getTranslationFromDict(source.methodologyDescription)} -
); diff --git a/app/src/app/[lng]/[inventory]/data/[step]/types.d.ts b/app/src/app/[lng]/[inventory]/data/[step]/types.d.ts index 4267055d4..a6831bb2d 100644 --- a/app/src/app/[lng]/[inventory]/data/[step]/types.d.ts +++ b/app/src/app/[lng]/[inventory]/data/[step]/types.d.ts @@ -1,8 +1,4 @@ -import type { DataSourceAttributes } from "@/models/DataSource"; -import type { - EmissionsFactor, - EmissionsFactorAttributes, -} from "@/models/EmissionsFactor"; +import type { DataSourceI18nAttributes as DataSourceAttributes } from "@/models/DataSourceI18n"; import type { GasValueAttributes } from "@/models/GasValue"; import type { InventoryValueAttributes } from "@/models/InventoryValue"; import { ScopeAttributes } from "@/models/Scope"; diff --git a/app/src/app/[lng]/[inventory]/data/page.tsx b/app/src/app/[lng]/[inventory]/data/page.tsx index 60278dd42..af359c212 100644 --- a/app/src/app/[lng]/[inventory]/data/page.tsx +++ b/app/src/app/[lng]/[inventory]/data/page.tsx @@ -31,6 +31,7 @@ export default function AddDataIntro({ const SECTORCARD_DATA = [ { sectorName: t("stationary-energy"), + testId: "stationary-energy-sector-card", descriptionText: t("stationary-energy-details"), scope: t("stationary-energy-scope"), buttonText: "Add Data", @@ -39,6 +40,7 @@ export default function AddDataIntro({ }, { sectorName: t("transportation"), + testId: "transportation-sector-card", descriptionText: t("transportation-details"), scope: t("transportation-scope"), buttonText: "Add Data", @@ -47,6 +49,7 @@ export default function AddDataIntro({ }, { sectorName: t("waste"), + testId: "waste-sector-card", descriptionText: t("waste-details"), scope: t("waste-scope"), buttonText: "Add Data", @@ -75,6 +78,7 @@ export default function AddDataIntro({ fontSize="32px" lineHeight="40px" fontWeight="semibold" + data-testid="add-data-step-title" mb={6} mt={12} className="w-full" @@ -112,6 +116,7 @@ export default function AddDataIntro({ {SECTORCARD_DATA.map( ({ sectorName, + testId, descriptionText, scope, icon, @@ -119,6 +124,7 @@ export default function AddDataIntro({ step, }) => ( import("@/components/CityMap"), { ssr: false }); -function sortSectors(a: SectorProgress, b: SectorProgress): number { - const refA = a.sector.referenceNumber; - const refB = b.sector.referenceNumber; - if (!refA || !refB) { - return 0; - } else if (refA < refB) { - return -1; - } else if (refA > refB) { - return 1; - } - return 0; -} - export default function Home({ params: { lng } }: { params: { lng: string } }) { const { t } = useTranslation(lng, "dashboard"); const toast = useToast(); const router = useRouter(); + // Check if user is authenticated otherwise route to login page CheckUserSession(); const { inventory: inventoryParam } = useParams(); @@ -131,16 +111,6 @@ export default function Home({ params: { lng } }: { params: { lng: string } }) { { skip: !inventory?.cityId || !inventory?.year }, ); - let totalProgress = 0, - thirdPartyProgress = 0, - uploadedProgress = 0; - if (inventoryProgress && inventoryProgress.totalProgress.total > 0) { - const { uploaded, thirdParty, total } = inventoryProgress.totalProgress; - totalProgress = (uploaded + thirdParty) / total; - thirdPartyProgress = thirdParty / total; - uploadedProgress = uploaded / total; - } - const showToast = ( title: string, description: string, @@ -261,398 +231,395 @@ export default function Home({ params: { lng } }: { params: { lng: string } }) { return ( <> - - - - - - - {inventory ? <>{t("welcome-back")}, : <>{t("welcome")},} - - - {inventory?.city ? ( - <> - - - {inventory?.city?.name} - - - - ) : ( - (isUserInfoLoading || isInventoryLoading) && ( - - ) - )} - - - - - - - - {inventory?.totalEmissions ? ( - <> - {inventory.totalEmissions}{" "} - Mtco2e - - ) : ( - <>{t("in-progress")} - )} - - - - - total-emissions-in{" "} - {inventory?.year} - - - - - - - - {population?.population ? ( - + +